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

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


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

--
-- Database: `mrarqpph_optimalmentalwellness`
--

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

--
-- Table structure for table `wpom_aab_bookings`
--

CREATE TABLE `wpom_aab_bookings` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `booking_ref` varchar(20) NOT NULL,
  `service_id` bigint(20) UNSIGNED NOT NULL,
  `appointment_date` date NOT NULL,
  `appointment_time` time NOT NULL,
  `status` enum('pending','confirmed','cancelled','completed') NOT NULL DEFAULT 'pending',
  `customer_data` longtext NOT NULL,
  `notes` text DEFAULT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpom_aab_bookings`
--

INSERT INTO `wpom_aab_bookings` (`id`, `booking_ref`, `service_id`, `appointment_date`, `appointment_time`, `status`, `customer_data`, `notes`, `created_at`, `updated_at`) VALUES
(1, 'AAB-B6XRN4', 3, '2026-06-18', '12:30:00', 'pending', '{\"full_name\":\"Sujon\",\"email\":\"test@gmail.com\",\"phone\":\"2894123\",\"notes\":\"test\"}', '', '2026-06-17 08:11:34', '2026-06-17 08:11:34');

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

--
-- Table structure for table `wpom_aab_categories`
--

CREATE TABLE `wpom_aab_categories` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(255) NOT NULL,
  `slug` varchar(255) NOT NULL DEFAULT '',
  `description` text DEFAULT NULL,
  `color` varchar(20) NOT NULL DEFAULT '#4F46E5',
  `icon` varchar(50) NOT NULL DEFAULT '',
  `sort_order` smallint(5) UNSIGNED NOT NULL DEFAULT 0,
  `is_active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` datetime NOT NULL DEFAULT current_timestamp()
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpom_aab_categories`
--

INSERT INTO `wpom_aab_categories` (`id`, `name`, `slug`, `description`, `color`, `icon`, `sort_order`, `is_active`, `created_at`) VALUES
(1, 'Consultation', 'consultation', 'Professional consultation services.', '#4F46E5', '💬', 1, 1, '2026-06-17 06:58:30');

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

--
-- Table structure for table `wpom_aab_form_fields`
--

CREATE TABLE `wpom_aab_form_fields` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `field_key` varchar(100) NOT NULL,
  `label` varchar(255) NOT NULL,
  `field_type` varchar(50) NOT NULL DEFAULT 'text',
  `placeholder` varchar(255) NOT NULL DEFAULT '',
  `options` text DEFAULT NULL,
  `date_widget` varchar(20) NOT NULL DEFAULT 'html' COMMENT 'html|flatpickr',
  `is_required` tinyint(1) NOT NULL DEFAULT 0,
  `is_active` tinyint(1) NOT NULL DEFAULT 1,
  `step` tinyint(1) NOT NULL DEFAULT 3,
  `sort_order` smallint(5) UNSIGNED NOT NULL DEFAULT 0,
  `created_at` datetime NOT NULL DEFAULT current_timestamp()
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpom_aab_form_fields`
--

INSERT INTO `wpom_aab_form_fields` (`id`, `field_key`, `label`, `field_type`, `placeholder`, `options`, `date_widget`, `is_required`, `is_active`, `step`, `sort_order`, `created_at`) VALUES
(1, 'full_name', 'Full Name', 'text', 'Enter your full name', NULL, 'html', 1, 1, 3, 1, '2026-06-17 06:58:30'),
(2, 'email', 'Email Address', 'email', 'you@example.com', NULL, 'html', 1, 1, 3, 2, '2026-06-17 06:58:30'),
(3, 'phone', 'Phone Number', 'tel', '+1 (555) 000-0000', NULL, 'html', 1, 1, 3, 3, '2026-06-17 06:58:30'),
(4, 'notes', 'Additional Notes', 'textarea', 'Any special requests…', NULL, 'html', 0, 1, 3, 4, '2026-06-17 06:58:30');

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

--
-- Table structure for table `wpom_aab_services`
--

CREATE TABLE `wpom_aab_services` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `category_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `name` varchar(255) NOT NULL,
  `category` varchar(255) NOT NULL DEFAULT '',
  `description` text DEFAULT NULL,
  `duration` smallint(5) UNSIGNED NOT NULL DEFAULT 60,
  `price` decimal(10,2) NOT NULL DEFAULT 0.00,
  `currency` varchar(10) NOT NULL DEFAULT 'USD',
  `color` varchar(20) NOT NULL DEFAULT '#4F46E5',
  `image_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `is_active` tinyint(1) NOT NULL DEFAULT 1,
  `sort_order` smallint(5) UNSIGNED NOT NULL DEFAULT 0,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpom_aab_services`
--

INSERT INTO `wpom_aab_services` (`id`, `category_id`, `name`, `category`, `description`, `duration`, `price`, `currency`, `color`, `image_id`, `is_active`, `sort_order`, `created_at`, `updated_at`) VALUES
(1, 1, 'General Consultation', 'Consultation', 'A 60-minute general consultation session.', 60, 50.00, 'USD', '#4F46E5', 0, 0, 1, '2026-06-17 06:58:30', '2026-06-17 07:52:18'),
(2, 0, 'Psychiatric Evaluation', '', '', 30, 0.00, 'USD', '#ce2162', 0, 1, 0, '2026-06-17 07:52:04', '2026-06-17 07:53:44'),
(3, 0, 'Medication & Nutritional Management', '', '', 30, 0.00, 'USD', '#ce2162', 0, 1, 0, '2026-06-17 07:54:20', '2026-06-17 07:54:20'),
(4, 0, 'Psychotherapy', '', '', 30, 0.00, 'USD', '#ce2162', 0, 1, 0, '2026-06-17 07:54:43', '2026-06-17 07:54:43');

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

--
-- Table structure for table `wpom_aab_service_hours`
--

CREATE TABLE `wpom_aab_service_hours` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `service_id` bigint(20) UNSIGNED NOT NULL,
  `day_of_week` tinyint(1) NOT NULL,
  `start_time` time NOT NULL,
  `end_time` time NOT NULL,
  `slot_interval` smallint(5) UNSIGNED NOT NULL DEFAULT 0 COMMENT '0 = use global',
  `is_active` tinyint(1) NOT NULL DEFAULT 1
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

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

--
-- Table structure for table `wpom_aab_settings`
--

CREATE TABLE `wpom_aab_settings` (
  `setting_key` varchar(100) NOT NULL,
  `setting_value` longtext NOT NULL,
  `autoload` tinyint(1) NOT NULL DEFAULT 1
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpom_aab_settings`
--

INSERT INTO `wpom_aab_settings` (`setting_key`, `setting_value`, `autoload`) VALUES
('feature_flags', '{\"service_filter\":false,\"email_notification\":true,\"sms_notification\":false,\"multi_service\":false,\"payment_integration\":false}', 1),
('default_style', '{\"primary_color\":\"#41322d\",\"secondary_color\":\"#ce2162\",\"background_color\":\"#ffffff\",\"text_color\":\"#111827\",\"border_radius\":\"14px\",\"button_style\":\"rounded\",\"font_family\":\"Inter\",\"theme\":\"modern_blue\"}', 1),
('general', '{\"time_slot_interval\":30,\"currency\":\"USD\",\"currency_symbol\":\"$\",\"admin_email\":\"info@optimalmentalwellness.org\",\"success_message\":\"Your appointment has been successfully booked! We will contact you shortly.\",\"datepicker_type\":\"flatpickr\",\"show_free_label\":true}', 1),
('email', '{\"from_name\":\"Optimal Mental Health And Wellness\",\"from_email\":\"info@optimalmentalwellness.org\",\"admin_subject\":\"[New Booking] {service_name} on {date}\",\"customer_subject\":\"Your Booking Confirmation \\u2013 {service_name}\"}', 1);

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

--
-- Table structure for table `wpom_aab_working_hours`
--

CREATE TABLE `wpom_aab_working_hours` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `day_of_week` tinyint(1) NOT NULL COMMENT '0=Sunday..6=Saturday',
  `start_time` time NOT NULL,
  `end_time` time NOT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT 1,
  `is_weekend` tinyint(1) NOT NULL DEFAULT 0
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpom_aab_working_hours`
--

INSERT INTO `wpom_aab_working_hours` (`id`, `day_of_week`, `start_time`, `end_time`, `is_active`, `is_weekend`) VALUES
(1, 0, '09:00:00', '17:00:00', 0, 1),
(2, 1, '09:00:00', '17:00:00', 1, 0),
(3, 2, '09:00:00', '17:00:00', 1, 0),
(4, 3, '09:00:00', '17:00:00', 1, 0),
(5, 4, '09:00:00', '17:00:00', 1, 0),
(6, 5, '09:00:00', '17:00:00', 1, 0),
(7, 6, '09:00:00', '17:00:00', 0, 1);

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

--
-- Table structure for table `wpom_commentmeta`
--

CREATE TABLE `wpom_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 `wpom_comments`
--

CREATE TABLE `wpom_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;

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

--
-- Table structure for table `wpom_e_events`
--

CREATE TABLE `wpom_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 `wpom_e_notes`
--

CREATE TABLE `wpom_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 `wpom_e_notes_users_relations`
--

CREATE TABLE `wpom_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 `wpom_e_submissions`
--

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

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

--
-- Table structure for table `wpom_e_submissions_actions_log`
--

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

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

--
-- Table structure for table `wpom_e_submissions_values`
--

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

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

--
-- Table structure for table `wpom_links`
--

CREATE TABLE `wpom_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 `wpom_litespeed_url`
--

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

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

--
-- Table structure for table `wpom_litespeed_url_file`
--

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

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

--
-- Table structure for table `wpom_options`
--

CREATE TABLE `wpom_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 `wpom_options`
--

INSERT INTO `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 'cron', 'a:9:{i:1784704023;a:3:{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: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;}}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:1784704032;a:3:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1784704033;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:1784704160;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:1784707622;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:1784709422;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:1784711222;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:1785222515;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;}}}s:7:\"version\";i:2;}', 'on'),
(2, 'siteurl', 'https://mrarif.me/optimalmentalwellness', 'on'),
(3, 'home', 'https://mrarif.me/optimalmentalwellness', 'on'),
(4, 'blogname', 'Optimal Mental Health And 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:160:{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:45:\"postman_sent_mail/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:55:\"postman_sent_mail/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:75:\"postman_sent_mail/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"postman_sent_mail/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"postman_sent_mail/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:51:\"postman_sent_mail/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:34:\"postman_sent_mail/([^/]+)/embed/?$\";s:50:\"index.php?postman_sent_mail=$matches[1]&embed=true\";s:38:\"postman_sent_mail/([^/]+)/trackback/?$\";s:44:\"index.php?postman_sent_mail=$matches[1]&tb=1\";s:46:\"postman_sent_mail/([^/]+)/page/?([0-9]{1,})/?$\";s:57:\"index.php?postman_sent_mail=$matches[1]&paged=$matches[2]\";s:53:\"postman_sent_mail/([^/]+)/comment-page-([0-9]{1,})/?$\";s:57:\"index.php?postman_sent_mail=$matches[1]&cpage=$matches[2]\";s:42:\"postman_sent_mail/([^/]+)(?:/([0-9]+))?/?$\";s:56:\"index.php?postman_sent_mail=$matches[1]&page=$matches[2]\";s:34:\"postman_sent_mail/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"postman_sent_mail/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:64:\"postman_sent_mail/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"postman_sent_mail/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"postman_sent_mail/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:40:\"postman_sent_mail/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:42:\"e_global_class/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"e_global_class/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"e_global_class/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e_global_class/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e_global_class/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"e_global_class/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"e_global_class/([^/]+)/embed/?$\";s:47:\"index.php?e_global_class=$matches[1]&embed=true\";s:35:\"e_global_class/([^/]+)/trackback/?$\";s:41:\"index.php?e_global_class=$matches[1]&tb=1\";s:43:\"e_global_class/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?e_global_class=$matches[1]&paged=$matches[2]\";s:50:\"e_global_class/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?e_global_class=$matches[1]&cpage=$matches[2]\";s:39:\"e_global_class/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?e_global_class=$matches[1]&page=$matches[2]\";s:31:\"e_global_class/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"e_global_class/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"e_global_class/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e_global_class/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e_global_class/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"e_global_class/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=10&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}', 'on'),
(31, 'hack_file', '0', 'on'),
(32, 'blog_charset', 'UTF-8', 'on'),
(33, 'moderation_keys', '', 'off'),
(34, 'active_plugins', 'a:6:{i:0;s:61:\"advanced-appointment-booking/advanced-appointment-booking.php\";i:1;s:31:\"backup-backup/backup-backup.php\";i:2;s:31:\"elementor-pro/elementor-pro.php\";i:3;s:23:\"elementor/elementor.php\";i:4;s:26:\"post-smtp/postman-smtp.php\";i:5;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:5:{i:0;s:96:\"/home/mrarqpph/public_html/optimalmentalwellness/wp-content/themes/astra-child/css/overwrite.css\";i:1;s:88:\"/home/mrarqpph/public_html/optimalmentalwellness/wp-content/themes/astra-child/style.css\";i:3;s:92:\"/home/mrarqpph/public_html/optimalmentalwellness/wp-content/themes/astra-child/functions.php\";i:4;s:103:\"/home/mrarqpph/public_html/optimalmentalwellness/wp-content/themes/astra-child/inc/custom_shortcode.php\";i:5;s:104:\"/home/mrarqpph/public_html/optimalmentalwellness/wp-content/themes/astra-child/inc/custom_post_types.php\";}', 'off'),
(41, 'template', 'astra', 'on'),
(42, 'stylesheet', 'astra-child', 'on'),
(43, 'comment_registration', '0', 'on'),
(44, 'html_type', 'text/html', 'on'),
(45, 'use_trackback', '0', 'on'),
(46, 'default_role', 'subscriber', 'on'),
(47, 'db_version', '61833', 'on'),
(48, 'uploads_use_yearmonth_folders', '1', 'on'),
(49, 'upload_path', '', 'on'),
(50, 'blog_public', '1', 'on'),
(51, 'default_link_category', '2', 'on'),
(52, 'show_on_front', 'page', 'on'),
(53, 'tag_base', '', 'on'),
(54, 'show_avatars', '1', 'on'),
(55, 'avatar_rating', 'G', 'on'),
(56, 'upload_url_path', '', 'on'),
(57, 'thumbnail_size_w', '150', 'on'),
(58, 'thumbnail_size_h', '150', 'on'),
(59, 'thumbnail_crop', '1', 'on'),
(60, 'medium_size_w', '300', 'on'),
(61, 'medium_size_h', '300', 'on'),
(62, 'avatar_default', 'mystery', 'on'),
(63, 'large_size_w', '1024', 'on'),
(64, 'large_size_h', '1024', 'on'),
(65, 'image_default_link_type', 'none', 'on'),
(66, 'image_default_size', '', 'on'),
(67, 'image_default_align', '', 'on'),
(68, 'close_comments_for_old_posts', '0', 'on'),
(69, 'close_comments_days_old', '14', 'on'),
(70, 'thread_comments', '1', 'on'),
(71, 'thread_comments_depth', '5', 'on'),
(72, 'page_comments', '0', 'on'),
(73, 'comments_per_page', '50', 'on'),
(74, 'default_comments_page', 'newest', 'on'),
(75, 'comment_order', 'asc', 'on'),
(76, 'sticky_posts', 'a:0:{}', 'on'),
(77, 'widget_categories', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'auto'),
(78, 'widget_text', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'auto'),
(79, 'widget_rss', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'auto'),
(80, 'uninstall_plugins', 'a:3:{s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}s:35:\"litespeed-cache/litespeed-cache.php\";s:47:\"LiteSpeed\\Activation::uninstall_litespeed_cache\";s:31:\"backup-backup/backup-backup.php\";a:2:{i:0;s:15:\"Account\\Account\";i:1;s:25:\"onUninstallPluginListener\";}}', 'off'),
(81, 'timezone_string', '', 'on'),
(82, 'page_for_posts', '16', 'on'),
(83, 'page_on_front', '10', 'on'),
(84, 'default_post_format', '0', 'on'),
(85, 'link_manager_enabled', '0', 'on'),
(86, 'finished_splitting_shared_terms', '1', 'on'),
(87, 'site_icon', '51', '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', '1797145622', '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, 'wpom_user_roles', 'a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:75:{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:19:\"manage_postman_smtp\";b:1;s:19:\"manage_postman_logs\";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 `wpom_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'),
(169, 'bsf_usage_migrated', '1', 'off'),
(170, 'astra-settings', 'a:27:{s:18:\"theme-auto-version\";s:6:\"4.13.4\";s:22:\"is_theme_queue_running\";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:\"#41322d\";i:1;s:7:\"#edd32b\";i:2;s:7:\"#303030\";i:3;s:7:\"#373737\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#fcf1f5\";i:6;s:7:\"#ce2162\";i:7;s:7:\"#D1D5DB\";i:8;s:7:\"#111111\";}s:4:\"flag\";b:1;}s:10:\"link-color\";s:25:\"var(--ast-global-color-6)\";s:16:\"body-font-family\";s:24:\"\'Montserrat\', sans-serif\";s:17:\"body-font-variant\";s:11:\"300,400,500\";s:20:\"headings-font-family\";s:25:\"\'Playfair Display\', serif\";s:20:\"headings-font-weight\";s:3:\"400\";s:12:\"font-size-h1\";a:6:{s:7:\"desktop\";i:45;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:30;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:12:\"font-size-h5\";a:6:{s:7:\"desktop\";i:22;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";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:12:\"button-color\";s:25:\"var(--ast-global-color-4)\";s:14:\"button-h-color\";s:25:\"var(--ast-global-color-0)\";s:15:\"button-bg-color\";s:25:\"var(--ast-global-color-6)\";s:17:\"button-bg-h-color\";s:25:\"var(--ast-global-color-1)\";s:18:\"font-family-button\";s:24:\"\'Montserrat\', 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:\"18\";s:4:\"left\";s:2:\"36\";}s:6:\"tablet\";a:4:{s:3:\"top\";i:14;s:5:\"right\";i:28;s:6:\"bottom\";i:14;s:4:\"left\";i:28;}s:6:\"mobile\";a:4:{s:3:\"top\";i:12;s:5:\"right\";i:24;s:6:\"bottom\";i:12;s:4:\"left\";i:24;}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s: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:31:\"archive-post-ast-content-layout\";s:20:\"full-width-container\";s:30:\"single-post-ast-content-layout\";s:20:\"full-width-container\";}', 'on'),
(171, 'astra_notices_allowed', 'a:2:{i:0;s:21:\"astra-sites-on-active\";i:1;s:18:\"astra-optin-notice\";}', 'auto'),
(172, 'astra_usage_installed_time', '1781593722', 'off');
INSERT INTO `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(175, '_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.2.0\";s:6:\"author\";s:64:\"<a href=\"https://profiles.wordpress.org/elemntor/\">Elementor</a>\";s:14:\"author_profile\";s:40:\"https://profiles.wordpress.org/elemntor/\";s:12:\"contributors\";a:1:{s:8:\"elemntor\";a:3:{s:7:\"profile\";s:40:\"https://profiles.wordpress.org/elemntor/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/7d70f15d78757f876d1847a8f87dd93e1d9c168264b4aeeaf72058656690d05b?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:9:\"Elementor\";}}s:8:\"requires\";s:3:\"6.8\";s:6:\"tested\";s:5:\"7.0.2\";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:680;}s:11:\"num_ratings\";i:7279;s:11:\"support_url\";s:47:\"https://wordpress.org/support/plugin/elementor/\";s:15:\"support_threads\";i:48;s:24:\"support_threads_resolved\";i:38;s:15:\"active_installs\";i:10000000;s:12:\"last_updated\";s:21:\"2026-07-20 1:54pm 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:1722:\"<h4>4.2.0 &#8211; 2026-07-20</h4>\n<ul>\n<li>New: Introducing Grid for building advanced row and column layouts &#8211; Atomic Editor</li>\n<li>Tweak: Improved Angie layout, composition, and design system creation from prompts and images &#8211; Atomic Editor</li>\n<li>Tweak: Added dynamic tag support for AI-generated element properties</li>\n<li>Fix: VideoPress URLs do not display on the frontend when used in Background Video and Lightbox dynamic tags (<a href=\"https://github.com/elementor/elementor/issues/24467\" rel=\"nofollow ugc\">#24467</a>)</li>\n<li>Fix: Grid containers can cause slower Editor performance on complex pages</li>\n<li>Fix: Filters do not work as expected in Website Templates</li>\n<li>Fix: The Save as Template button is unreachable when the modal does not fit the browser viewport</li>\n<li>Fix: AI-related Editor features show a console error when required services are not available yet</li>\n<li>Fix: Missing classes can affect the editing panel when they are still applied to elements &#8211; Atomic Editor</li>\n<li>Fix: Unsaved Class changes are not detected when switching between Design System tabs &#8211; Atomic Editor</li>\n<li>Fix: Custom Font names with spaces or special characters do not work in the Font Family control &#8211; Atomic Editor</li>\n<li>Fix: The drop indicator is missing when dragging Atomic elements inside row Containers &#8211; Atomic Editor</li>\n<li>Fix: Global Classes can be shared across multiple Kits instead of being separated per Kit &#8211; Atomic Editor</li>\n<li>Fix: Angie cannot update text in some Atomic elements &#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:17170:\"<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Some widgets work very slow.</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/jonyshanto/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/5d5ff7e6c97536d73b070eb7170682f94456d2817294cbb75e6b5ed10052660e?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/5d5ff7e6c97536d73b070eb7170682f94456d2817294cbb75e6b5ed10052660e?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/jonyshanto/\" class=\"reviewer-name\">jonyshanto</a> on <span class=\"review-date\">July 19, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>The plugin is updated regularly, but the lagging issues and functionality problems are never fixed.</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\">Stress-inducing work, but pretty layouts</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/monkeykong/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/023f9ccfe736cc9ed42882588dc6e59440483fd1c192829c56a58f7fbb1526d4?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/023f9ccfe736cc9ed42882588dc6e59440483fd1c192829c56a58f7fbb1526d4?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/monkeykong/\" class=\"reviewer-name\"> <small>(MonkeyKong)</small></a> on <span class=\"review-date\">July 14, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Really difficult and time consuming to work with, and mixing old and new Atomic layouts is quite the mess to work with, but the end-result usually looks worth. </p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Too Heavy for Larger 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/hussainmirza11/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/43741a383f0c6783aaae33e85197bcfd2d3d2c2697622fdeea0c258234d82188?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/43741a383f0c6783aaae33e85197bcfd2d3d2c2697622fdeea0c258234d82188?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/hussainmirza11/\" class=\"reviewer-name\">hussainmirza11</a> on <span class=\"review-date\">July 14, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>While Elementor is easy to use, it adds a significant amount of CSS and JavaScript. On larger websites, this can negatively impact loading speed and overall performance. There are also occasional compatibility issues after updates, which can be frustrating.</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\">Atomic version breaks site and support doesn&#039;t solve it</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/upupepops/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/af8a6e43fbdfdceffd33f44c8edfcaaa9f24dba1a25512d83b43c50141f1d091?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/af8a6e43fbdfdceffd33f44c8edfcaaa9f24dba1a25512d83b43c50141f1d091?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/upupepops/\" class=\"reviewer-name\">Maria del Castillo <small>(upupepops)</small></a> on <span class=\"review-date\">July 13, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Still waiting for support to fix the atomic designer. After a recent update my website broke completely (error with containers) and after more than a month I\'m still waiting for support to fix it. They admited it is a problem on their side, but still haven\'t done anything to solve it. Would not recommend this plugin anymore.</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Too many promotional messages in the Elementor dashboard</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/tiri17/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/a93b723acac08d831e6db6eb756b246ec0ae97cec8af4cdcbb63e4f91135628c?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/a93b723acac08d831e6db6eb756b246ec0ae97cec8af4cdcbb63e4f91135628c?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/tiri17/\" class=\"reviewer-name\">Thierry Laval <small>(tiri17)</small></a> on <span class=\"review-date\">July 11, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Elementor is an excellent page builder, but my frustration, as well as that of my clients regarding the repeated display of promotional messages in the dashboard, leads me to give it only one star.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It is becoming extremely annoying to see advertising everywhere, including inside an administration area that should remain a clean and professional workspace. This constant promotion creates a strong rejection of the product instead of encouraging users to continue using Elementor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Users should be given a simple option to disable these promotional messages and keep control over their own workspace.</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">learning curve is quite steep for new users</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"3 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"3\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/ashlyjohny/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/32acb95946e716d19f317aceafce692d46a21bae38c385716fd508508fdd9825?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/32acb95946e716d19f317aceafce692d46a21bae38c385716fd508508fdd9825?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/ashlyjohny/\" class=\"reviewer-name\">ashlyjohny</a> on <span class=\"review-date\">July 8, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>The plugin is good and offers useful features, but the learning curve is quite steep for new users. Better documentation or beginner-friendly tutorials would make it much easier to get started.</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Great Plugin</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/ethanmaller/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/762af23b022fc9a21b3859d2a166a920ab367bff7ae1e98e004c02c570ded5d5?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/762af23b022fc9a21b3859d2a166a920ab367bff7ae1e98e004c02c570ded5d5?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/ethanmaller/\" class=\"reviewer-name\">ethanmaller</a> on <span class=\"review-date\">July 8, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Elementor was key in helping us implement our designs across our pages and blogs. It was an interesting learning curve at first, but everything clicked once we understood the logic.</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Where is Elementor heading?</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/updesignme/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/db41171f090c42c53b0d894a6f73ef286594be59f40900df9b4cd988858e7277?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/db41171f090c42c53b0d894a6f73ef286594be59f40900df9b4cd988858e7277?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/updesignme/\" class=\"reviewer-name\">updesignme</a> on <span class=\"review-date\">July 3, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>I am very disappointed with Elementor. V4 is utterly unreliable and causing all kinds of erratic behaviour and difficulties. There is limited help resources available, and just don\'t try to contact support, because everything will your fault. I have already moved my hosting away. Seems it\'s time to look for a new page builder too. Not happy Elementor!</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Editor is frustrating - Broken</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/ssiddiqi4/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/79f9621d8ac9c50db9dc0c996ce6210158879b5048dffaeb97b793e050fabccf?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/79f9621d8ac9c50db9dc0c996ce6210158879b5048dffaeb97b793e050fabccf?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/ssiddiqi4/\" class=\"reviewer-name\">ssiddiqi4</a> on <span class=\"review-date\">July 2, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>I rolled-back to version 4.1.2 after wasting a few frustrating days with v 4.1.4. The Editor was horribly slow to load.  I kept troubleshooting plugins and other tweaks.  Nothing helped, after rolling back to v 4.1.2, I got a working Elementor again. With their ambitious new features, Elementor team did a very good job to make v 4.1.4 useless.</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Beaucoup trop lourd</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/remyrivalis/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/54440a19403fbdef2d9aef49cb10ebf854172c9671df29e9bb1cff3b1c43f28f?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/54440a19403fbdef2d9aef49cb10ebf854172c9671df29e9bb1cff3b1c43f28f?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/remyrivalis/\" class=\"reviewer-name\">remyrivalis</a> on <span class=\"review-date\">July 1, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Tout dans ce plugin est trop lourd :</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Admin trop lourde, vous serez peut-être obligé d\'augmenter la mémoire disponible pour pouvoir éditer des pages.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Page en front trop lourde, ralenti le site et globalement mauvais coté SEO.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Vu les possibilité qu\'offre Gutemberg qui s\'étoffe de plus en plus, je ne recommande vraiment pas ce plugin !</p>\n<!-- /wp:paragraph --></div>\n</div>\n\";}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.2.0.zip\";s:14:\"upgrade_notice\";a:0:{}s:11:\"screenshots\";a:6:{i:1;a:2:{s:3:\"src\";s:62:\"https://ps.w.org/elementor/assets/screenshot-1.gif?rev=3005087\";s:7:\"caption\";s:144:\"<strong>Visual Drag and Drop Editor</strong> - Design your website layouts and place any element anywhere on the page for pixel-perfect designs.\";}i:2;a:2:{s:3:\"src\";s:62:\"https://ps.w.org/elementor/assets/screenshot-2.gif?rev=3005087\";s:7:\"caption\";s:185:\"<strong>Full Design System</strong> - Enjoy a professional workflow and ensure consistency across your site. Define your settings, use them globally, and instantly adjust them any time.\";}i:3;a:2:{s:3:\"src\";s:62:\"https://ps.w.org/elementor/assets/screenshot-3.gif?rev=3005087\";s:7:\"caption\";s:170:\"<strong>Responsive Design</strong> Fully edit your website and customize the behavior on desktop, tablet, &amp; mobile to optimize the visitor experience on every device.\";}i:4;a:2:{s:3:\"src\";s:62:\"https://ps.w.org/elementor/assets/screenshot-4.gif?rev=3005087\";s:7:\"caption\";s:193:\"<strong>Kits and Templates</strong> - Jumpstart your web creation process or get inspired with professionally-designed templates or full website kits available for your immediate customization.\";}i:5;a:2:{s:3:\"src\";s:62:\"https://ps.w.org/elementor/assets/screenshot-5.gif?rev=3005087\";s:7:\"caption\";s:197:\"<strong>Nested Elements</strong> Leverage Elementor Editor\'s Nested widgets to place any widget inside the content area of another widget - like Tabs, and Accordion for complete design flexibility.\";}i:6;a:2:{s:3:\"src\";s:62:\"https://ps.w.org/elementor/assets/screenshot-6.gif?rev=3005087\";s:7:\"caption\";s:127:\"<strong>Motion Effects</strong> - Add entrance animations and transitions to any element in your website to captivate visitors.\";}}s:4:\"tags\";a:5:{s:13:\"drag-and-drop\";s:13:\"drag-and-drop\";s:6:\"editor\";s:6:\"editor\";s:9:\"elementor\";s:9:\"elementor\";s:12:\"landing-page\";s:12:\"landing page\";s:12:\"page-builder\";s:12:\"page builder\";}s:8:\"versions\";a:445:{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:5:\"4.1.5\";s:58:\"https://downloads.wordpress.org/plugin/elementor.4.1.5.zip\";s:5:\"4.2.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.4.2.0.zip\";s:11:\"4.2.0-beta1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.4.2.0-beta1.zip\";s:11:\"4.2.0-beta2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.4.2.0-beta2.zip\";s:10:\"4.2.0-dev2\";s:63:\"https://downloads.wordpress.org/plugin/elementor.4.2.0-dev2.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 `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(2711, '_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a', '1784655572', 'off'),
(2712, '_site_transient_poptags_40cd750bba9870f18aada2478b24840a', 'O:8:\"stdClass\":100:{s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";i:10258;}s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";i:5084;}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";i:2983;}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";i:2928;}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";i:2799;}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";i:2328;}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";i:2212;}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";i:2017;}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";i:1878;}s:2:\"ai\";a:3:{s:4:\"name\";s:2:\"AI\";s:4:\"slug\";s:2:\"ai\";s:5:\"count\";i:1851;}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";i:1818;}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";i:1764;}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";i:1652;}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";i:1643;}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";i:1569;}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";i:1523;}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";i:1513;}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";i:1453;}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";i:1393;}s:9:\"analytics\";a:3:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analytics\";s:5:\"count\";i:1384;}s:9:\"gutenberg\";a:3:{s:4:\"name\";s:9:\"gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:5:\"count\";i:1384;}s:9:\"elementor\";a:3:{s:4:\"name\";s:9:\"elementor\";s:4:\"slug\";s:9:\"elementor\";s:5:\"count\";i:1342;}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";i:1328;}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";i:1205;}s:5:\"block\";a:3:{s:4:\"name\";s:5:\"block\";s:4:\"slug\";s:5:\"block\";s:5:\"count\";i:1179;}s:7:\"payment\";a:3:{s:4:\"name\";s:7:\"payment\";s:4:\"slug\";s:7:\"payment\";s:5:\"count\";i:1165;}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";i:1163;}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";i:1157;}s:15:\"payment-gateway\";a:3:{s:4:\"name\";s:15:\"payment gateway\";s:4:\"slug\";s:15:\"payment-gateway\";s:5:\"count\";i:1147;}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";i:1134;}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";i:1053;}s:11:\"performance\";a:3:{s:4:\"name\";s:11:\"performance\";s:4:\"slug\";s:11:\"performance\";s:5:\"count\";i:1049;}s:10:\"e-commerce\";a:3:{s:4:\"name\";s:10:\"e-commerce\";s:4:\"slug\";s:10:\"e-commerce\";s:5:\"count\";i:1048;}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";i:1036;}s:6:\"slider\";a:3:{s:4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";i:1019;}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";i:988;}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";i:970;}s:12:\"contact-form\";a:3:{s:4:\"name\";s:12:\"contact form\";s:4:\"slug\";s:12:\"contact-form\";s:5:\"count\";i:946;}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:5:\"count\";i:944;}s:6:\"search\";a:3:{s:4:\"name\";s:6:\"search\";s:4:\"slug\";s:6:\"search\";s:5:\"count\";i:936;}s:6:\"editor\";a:3:{s:4:\"name\";s:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";i:877;}s:4:\"chat\";a:3:{s:4:\"name\";s:4:\"chat\";s:4:\"slug\";s:4:\"chat\";s:5:\"count\";i:864;}s:5:\"embed\";a:3:{s:4:\"name\";s:5:\"embed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";i:850;}s:8:\"shipping\";a:3:{s:4:\"name\";s:8:\"shipping\";s:4:\"slug\";s:8:\"shipping\";s:5:\"count\";i:827;}s:4:\"menu\";a:3:{s:4:\"name\";s:4:\"menu\";s:4:\"slug\";s:4:\"menu\";s:5:\"count\";i:814;}s:14:\"contact-form-7\";a:3:{s:4:\"name\";s:14:\"contact form 7\";s:4:\"slug\";s:14:\"contact-form-7\";s:5:\"count\";i:809;}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";i:805;}s:7:\"chatbot\";a:3:{s:4:\"name\";s:7:\"chatbot\";s:4:\"slug\";s:7:\"chatbot\";s:5:\"count\";i:800;}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";i:786;}s:3:\"api\";a:3:{s:4:\"name\";s:3:\"api\";s:4:\"slug\";s:3:\"api\";s:5:\"count\";i:776;}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";i:766;}s:8:\"checkout\";a:3:{s:4:\"name\";s:8:\"checkout\";s:4:\"slug\";s:8:\"checkout\";s:5:\"count\";i:762;}s:9:\"dashboard\";a:3:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"dashboard\";s:5:\"count\";i:760;}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";i:752;}s:9:\"marketing\";a:3:{s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\";i:752;}s:5:\"forms\";a:3:{s:4:\"name\";s:5:\"forms\";s:4:\"slug\";s:5:\"forms\";s:5:\"count\";i:751;}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"ajax\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";i:729;}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";i:716;}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";i:716;}s:9:\"affiliate\";a:3:{s:4:\"name\";s:9:\"affiliate\";s:4:\"slug\";s:9:\"affiliate\";s:5:\"count\";i:712;}s:8:\"calendar\";a:3:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"calendar\";s:5:\"count\";i:700;}s:8:\"payments\";a:3:{s:4:\"name\";s:8:\"payments\";s:4:\"slug\";s:8:\"payments\";s:5:\"count\";i:692;}s:10:\"responsive\";a:3:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5:\"count\";i:691;}s:6:\"blocks\";a:3:{s:4:\"name\";s:6:\"blocks\";s:4:\"slug\";s:6:\"blocks\";s:5:\"count\";i:690;}s:6:\"events\";a:3:{s:4:\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";i:688;}s:5:\"popup\";a:3:{s:4:\"name\";s:5:\"popup\";s:4:\"slug\";s:5:\"popup\";s:5:\"count\";i:674;}s:10:\"automation\";a:3:{s:4:\"name\";s:10:\"automation\";s:4:\"slug\";s:10:\"automation\";s:5:\"count\";i:665;}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";i:664;}s:3:\"css\";a:3:{s:4:\"name\";s:3:\"css\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";i:654;}s:7:\"contact\";a:3:{s:4:\"name\";s:7:\"contact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";i:650;}s:8:\"tracking\";a:3:{s:4:\"name\";s:8:\"tracking\";s:4:\"slug\";s:8:\"tracking\";s:5:\"count\";i:628;}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";i:626;}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";i:624;}s:3:\"ads\";a:3:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"count\";i:619;}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";i:618;}s:9:\"live-chat\";a:3:{s:4:\"name\";s:9:\"live chat\";s:4:\"slug\";s:9:\"live-chat\";s:5:\"count\";i:617;}s:10:\"newsletter\";a:3:{s:4:\"name\";s:10:\"newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:5:\"count\";i:597;}s:10:\"categories\";a:3:{s:4:\"name\";s:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";i:593;}s:5:\"theme\";a:3:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme\";s:5:\"count\";i:587;}s:7:\"booking\";a:3:{s:4:\"name\";s:7:\"booking\";s:4:\"slug\";s:7:\"booking\";s:5:\"count\";i:580;}s:6:\"button\";a:3:{s:4:\"name\";s:6:\"button\";s:4:\"slug\";s:6:\"button\";s:5:\"count\";i:578;}s:6:\"custom\";a:3:{s:4:\"name\";s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";i:575;}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";i:571;}s:10:\"navigation\";a:3:{s:4:\"name\";s:10:\"navigation\";s:4:\"slug\";s:10:\"navigation\";s:5:\"count\";i:571;}s:4:\"gdpr\";a:3:{s:4:\"name\";s:4:\"GDPR\";s:4:\"slug\";s:4:\"gdpr\";s:5:\"count\";i:571;}s:12:\"social-media\";a:3:{s:4:\"name\";s:12:\"social media\";s:4:\"slug\";s:12:\"social-media\";s:5:\"count\";i:564;}s:6:\"import\";a:3:{s:4:\"name\";s:6:\"import\";s:4:\"slug\";s:6:\"import\";s:5:\"count\";i:563;}s:5:\"users\";a:3:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"count\";i:553;}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";i:548;}s:8:\"redirect\";a:3:{s:4:\"name\";s:8:\"redirect\";s:4:\"slug\";s:8:\"redirect\";s:5:\"count\";i:548;}s:4:\"user\";a:3:{s:4:\"name\";s:4:\"user\";s:4:\"slug\";s:4:\"user\";s:5:\"count\";i:541;}s:6:\"mobile\";a:3:{s:4:\"name\";s:6:\"mobile\";s:4:\"slug\";s:6:\"mobile\";s:5:\"count\";i:534;}s:5:\"cache\";a:3:{s:4:\"name\";s:5:\"cache\";s:4:\"slug\";s:5:\"cache\";s:5:\"count\";i:532;}s:7:\"gateway\";a:3:{s:4:\"name\";s:7:\"gateway\";s:4:\"slug\";s:7:\"gateway\";s:5:\"count\";i:532;}s:13:\"accessibility\";a:3:{s:4:\"name\";s:13:\"accessibility\";s:4:\"slug\";s:13:\"accessibility\";s:5:\"count\";i:526;}s:10:\"statistics\";a:3:{s:4:\"name\";s:10:\"statistics\";s:4:\"slug\";s:10:\"statistics\";s:5:\"count\";i:520;}s:12:\"notification\";a:3:{s:4:\"name\";s:12:\"notification\";s:4:\"slug\";s:12:\"notification\";s:5:\"count\";i:513;}s:8:\"products\";a:3:{s:4:\"name\";s:8:\"products\";s:4:\"slug\";s:8:\"products\";s:5:\"count\";i:491;}s:7:\"reviews\";a:3:{s:4:\"name\";s:7:\"reviews\";s:4:\"slug\";s:7:\"reviews\";s:5:\"count\";i:486;}s:7:\"privacy\";a:3:{s:4:\"name\";s:7:\"privacy\";s:4:\"slug\";s:7:\"privacy\";s:5:\"count\";i:483;}}', 'off'),
(209, 'edd_sl_1380e07af6fd2fb8cf7095284dd275e9', 'a:2:{s:7:\"timeout\";i:1784655584;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'),
(180, 'elementor_onboarded', '1', 'auto'),
(181, 'elementor_active_kit', '7', 'auto'),
(182, 'elementor_font_display', 'swap', 'auto'),
(198, '_elementor_installed_time', '1781593762', 'auto'),
(199, 'elementor_connect_site_key', '3cd2902db10a0561305b82c111580a0c', 'auto'),
(185, 'recently_activated', 'a:0:{}', 'off'),
(2736, 'bmip_to_be_uploaded', 'a:3:{s:14:\"current_upload\";a:0:{}s:5:\"queue\";a:0:{}s:6:\"failed\";a:0:{}}', 'auto'),
(195, 'elementor_events_db_version', '1.0.0', 'off'),
(187, 'elementor_landing_pages_activation', '0', 'auto'),
(188, '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'),
(189, 'elementor_version', '4.1.3', 'auto'),
(190, 'elementor_install_history', 'a:1:{s:5:\"4.1.3\";i:1781593761;}', 'auto'),
(191, '_elementor_10th_bday_data', 'a:2:{s:7:\"timeout\";i:1781597361;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'),
(125, 'theme_mods_twentytwentyfive', 'a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1781593721;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'),
(2759, '_elementor_design_system_sync_css_meta', 'a:2:{s:4:\"time\";i:1784700426;i:0;b:0;}', 'auto'),
(128, 'recovery_keys', 'a:0:{}', 'off'),
(154, 'finished_updating_comment_type', '1', 'auto'),
(151, 'can_compress_scripts', '1', 'on'),
(162, 'current_theme', 'Astra Child', 'auto'),
(163, '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:52;}', 'on'),
(164, 'theme_switched', '', 'auto'),
(194, '_elementor_pro_free_trial_data', 'a:2:{s:7:\"timeout\";i:1781597362;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_atomic_widgets_db_version', '1', 'auto'),
(197, 'elementor_global_classes_db_version', '3', 'auto'),
(200, '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'),
(214, 'elementor_pro_version', '4.1.1', 'auto'),
(215, 'elementor_pro_install_history', 'a:2:{s:5:\"4.0.2\";i:1781594079;s:5:\"4.1.1\";i:1781595586;}', 'auto'),
(216, 'widget_elementor-library', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(217, '_elementor_pro_installed_time', '1781594080', 'auto'),
(218, 'elementor_submissions_db_version', '5', 'auto'),
(219, 'elementor_fonts_manager_font_types', 'a:0:{}', 'auto'),
(220, 'elementor_fonts_manager_fonts', 'a:0:{}', 'auto'),
(221, 'elementor_custom_icon_sets_config', 'a:0:{}', 'auto'),
(1102, 'category_children', 'a:0:{}', 'auto'),
(1307, 'aab_db_version', '2.7.3', 'auto'),
(1308, 'aab_activated_at', '2026-06-17 10:58:30', 'auto'),
(1473, 'post_smtp_webhook_urls', 'a:0:{}', 'auto'),
(225, 'WPLANG', '', 'auto'),
(226, 'new_admin_email', 'arifwebsols@gmail.com', 'auto'),
(234, 'elementor_allow_tracking', 'yes', 'auto'),
(235, 'elementor_allow_tracking_last_update', '1781601480', 'auto'),
(236, 'elementor_tracker_last_send', '1784582017', 'auto'),
(241, 'elementor_pro_license_key', 'ep-ugLu1rp3BCnkcUMDdaUB1701104650EgD4W7ueft6i', 'auto'),
(242, '_elementor_pro_license_v2_data_fallback', 'a:2:{s:7:\"timeout\";i:1784786823;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'),
(231, 'elementor_one_client_id', '176e47b0-d2d7-4275-9d93-390b9378d938', 'off'),
(232, 'elementor_one_client_secret', '_rnRE51n1IET_~kmzd6Rcx6mCg', 'off'),
(233, 'elementor_one_home_url', 'aHR0cHM6Ly9tcmFyaWYubWUvb3B0aW1hbG1lbnRhbHdlbGxuZXNz', 'off'),
(243, '_elementor_pro_license_v2_data', 'a:2:{s:7:\"timeout\";i:1784743623;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'),
(244, 'elementor_notes_db_version', '5', 'auto'),
(245, '_elementor_mixpanel_config', 'a:2:{s:7:\"timeout\";i:1784704026;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'),
(246, '_elementor_pro_api_requests_lock', 'a:2:{s:16:\"get_license_data\";i:1784700422;s:11:\"get_version\";i:1784644784;}', 'auto'),
(247, 'nav_menu_options', 'a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}', 'off'),
(248, 'litespeed.conf._version', '7.8.0.1', 'auto'),
(249, 'litespeed.conf.hash', 'UorbWOafLyiKbbygrHpgnY7sDGr9ymjU', 'auto'),
(250, 'litespeed.conf.api_key', '', 'auto'),
(251, 'litespeed.conf.auto_upgrade', '', 'auto'),
(252, 'litespeed.conf.server_ip', '', 'auto'),
(253, 'litespeed.conf.guest', '', 'auto'),
(254, 'litespeed.conf.guest_optm', '', 'auto'),
(255, 'litespeed.conf.news', '1', 'auto'),
(256, 'litespeed.conf.cache', '1', 'auto'),
(257, 'litespeed.conf.cache-priv', '1', 'auto'),
(258, 'litespeed.conf.cache-commenter', '1', 'auto'),
(259, 'litespeed.conf.cache-rest', '1', 'auto'),
(260, 'litespeed.conf.cache-page_login', '1', 'auto'),
(261, 'litespeed.conf.cache-mobile', '', 'auto'),
(262, 'litespeed.conf.cache-mobile_rules', '[\"Mobile\",\"Android\",\"Silk\\/\",\"Kindle\",\"BlackBerry\",\"Opera Mini\",\"Opera Mobi\"]', 'auto'),
(263, 'litespeed.conf.cache-browser', '', 'auto'),
(264, 'litespeed.conf.cache-exc_useragents', '[]', 'auto'),
(265, 'litespeed.conf.cache-exc_cookies', '[]', 'auto'),
(266, 'litespeed.conf.cache-exc_qs', '[]', 'auto'),
(267, 'litespeed.conf.cache-exc_cat', '[]', 'auto'),
(268, 'litespeed.conf.cache-exc_tag', '[]', 'auto'),
(269, 'litespeed.conf.cache-force_uri', '[]', 'auto'),
(270, 'litespeed.conf.cache-force_pub_uri', '[]', 'auto'),
(271, 'litespeed.conf.cache-priv_uri', '[]', 'auto'),
(272, 'litespeed.conf.cache-exc', '[]', 'auto'),
(273, 'litespeed.conf.cache-exc_roles', '[]', 'auto'),
(274, 'litespeed.conf.cache-drop_qs', '[\"fbclid\",\"gclid\",\"utm*\",\"_ga\"]', 'auto'),
(275, 'litespeed.conf.cache-ttl_pub', '604800', 'auto'),
(276, 'litespeed.conf.cache-ttl_priv', '1800', 'auto'),
(277, 'litespeed.conf.cache-ttl_frontpage', '604800', 'auto'),
(278, 'litespeed.conf.cache-ttl_feed', '604800', 'auto'),
(279, 'litespeed.conf.cache-ttl_rest', '604800', 'auto'),
(280, 'litespeed.conf.cache-ttl_browser', '31557600', 'auto'),
(281, 'litespeed.conf.cache-ttl_status', '[\"404 3600\",\"500 600\"]', 'auto'),
(282, 'litespeed.conf.cache-login_cookie', '', 'auto'),
(283, 'litespeed.conf.cache-ajax_ttl', '[]', 'auto'),
(284, 'litespeed.conf.cache-vary_cookies', '[]', 'auto'),
(285, 'litespeed.conf.cache-vary_group', '[]', 'auto'),
(286, 'litespeed.conf.purge-upgrade', '', 'auto'),
(287, 'litespeed.conf.purge-stale', '', 'auto'),
(288, 'litespeed.conf.purge-post_all', '', 'auto'),
(289, 'litespeed.conf.purge-post_f', '1', 'auto'),
(290, 'litespeed.conf.purge-post_h', '1', 'auto'),
(291, 'litespeed.conf.purge-post_p', '1', 'auto'),
(292, 'litespeed.conf.purge-post_pwrp', '1', 'auto'),
(293, 'litespeed.conf.purge-post_a', '1', 'auto'),
(294, 'litespeed.conf.purge-post_y', '', 'auto'),
(295, 'litespeed.conf.purge-post_m', '1', 'auto'),
(296, 'litespeed.conf.purge-post_d', '', 'auto'),
(297, 'litespeed.conf.purge-post_t', '1', 'auto'),
(298, 'litespeed.conf.purge-post_pt', '1', 'auto'),
(299, 'litespeed.conf.purge-timed_urls', '[]', 'auto'),
(300, 'litespeed.conf.purge-timed_urls_time', '', 'auto'),
(301, 'litespeed.conf.purge-hook_all', '[\"switch_theme\",\"wp_create_nav_menu\",\"wp_update_nav_menu\",\"wp_delete_nav_menu\",\"create_term\",\"edit_terms\",\"delete_term\",\"add_link\",\"edit_link\",\"delete_link\"]', 'auto'),
(302, 'litespeed.conf.esi', '', 'auto'),
(303, 'litespeed.conf.esi-cache_admbar', '1', 'auto'),
(304, 'litespeed.conf.esi-cache_commform', '1', 'auto'),
(305, 'litespeed.conf.esi-nonce', '[\"stats_nonce\",\"subscribe_nonce\"]', 'auto'),
(306, 'litespeed.conf.util-instant_click', '', 'auto'),
(307, 'litespeed.conf.util-no_https_vary', '', 'auto'),
(308, 'litespeed.conf.debug-disable_all', '', 'auto'),
(309, 'litespeed.conf.debug', '0', 'auto'),
(310, 'litespeed.conf.debug-ips', '[\"127.0.0.1\"]', 'auto'),
(311, 'litespeed.conf.debug-level', '', 'auto'),
(312, 'litespeed.conf.debug-filesize', '3', 'auto'),
(313, 'litespeed.conf.debug-collapse_qs', '', 'auto'),
(314, 'litespeed.conf.debug-inc', '[]', 'auto'),
(315, 'litespeed.conf.debug-exc', '[]', 'auto'),
(316, 'litespeed.conf.debug-exc_strings', '[]', 'auto'),
(317, 'litespeed.conf.db_optm-revisions_max', '0', 'auto'),
(318, 'litespeed.conf.db_optm-revisions_age', '0', 'auto'),
(319, 'litespeed.conf.optm-css_min', '', 'auto'),
(320, 'litespeed.conf.optm-css_comb', '', 'auto'),
(321, 'litespeed.conf.optm-css_comb_ext_inl', '1', 'auto'),
(322, 'litespeed.conf.optm-ucss', '', 'auto'),
(323, 'litespeed.conf.optm-ucss_inline', '', 'auto'),
(324, 'litespeed.conf.optm-ucss_whitelist', '[]', 'auto'),
(325, 'litespeed.conf.optm-ucss_file_exc_inline', '[]', 'auto'),
(326, 'litespeed.conf.optm-ucss_exc', '[]', 'auto'),
(327, 'litespeed.conf.optm-css_exc', '[]', 'auto'),
(328, 'litespeed.conf.optm-js_min', '', 'auto'),
(329, 'litespeed.conf.optm-js_comb', '', 'auto'),
(330, 'litespeed.conf.optm-js_comb_ext_inl', '1', 'auto'),
(331, 'litespeed.conf.optm-js_delay_inc', '[]', 'auto'),
(332, 'litespeed.conf.optm-js_exc', '[\"jquery.js\",\"jquery.min.js\"]', 'auto'),
(333, 'litespeed.conf.optm-html_min', '', 'auto'),
(334, 'litespeed.conf.optm-html_lazy', '[]', 'auto'),
(335, 'litespeed.conf.optm-html_skip_comment', '[]', 'auto'),
(336, 'litespeed.conf.optm-qs_rm', '', 'auto'),
(337, 'litespeed.conf.optm-ggfonts_rm', '', 'auto'),
(338, 'litespeed.conf.optm-css_async', '', 'auto'),
(339, 'litespeed.conf.optm-ccss_per_url', '', 'auto'),
(340, 'litespeed.conf.optm-ccss_sep_posttype', '[\"page\"]', 'auto'),
(341, 'litespeed.conf.optm-ccss_sep_uri', '[]', 'auto'),
(342, 'litespeed.conf.optm-ccss_whitelist', '[]', 'auto'),
(343, 'litespeed.conf.optm-css_async_inline', '1', 'auto'),
(344, 'litespeed.conf.optm-css_font_display', '', 'auto'),
(345, 'litespeed.conf.optm-js_defer', '0', 'auto'),
(346, 'litespeed.conf.optm-emoji_rm', '', 'auto'),
(347, 'litespeed.conf.optm-noscript_rm', '', 'auto'),
(348, 'litespeed.conf.optm-ggfonts_async', '', 'auto'),
(349, 'litespeed.conf.optm-exc_roles', '[]', 'auto'),
(350, 'litespeed.conf.optm-ccss_con', '', 'auto'),
(351, 'litespeed.conf.optm-js_defer_exc', '[\"jquery.js\",\"jquery.min.js\",\"gtm.js\",\"analytics.js\"]', 'auto'),
(352, 'litespeed.conf.optm-gm_js_exc', '[]', 'auto'),
(353, 'litespeed.conf.optm-dns_prefetch', '[]', 'auto'),
(354, 'litespeed.conf.optm-dns_prefetch_ctrl', '', 'auto'),
(355, 'litespeed.conf.optm-dns_preconnect', '[]', 'auto'),
(356, 'litespeed.conf.optm-exc', '[]', 'auto'),
(357, 'litespeed.conf.optm-guest_only', '1', 'auto'),
(358, 'litespeed.conf.object', '', 'auto'),
(359, 'litespeed.conf.object-kind', '', 'auto'),
(360, 'litespeed.conf.object-host', 'localhost', 'auto'),
(361, 'litespeed.conf.object-port', '11211', 'auto'),
(362, 'litespeed.conf.object-life', '360', 'auto'),
(363, 'litespeed.conf.object-persistent', '1', 'auto'),
(364, 'litespeed.conf.object-admin', '1', 'auto'),
(365, 'litespeed.conf.object-db_id', '0', 'auto'),
(366, 'litespeed.conf.object-user', '', 'auto'),
(367, 'litespeed.conf.object-pswd', '', 'auto'),
(368, 'litespeed.conf.object-global_groups', '[\"users\",\"userlogins\",\"useremail\",\"userslugs\",\"usermeta\",\"user_meta\",\"site-transient\",\"site-options\",\"site-lookup\",\"site-details\",\"blog-lookup\",\"blog-details\",\"blog-id-cache\",\"rss\",\"global-posts\",\"global-cache-test\"]', 'auto'),
(369, 'litespeed.conf.object-non_persistent_groups', '[\"comment\",\"counts\",\"plugins\",\"wc_session_id\"]', 'auto'),
(370, 'litespeed.conf.discuss-avatar_cache', '', 'auto'),
(371, 'litespeed.conf.discuss-avatar_cron', '', 'auto'),
(372, 'litespeed.conf.discuss-avatar_cache_ttl', '604800', 'auto'),
(373, 'litespeed.conf.optm-localize', '', 'auto'),
(374, 'litespeed.conf.optm-localize_domains', '[\"### Popular scripts ###\",\"https:\\/\\/platform.twitter.com\\/widgets.js\",\"https:\\/\\/connect.facebook.net\\/en_US\\/fbevents.js\"]', 'auto'),
(375, 'litespeed.conf.media-lazy', '', 'auto'),
(376, 'litespeed.conf.media-lazy_placeholder', '', 'auto'),
(377, 'litespeed.conf.media-placeholder_resp', '', 'auto'),
(378, 'litespeed.conf.media-placeholder_resp_color', '#cfd4db', 'auto'),
(379, 'litespeed.conf.media-placeholder_resp_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"{width}\" height=\"{height}\" viewBox=\"0 0 {width} {height}\"><rect width=\"100%\" height=\"100%\" style=\"fill:{color};fill-opacity: 0.1;\"/></svg>', 'auto'),
(380, 'litespeed.conf.media-lqip', '', 'auto'),
(381, 'litespeed.conf.media-lqip_qual', '4', 'auto'),
(382, 'litespeed.conf.media-lqip_min_w', '150', 'auto'),
(383, 'litespeed.conf.media-lqip_min_h', '150', 'auto'),
(384, 'litespeed.conf.media-placeholder_resp_async', '1', 'auto'),
(385, 'litespeed.conf.media-iframe_lazy', '', 'auto'),
(386, 'litespeed.conf.media-add_missing_sizes', '', 'auto'),
(387, 'litespeed.conf.media-lazy_exc', '[]', 'auto'),
(388, 'litespeed.conf.media-lazy_cls_exc', '[\"wmu-preview-img\"]', 'auto'),
(389, 'litespeed.conf.media-lazy_parent_cls_exc', '[]', 'auto'),
(390, 'litespeed.conf.media-iframe_lazy_cls_exc', '[]', 'auto'),
(391, 'litespeed.conf.media-iframe_lazy_parent_cls_exc', '[]', 'auto'),
(392, 'litespeed.conf.media-lazy_uri_exc', '[]', 'auto'),
(393, 'litespeed.conf.media-lqip_exc', '[]', 'auto'),
(394, 'litespeed.conf.media-vpi', '', 'auto'),
(395, 'litespeed.conf.media-vpi_cron', '', 'auto'),
(396, 'litespeed.conf.media-auto_rescale_ori', '', 'auto'),
(397, 'litespeed.conf.img_optm-auto', '', 'auto'),
(398, 'litespeed.conf.img_optm-ori', '1', 'auto'),
(399, 'litespeed.conf.img_optm-rm_bkup', '', 'auto'),
(400, 'litespeed.conf.img_optm-webp', '0', 'auto'),
(401, 'litespeed.conf.img_optm-lossless', '', 'auto'),
(402, 'litespeed.conf.img_optm-sizes_skipped', '[]', 'auto'),
(403, 'litespeed.conf.img_optm-exif', '1', 'auto'),
(404, 'litespeed.conf.img_optm-webp_attr', '[\"img.src\",\"div.data-thumb\",\"img.data-src\",\"img.data-lazyload\",\"div.data-large_image\",\"img.retina_logo_url\",\"div.data-parallax-image\",\"div.data-vc-parallax-image\",\"video.poster\"]', 'auto'),
(405, 'litespeed.conf.img_optm-webp_replace_srcset', '', 'auto'),
(406, 'litespeed.conf.img_optm-jpg_quality', '82', 'auto'),
(407, 'litespeed.conf.crawler', '', 'auto'),
(408, 'litespeed.conf.crawler-crawl_interval', '302400', 'auto'),
(409, 'litespeed.conf.crawler-load_limit', '1', 'auto'),
(410, 'litespeed.conf.crawler-sitemap', '', 'auto'),
(411, 'litespeed.conf.crawler-roles', '[]', 'auto'),
(412, 'litespeed.conf.crawler-cookies', '[]', 'auto'),
(413, 'litespeed.conf.misc-heartbeat_front', '', 'auto'),
(414, 'litespeed.conf.misc-heartbeat_front_ttl', '60', 'auto'),
(415, 'litespeed.conf.misc-heartbeat_back', '', 'auto'),
(416, 'litespeed.conf.misc-heartbeat_back_ttl', '60', 'auto'),
(417, 'litespeed.conf.misc-heartbeat_editor', '', 'auto'),
(418, 'litespeed.conf.misc-heartbeat_editor_ttl', '15', 'auto'),
(419, 'litespeed.conf.cdn', '', 'auto'),
(420, 'litespeed.conf.cdn-ori', '[]', 'auto'),
(421, 'litespeed.conf.cdn-ori_dir', '[\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\",\"wp-includes\"]', 'auto'),
(422, 'litespeed.conf.cdn-exc', '[]', 'auto'),
(423, 'litespeed.conf.cdn-quic', '', 'auto'),
(424, 'litespeed.conf.cdn-cloudflare', '', 'auto'),
(425, 'litespeed.conf.cdn-cloudflare_email', '', 'auto'),
(426, 'litespeed.conf.cdn-cloudflare_key', '', 'auto'),
(427, 'litespeed.conf.cdn-cloudflare_name', '', 'auto'),
(428, 'litespeed.conf.cdn-cloudflare_zone', '', 'auto'),
(429, 'litespeed.conf.cdn-cloudflare_clear', '', 'auto'),
(430, 'litespeed.conf.cdn-mapping', '[{\"url\":\"\",\"inc_img\":\"1\",\"inc_css\":\"1\",\"inc_js\":\"1\",\"filetype\":[\".aac\",\".css\",\".eot\",\".gif\",\".jpeg\",\".jpg\",\".js\",\".less\",\".mp3\",\".mp4\",\".ogg\",\".otf\",\".pdf\",\".png\",\".svg\",\".ttf\",\".webp\",\".woff\",\".woff2\"]}]', 'auto'),
(431, 'litespeed.conf.cdn-attr', '[\".src\",\".data-src\",\".href\",\".poster\",\"source.srcset\"]', 'auto'),
(432, 'litespeed.conf.qc-nameservers', '', 'auto'),
(433, 'litespeed.conf.qc-cname', '', 'auto'),
(434, 'litespeed.conf.debug-disable_tmp', '0', 'auto'),
(435, 'litespeed.cloud._summary', '{\"curr_request.ver_check\":0,\"last_request.ver_check\":1781595045,\"news.utime\":1781595513,\"curr_request.news\":0,\"last_request.news\":1781595513}', 'auto'),
(436, 'litespeed.purge.queue', '-1', 'auto'),
(437, 'litespeed.purge.queue2', '-1', 'auto'),
(440, 'litespeed.gui.lscwp_whm_install', '-1', 'auto'),
(441, 'litespeed.gui.dismiss', '-1', 'auto'),
(442, 'litespeed.data.upgrading', '-1', 'auto'),
(443, 'litespeed.admin_display.messages', '[\"<div class=\\\"litespeed_icon notice notice-success is-dismissible\\\"><p>Purged all caches successfully.<\\/p><\\/div>\"]', 'auto'),
(444, 'litespeed.optimize.timestamp_purge_css', '1781595522', 'auto');
INSERT INTO `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(455, 'elementor_log', 'a:12:{s:32:\"b379c8aff1a7d984e72a2d2e35511f29\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-06-16 07:39:00\";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.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-06-16 07:39:00\";}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.1\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"415613d24708e68fa9ade61be38710a5\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-06-16 07:39:46\";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-06-16 07:39:46\";}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:\"565e0fb4d7dc58e9c74df7580983da46\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-06-16 07:39:46\";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-06-16 07:39:46\";}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:\"629dade21d6b993f3d1c1194ea0d8f1f\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-06-16 07:39:46\";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-06-16 07:39:46\";}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:\"f1866b0fae3ad30f99bdb724f57e1ebd\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-06-16 07:39:46\";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.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-06-16 07:39:46\";}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.1\";}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-06-16 08:11:11\";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:52;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2026-06-17 07:34:46\";i:1;s:19:\"2026-06-17 07:51:49\";i:2;s:19:\"2026-06-17 08:07:55\";i:3;s:19:\"2026-06-17 08:18:23\";i:4;s:19:\"2026-06-17 09:13:35\";i:5;s:19:\"2026-06-17 09:15:10\";i:6;s:19:\"2026-06-17 09:25:13\";i:7;s:19:\"2026-06-17 09:26:14\";i:8;s:19:\"2026-06-17 09:26:18\";i:9;s:19:\"2026-06-17 09:29:32\";i:10;s:19:\"2026-06-17 09:49:16\";i:11;s:19:\"2026-06-17 09:53:24\";i:12;s:19:\"2026-06-17 10:46:55\";i:13;s:19:\"2026-06-17 11:06:53\";i:14;s:19:\"2026-06-17 11:14:39\";i:15;s:19:\"2026-06-17 11:16:37\";i:16;s:19:\"2026-06-17 11:18:52\";i:17;s:19:\"2026-06-17 11:38:03\";i:18;s:19:\"2026-06-17 11:45:19\";i:19;s:19:\"2026-06-17 11:55:40\";i:20;s:19:\"2026-06-17 12:45:21\";i:21;s:19:\"2026-06-17 12:48:22\";i:22;s:19:\"2026-06-17 13:27:43\";i:23;s:19:\"2026-06-17 13:33:54\";i:24;s:19:\"2026-06-17 14:05:21\";i:25;s:19:\"2026-06-17 14:06:53\";i:26;s:19:\"2026-06-17 14:07:50\";i:27;s:19:\"2026-06-17 14:08:51\";i:28;s:19:\"2026-06-17 14:11:12\";i:29;s:19:\"2026-06-17 14:12:22\";i:30;s:19:\"2026-06-17 14:26:40\";i:31;s:19:\"2026-06-17 14:27:33\";i:32;s:19:\"2026-06-17 14:28:30\";i:33;s:19:\"2026-06-17 14:30:28\";i:34;s:19:\"2026-06-17 14:39:00\";i:35;s:19:\"2026-06-18 04:56:37\";i:36;s:19:\"2026-06-23 13:09:42\";i:37;s:19:\"2026-07-13 16:16:47\";i:38;s:19:\"2026-07-13 16:16:47\";i:39;s:19:\"2026-07-13 16:28:15\";i:40;s:19:\"2026-07-13 16:28:18\";i:41;s:19:\"2026-07-13 16:31:21\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1781597471\";s:7:\"message\";s:31:\"Element type already registered\";s:3:\"url\";s:102:\"https://mrarif.me/optimalmentalwellness/wp-content/plugins/elementor/assets/js/editor.min.js?ver=4.1.3\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:6:\"926981\";}s:7:\"\0*\0file\";s:102:\"https://mrarif.me/optimalmentalwellness/wp-content/plugins/elementor/assets/js/editor.min.js?ver=4.1.3\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:6:\"926981\";}s:32:\"8c714fac5f337ed34edbecea3ee69a2d\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2026-06-16 08:14:26\";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:14;s:14:\"\0*\0times_dates\";a:14:{i:0;s:19:\"2026-06-16 08:14:26\";i:1;s:19:\"2026-06-16 08:14:26\";i:2;s:19:\"2026-06-16 08:14:26\";i:3;s:19:\"2026-06-16 10:29:10\";i:4;s:19:\"2026-06-16 10:29:10\";i:5;s:19:\"2026-06-17 08:54:26\";i:6;s:19:\"2026-06-17 08:54:26\";i:7;s:19:\"2026-06-17 08:54:26\";i:8;s:19:\"2026-06-17 08:57:20\";i:9;s:19:\"2026-06-17 08:57:20\";i:10;s:19:\"2026-06-17 08:57:20\";i:11;s:19:\"2026-06-17 09:06:21\";i:12;s:19:\"2026-06-17 09:06:21\";i:13;s:19:\"2026-06-17 09:06:21\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1781597666\";s:7:\"message\";s:77:\"Failed to execute \'querySelector\' on \'Document\': \'#\' is not a valid selector.\";s:3:\"url\";s:102:\"https://mrarif.me/optimalmentalwellness/wp-content/plugins/elementor/assets/js/editor.min.js?ver=4.1.3\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:6:\"981811\";}s:7:\"\0*\0file\";s:102:\"https://mrarif.me/optimalmentalwellness/wp-content/plugins/elementor/assets/js/editor.min.js?ver=4.1.3\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:6:\"981811\";}s:32:\"694e812599f043426d682503ba65737d\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2026-06-16 09:17:51\";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-06-16 09:17:51\";i:1;s:19:\"2026-06-16 09:18:00\";i:2;s:19:\"2026-06-16 09:32:40\";i:3;s:19:\"2026-06-17 08:07:44\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1781601471\";s:7:\"message\";s:30:\"r.startsWith is not a function\";s:3:\"url\";s:101:\"https://mrarif.me/optimalmentalwellness/wp-content/plugins/elementor/assets/js/admin.min.js?ver=4.1.3\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"42329\";}s:7:\"\0*\0file\";s:101:\"https://mrarif.me/optimalmentalwellness/wp-content/plugins/elementor/assets/js/admin.min.js?ver=4.1.3\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:5:\"42329\";}s:32:\"add341293aaf18712b5a4a4e36376f6d\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2026-06-16 09:52:47\";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:35;s:14:\"\0*\0times_dates\";a:35:{i:0;s:19:\"2026-06-16 09:52:47\";i:1;s:19:\"2026-06-16 09:52:47\";i:2;s:19:\"2026-06-16 09:52:47\";i:3;s:19:\"2026-06-16 09:52:47\";i:4;s:19:\"2026-06-16 09:52:47\";i:5;s:19:\"2026-06-16 09:53:08\";i:6;s:19:\"2026-06-16 09:53:08\";i:7;s:19:\"2026-06-16 09:55:44\";i:8;s:19:\"2026-06-16 09:55:44\";i:9;s:19:\"2026-06-17 02:41:01\";i:10;s:19:\"2026-06-17 02:41:01\";i:11;s:19:\"2026-06-17 02:41:02\";i:12;s:19:\"2026-06-17 02:41:02\";i:13;s:19:\"2026-06-17 02:41:04\";i:14;s:19:\"2026-06-17 09:13:45\";i:15;s:19:\"2026-06-17 09:13:45\";i:16;s:19:\"2026-06-17 09:13:48\";i:17;s:19:\"2026-06-17 09:13:49\";i:18;s:19:\"2026-06-17 09:13:51\";i:19;s:19:\"2026-06-17 09:14:04\";i:20;s:19:\"2026-06-17 14:08:46\";i:21;s:19:\"2026-06-17 14:08:46\";i:22;s:19:\"2026-06-17 14:08:46\";i:23;s:19:\"2026-06-17 14:08:46\";i:24;s:19:\"2026-06-17 14:08:46\";i:25;s:19:\"2026-06-17 14:11:07\";i:26;s:19:\"2026-06-17 14:11:07\";i:27;s:19:\"2026-06-17 14:12:12\";i:28;s:19:\"2026-06-17 14:12:12\";i:29;s:19:\"2026-06-17 14:26:48\";i:30;s:19:\"2026-06-17 14:26:48\";i:31;s:19:\"2026-06-17 14:27:08\";i:32;s:19:\"2026-06-17 14:27:08\";i:33;s:19:\"2026-06-17 14:29:23\";i:34;s:19:\"2026-06-17 14:29:23\";}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:112:\"/home/mrarqpph/public_html/optimalmentalwellness/wp-content/plugins/elementor-pro/modules/screenshots/module.php\";s:4:\"line\";i:33;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:112:\"/home/mrarqpph/public_html/optimalmentalwellness/wp-content/plugins/elementor-pro/modules/screenshots/module.php\";s:7:\"\0*\0line\";i:33;}s:32:\"e53e08c5f457b52eb49e353e443b81c0\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2026-06-16 09:54:35\";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:6;s:14:\"\0*\0times_dates\";a:6:{i:0;s:19:\"2026-06-16 09:54:35\";i:1;s:19:\"2026-06-16 10:16:46\";i:2;s:19:\"2026-06-17 06:11:56\";i:3;s:19:\"2026-06-17 06:11:58\";i:4;s:19:\"2026-06-17 06:11:59\";i:5;s:19:\"2026-06-17 06:12:00\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1781603675\";s:7:\"message\";s:35:\"this.ui.input.val is not a function\";s:3:\"url\";s:102:\"https://mrarif.me/optimalmentalwellness/wp-content/plugins/elementor/assets/js/editor.min.js?ver=4.1.3\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:6:\"248754\";}s:7:\"\0*\0file\";s:102:\"https://mrarif.me/optimalmentalwellness/wp-content/plugins/elementor/assets/js/editor.min.js?ver=4.1.3\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:6:\"248754\";}s:32:\"b1cf13440ef42ef57b873e65a27f44b9\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2026-06-17 11:40:20\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:37:\"Trying to access array offset on null\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a: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:18;s:14:\"\0*\0times_dates\";a:18:{i:0;s:19:\"2026-06-17 11:40:20\";i:1;s:19:\"2026-06-17 11:40:26\";i:2;s:19:\"2026-06-17 11:40:53\";i:3;s:19:\"2026-06-17 11:41:21\";i:4;s:19:\"2026-06-17 11:41:29\";i:5;s:19:\"2026-06-17 11:41:33\";i:6;s:19:\"2026-06-17 11:41:51\";i:7;s:19:\"2026-06-17 11:42:12\";i:8;s:19:\"2026-06-17 11:44:50\";i:9;s:19:\"2026-06-17 11:45:02\";i:10;s:19:\"2026-06-17 11:45:06\";i:11;s:19:\"2026-06-17 11:45:16\";i:12;s:19:\"2026-07-13 16:30:22\";i:13;s:19:\"2026-07-13 16:30:25\";i:14;s:19:\"2026-07-13 16:30:29\";i:15;s:19:\"2026-07-13 16:30:34\";i:16;s:19:\"2026-07-13 16:37:33\";i:17;s:19:\"2026-07-15 03:30:05\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:37:\"Trying to access array offset on null\";s:4:\"file\";s:107:\"/home/mrarqpph/public_html/optimalmentalwellness/wp-content/plugins/elementor/includes/base/widget-base.php\";s:4:\"line\";i:797;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:107:\"/home/mrarqpph/public_html/optimalmentalwellness/wp-content/plugins/elementor/includes/base/widget-base.php\";s:7:\"\0*\0line\";i:797;}s:32:\"034b2f72fe9a4739953496855c39007e\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2026-06-17 14:06:42\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:68:\"Cannot read properties of undefined (reading &#039;validators&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:2;s:14:\"\0*\0times_dates\";a:2:{i:0;s:19:\"2026-06-17 14:06:42\";i:1;s:19:\"2026-06-17 14:06:45\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1781705202\";s:7:\"message\";s:58:\"Cannot read properties of undefined (reading \'validators\')\";s:3:\"url\";s:102:\"https://mrarif.me/optimalmentalwellness/wp-content/plugins/elementor/assets/js/editor.min.js?ver=4.1.3\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:6:\"452534\";}s:7:\"\0*\0file\";s:102:\"https://mrarif.me/optimalmentalwellness/wp-content/plugins/elementor/assets/js/editor.min.js?ver=4.1.3\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:6:\"452534\";}}', 'off'),
(493, 'elementor_controls_usage', 'a:6:{s:9:\"container\";a:6:{s:25:\"theme-post-featured-image\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}}}s:16:\"theme-post-title\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"post-info\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:18:\"theme-post-content\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:15:\"post-navigation\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:2:{s:14:\"flex_direction\";i:1;s:11:\"boxed_width\";i:1;}}s:5:\"style\";a:1:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:15:\"section_effects\";a:0:{}}}}}s:7:\"wp-page\";a:17:{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: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: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:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:19;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:19;s:11:\"header_size\";i:10;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:2:{s:5:\"align\";i:9;s:21:\"typography_typography\";i:1;}}s:8:\"advanced\";a:4:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:19;}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:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";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:6:\"button\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:3;s:4:\"link\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:5:\"align\";i:2;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:67;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:9:{s:13:\"content_width\";i:50;s:8:\"flex_gap\";i:2;s:10:\"min_height\";i:3;s:20:\"flex_justify_content\";i:11;s:5:\"width\";i:17;s:14:\"flex_direction\";i:13;s:16:\"flex_align_items\";i:2;s:11:\"boxed_width\";i:1;s:9:\"flex_wrap\";i:1;}}s:5:\"style\";a:5:{s:45:\"section_powerpack_elements_background_effects\";a:6:{s:34:\"pp_animated_gradient_bg_color_list\";i:67;s:28:\"pp_background_effects_enable\";i:1;s:12:\"part_opacity\";i:1;s:13:\"part_quantity\";i:1;s:9:\"part_size\";i:1;s:10:\"part_speed\";i:1;}s:18:\"section_background\";a:10:{s:21:\"background_background\";i:15;s:16:\"background_image\";i:3;s:19:\"background_position\";i:3;s:17:\"background_repeat\";i:3;s:15:\"background_size\";i:3;s:16:\"background_color\";i:2;s:28:\"background_slideshow_gallery\";i:1;s:36:\"background_slideshow_background_size\";i:1;s:40:\"background_slideshow_background_position\";i:1;s:30:\"background_slideshow_ken_burns\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:2;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:6:{s:13:\"border_radius\";i:10;s:13:\"border_border\";i:5;s:12:\"border_width\";i:5;s:12:\"border_color\";i:5;s:21:\"box_shadow_box_shadow\";i:2;s:26:\"box_shadow_box_shadow_type\";i:1;}s:21:\"section_shape_divider\";a:2:{s:23:\"shape_divider_top_width\";i:1;s:24:\"shape_divider_top_height\";i:1;}}s:8:\"advanced\";a:4:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:67;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:34;s:18:\"animation_duration\";i:7;}s:14:\"section_layout\";a:3:{s:7:\"padding\";i:32;s:6:\"margin\";i:2;s:11:\"css_classes\";i:12;}s:19:\"_section_responsive\";a:2:{s:17:\"hide_mobile_extra\";i:2;s:11:\"hide_mobile\";i:2;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:9;s:10:\"image_size\";i:9;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:8:{s:19:\"image_border_border\";i:2;s:18:\"image_border_width\";i:4;s:18:\"image_border_color\";i:4;s:19:\"image_border_radius\";i:9;s:5:\"align\";i:2;s:5:\"width\";i:2;s:32:\"image_box_shadow_box_shadow_type\";i:1;s:27:\"image_box_shadow_box_shadow\";i:1;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:9;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;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:15:\"pp-dual-heading\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:20:\"section_dual_heading\";a:2:{s:10:\"first_text\";i:4;s:11:\"second_text\";i:4;}}s:5:\"style\";a:2:{s:19:\"first_section_style\";a:3:{s:16:\"first_text_color\";i:2;s:27:\"first_typography_typography\";i:2;s:26:\"first_typography_font_size\";i:2;}s:20:\"second_section_style\";a:3:{s:17:\"second_text_color\";i:2;s:28:\"second_typography_typography\";i:2;s:27:\"second_typography_font_size\";i:2;}}s:8:\"advanced\";a:5:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:4;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:2;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:2;}s:19:\"_section_responsive\";a:2:{s:17:\"hide_mobile_extra\";i:2;s:11:\"hide_mobile\";i:2;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:3;}}s:5:\"style\";a:3:{s:18:\"section_icon_style\";a:4:{s:10:\"icon_color\";i:2;s:9:\"icon_size\";i:1;s:11:\"text_indent\";i:1;s:24:\"icon_self_vertical_align\";i:1;}s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_text_style\";a:2:{s:26:\"icon_typography_typography\";i:1;s:25:\"icon_typography_font_size\";i:1;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:3;s:16:\"_flex_align_self\";i:3;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:3;s:13:\"_border_width\";i:3;s:13:\"_border_color\";i:3;s:14:\"_border_radius\";i:3;}s:19:\"_section_responsive\";a:6:{s:15:\"hide_widescreen\";i:2;s:12:\"hide_desktop\";i:2;s:17:\"hide_tablet_extra\";i:2;s:11:\"hide_tablet\";i:2;s:17:\"hide_mobile_extra\";i:2;s:11:\"hide_mobile\";i:2;}}}}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:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";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:21:\"typography_font_style\";i:1;}}}}s:20:\"pp-info-box-carousel\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:18:\"section_info_boxes\";a:6:{s:13:\"pp_info_boxes\";i:3;s:6:\"layout\";i:3;s:14:\"title_html_tag\";i:3;s:18:\"equal_height_boxes\";i:3;s:20:\"columns_mobile_extra\";i:3;s:7:\"columns\";i:1;}}s:5:\"style\";a:6:{s:20:\"section_layout_style\";a:2:{s:5:\"align\";i:2;s:11:\"columns_gap\";i:1;}s:22:\"section_info_box_style\";a:7:{s:30:\"info_box_background_background\";i:2;s:22:\"info_box_border_radius\";i:3;s:16:\"info_box_padding\";i:3;s:25:\"info_box_background_color\";i:1;s:22:\"info_box_border_border\";i:2;s:21:\"info_box_border_width\";i:2;s:21:\"info_box_border_color\";i:2;}s:27:\"section_info_box_icon_style\";a:5:{s:18:\"icon_border_radius\";i:2;s:11:\"icon_margin\";i:2;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:14:\"icon_img_width\";i:1;}s:28:\"section_info_box_title_style\";a:1:{s:12:\"title_margin\";i:2;}s:30:\"section_info_description_style\";a:1:{s:18:\"description_margin\";i:2;}s:29:\"section_info_box_button_style\";a:8:{s:22:\"button_bg_color_normal\";i:2;s:27:\"button_border_normal_border\";i:1;s:26:\"button_border_normal_width\";i:1;s:20:\"button_border_radius\";i:1;s:14:\"button_padding\";i:1;s:24:\"button_text_color_normal\";i:1;s:23:\"button_text_color_hover\";i:1;s:21:\"button_bg_color_hover\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}}}}s:6:\"pp-faq\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:22:\"section_accordion_faqs\";a:1:{s:4:\"tabs\";i:1;}}s:5:\"style\";a:3:{s:23:\"section_faq_items_style\";a:3:{s:25:\"faqs_items_bottom_spacing\";i:1;s:22:\"faq_items_border_color\";i:1;s:23:\"faq_items_border_radius\";i:1;}s:23:\"section_questions_style\";a:4:{s:17:\"question_bg_color\";i:1;s:30:\"question_typography_typography\";i:1;s:16:\"question_padding\";i:1;s:34:\"question_typography_letter_spacing\";i:1;}s:21:\"section_answers_style\";a:1:{s:14:\"answer_padding\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:11:\"google_maps\";a:2:{s:5:\"count\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:7:\"address\";i:5;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:5;}}}}s:18:\"aab_booking_widget\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"section_general\";a:1:{s:17:\"show_progress_bar\";i:1;}s:13:\"section_theme\";a:1:{s:12:\"theme_preset\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_style_colors\";a:2:{s:13:\"primary_color\";i:1;s:15:\"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: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:2:{s:17:\"section_style_box\";a:3:{s:8:\"position\";i:1;s:15:\"position_mobile\";i:1;s:26:\"content_vertical_alignment\";i:1;}s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:17:\"pp-business-hours\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:18:\"section_price_menu\";a:3:{s:16:\"business_timings\";i:1;s:14:\"business_hours\";i:1;s:21:\"business_hours_custom\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_rows_style\";a:3:{s:7:\"stripes\";i:1;s:12:\"rows_padding\";i:1;s:11:\"rows_margin\";i:1;}s:28:\"section_business_hours_style\";a:2:{s:27:\"title_typography_typography\";i:1;s:27:\"hours_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:4:\"form\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:4:{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:8:\"email_to\";i:1;s:13:\"email_subject\";i:1;s:10:\"email_from\";i:1;s:15:\"email_from_name\";i:1;s:13:\"form_metadata\";i:1;}s:15:\"section_email_2\";a:2:{s:15:\"email_subject_2\";i:1;s:17:\"email_from_name_2\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_form_style\";a:6:{s:10:\"column_gap\";i:1;s:13:\"label_spacing\";i:1;s:27:\"label_typography_typography\";i:1;s:26:\"label_typography_font_size\";i:1;s:7:\"row_gap\";i:1;s:12:\"html_spacing\";i:1;}s:19:\"section_field_style\";a: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:11:\"pp-info-box\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:12:\"section_icon\";a:3:{s:13:\"selected_icon\";i:3;s:9:\"icon_size\";i:3;s:13:\"icon_position\";i:3;}s:15:\"section_content\";a:5:{s:7:\"heading\";i:3;s:11:\"sub_heading\";i:3;s:11:\"description\";i:3;s:20:\"divider_title_switch\";i:3;s:14:\"title_html_tag\";i:3;}}s:5:\"style\";a:3:{s:22:\"section_info_box_style\";a:5:{s:16:\"info_box_padding\";i:3;s:22:\"info_box_bg_background\";i:3;s:22:\"info_box_border_radius\";i:3;s:31:\"info_box_shadow_box_shadow_type\";i:3;s:26:\"info_box_shadow_box_shadow\";i:3;}s:27:\"section_info_box_icon_style\";a:2:{s:18:\"icon_border_radius\";i:3;s:12:\"icon_padding\";i:3;}s:30:\"section_info_box_content_style\";a:8:{s:5:\"align\";i:3;s:12:\"title_margin\";i:3;s:25:\"divider_title_border_type\";i:3;s:19:\"divider_title_width\";i:3;s:27:\"divider_title_border_height\";i:3;s:26:\"divider_title_border_color\";i:3;s:20:\"divider_title_margin\";i:3;s:18:\"description_margin\";i:3;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}}}}s:5:\"posts\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:5:{s:28:\"classic_columns_mobile_extra\";i:1;s:27:\"classic_thumbnail_size_size\";i:1;s:22:\"classic_excerpt_length\";i:1;s:17:\"classic_meta_data\";i:1;s:22:\"classic_posts_per_page\";i:1;}}s:5:\"style\";a:2:{s:26:\"classic_section_design_box\";a:3:{s:23:\"classic_content_padding\";i:1;s:34:\"classic_box_shadow_box_shadow_type\";i:1;s:29:\"classic_box_shadow_box_shadow\";i:1;}s:30:\"classic_section_design_content\";a:12:{s:19:\"classic_title_color\";i:1;s:35:\"classic_title_typography_typography\";i:1;s:34:\"classic_title_typography_font_size\";i:1;s:21:\"classic_title_spacing\";i:1;s:18:\"classic_meta_color\";i:1;s:34:\"classic_meta_typography_typography\";i:1;s:33:\"classic_meta_typography_font_size\";i:1;s:21:\"classic_excerpt_color\";i:1;s:37:\"classic_excerpt_typography_typography\";i:1;s:36:\"classic_excerpt_typography_font_size\";i:1;s:39:\"classic_read_more_typography_typography\";i:1;s:38:\"classic_read_more_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}s:6:\"footer\";a:8:{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:4:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}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:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:1;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:12;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:12;}s:18:\"section_background\";a:2:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:12;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:4;}}s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:3:{s:13:\"content_width\";i:6;s:14:\"flex_direction\";i:6;s:20:\"flex_justify_content\";i:2;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:7;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:7;s:11:\"header_size\";i: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:19:\"section_title_style\";a:1:{s:5:\"align\";i:2;}}}}s:7:\"divider\";a:2:{s:5:\"count\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:1:{s:5:\"width\";i:5;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:5;s:6:\"weight\";i:5;s:3:\"gap\";i:5;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:5;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:5;s:13:\"_border_width\";i:5;s:13:\"_border_color\";i:5;}}}}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:2:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:2;}s:18:\"section_icon_style\";a:2:{s:24:\"icon_self_vertical_align\";i:2;s:20:\"icon_vertical_offset\";i:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}s:12:\"social-icons\";a:2:{s:5:\"count\";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:2;s:5:\"align\";i:2;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:6:{s:10:\"icon_color\";i:2;s:20:\"icon_secondary_color\";i:2;s:18:\"image_border_width\";i:2;s:9:\"icon_size\";i:2;s:12:\"icon_padding\";i:2;s:12:\"icon_spacing\";i:2;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:2;s:21:\"hover_secondary_color\";i:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}s:17:\"pp-business-hours\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:18:\"section_price_menu\";a:2:{s:14:\"business_hours\";i:2;s:21:\"business_hours_custom\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_rows_style\";a:1:{s:12:\"rows_padding\";i:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}}s:7:\"archive\";a:3:{s:7:\"heading\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:2:{s:13:\"content_width\";i:2;s:14:\"flex_direction\";i:1;}}s:5:\"style\";a:2:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:3;}s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:2;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"posts\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:14:\"section_layout\";a:5:{s:28:\"classic_columns_mobile_extra\";i:1;s:27:\"classic_thumbnail_size_size\";i:1;s:22:\"classic_excerpt_length\";i:1;s:17:\"classic_meta_data\";i:1;s:22:\"classic_posts_per_page\";i:1;}s:18:\"section_pagination\";a:2:{s:21:\"pagination_page_limit\";i:1;s:15:\"pagination_type\";i:1;}}s:5:\"style\";a:2:{s:26:\"classic_section_design_box\";a:3:{s:23:\"classic_content_padding\";i:1;s:34:\"classic_box_shadow_box_shadow_type\";i:1;s:29:\"classic_box_shadow_box_shadow\";i:1;}s:30:\"classic_section_design_content\";a:12:{s:19:\"classic_title_color\";i:1;s:35:\"classic_title_typography_typography\";i:1;s:34:\"classic_title_typography_font_size\";i:1;s:21:\"classic_title_spacing\";i:1;s:18:\"classic_meta_color\";i:1;s:34:\"classic_meta_typography_typography\";i:1;s:33:\"classic_meta_typography_font_size\";i:1;s:21:\"classic_excerpt_color\";i:1;s:37:\"classic_excerpt_typography_typography\";i:1;s:36:\"classic_excerpt_typography_font_size\";i:1;s:39:\"classic_read_more_typography_typography\";i:1;s:38:\"classic_read_more_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}s:11:\"single-post\";a:6:{s:25:\"theme-post-featured-image\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}}}s:16:\"theme-post-title\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a: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:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:2:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;}}}}s:9:\"post-info\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:18:\"theme-post-content\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:15:\"post-navigation\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:2:{s:14:\"flex_direction\";i:1;s:11:\"boxed_width\";i:1;}}s:5:\"style\";a:1:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}s:6:\"header\";a:7:{s:9:\"icon-list\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:3:{s:4:\"view\";i:2;s:9:\"icon_list\";i:2;s:10:\"link_click\";i:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}s:5:\"style\";a:1:{s:17:\"section_icon_list\";a:2:{s:23:\"icon_align_mobile_extra\";i:2;s:10:\"icon_align\";i:1;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:7;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a: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:4:{s:35:\"section_powerpack_elements_advanced\";a:2:{s:21:\"pp_display_conditions\";i:7;s:28:\"pp_display_conditions_enable\";i:1;}s:14:\"section_layout\";a:4:{s:7:\"padding\";i:2;s:7:\"z_index\";i:1;s:11:\"css_classes\";i:1;s:20:\"e_display_conditions\";i:1;}s:19:\"_section_responsive\";a:2:{s:17:\"hide_mobile_extra\";i:1;s:11:\"hide_mobile\";i:1;}s:15:\"section_effects\";a:2:{s:6:\"sticky\";i:1;s:21:\"sticky_effects_offset\";i:1;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:5:\"align\";i:1;s:5:\"space\";i:1;s:5:\"width\";i:1;}}s:8:\"advanced\";a:4:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:1;s:9:\"_position\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:1;}}}}s: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:8:{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: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:12:{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: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: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: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:16:\"theme-page-title\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a: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:2:{s:28:\"pp_display_conditions_enable\";i:1;s:21:\"pp_display_conditions\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}}}', 'off'),
(446, 'litespeed.gui._summary', '{\"new_version\":1782200313,\"score\":1782805113}', 'auto'),
(477, 'e_editor_counter', '55', 'auto');
INSERT INTO `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(478, '_elementor_notifications_data', 'a:2:{s:7:\"timeout\";i:1784002587;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'),
(564, 'elementor_font_awesome_pro_kit_id', '', 'auto'),
(537, 'elementor_pro_stripe_test_secret_key', '', 'auto'),
(538, 'elementor_validate_stripe_api_test_secret_key_button', '', 'auto'),
(539, 'elementor_pro_stripe_live_secret_key', '', 'auto'),
(540, 'elementor_validate_stripe_api_live_secret_key_button', '', 'auto'),
(541, 'elementor_stripe_legal_disclaimer', '', 'auto'),
(542, 'elementor_editor_break_lines', '', 'auto'),
(543, 'elementor_unfiltered_files_upload', '1', 'auto'),
(544, 'elementor_google_font', '1', 'auto'),
(545, 'elementor_form-submissions', '', 'auto'),
(546, 'elementor_load_fa4_shim', '', 'auto'),
(547, 'elementor_meta_generator_tag', '', 'auto'),
(548, 'elementor_css_print_method', 'external', 'auto'),
(549, 'elementor_optimized_image_loading', '1', 'auto'),
(550, 'elementor_optimized_gutenberg_loading', '1', 'auto'),
(551, 'elementor_lazy_load_background_images', '1', 'auto'),
(552, 'elementor_local_google_fonts', '0', 'auto'),
(553, 'elementor_element_cache_ttl', '24', 'auto'),
(554, 'elementor_experiment-markdown_rendering', 'default', 'auto'),
(555, 'elementor_experiment-container', 'default', 'auto'),
(556, 'elementor_experiment-mega-menu', 'default', 'auto'),
(557, 'elementor_experiment-e_font_icon_svg', 'default', 'auto'),
(558, 'elementor_experiment-additional_custom_breakpoints', 'default', 'auto'),
(559, 'elementor_experiment-e_optimized_markup', 'default', 'auto'),
(560, 'elementor_experiment-theme_builder_v2', 'default', 'auto'),
(561, 'elementor_experiment-nested-elements', 'default', 'auto'),
(528, 'elementor_validate_api_data', '', 'auto'),
(529, 'elementor_pro_activecampaign_api_key', '', 'auto'),
(530, 'elementor_pro_activecampaign_api_url', '', 'auto'),
(526, 'elementor_pro_facebook_app_id', '', 'auto'),
(527, 'elementor_pro_mailchimp_api_key', '', 'auto'),
(533, 'elementor_pro_getresponse_api_key', '', 'auto'),
(534, 'elementor_pro_mailerlite_api_key', '', 'auto'),
(531, 'elementor_pro_convertkit_api_key', '', 'auto'),
(535, 'elementor_typekit-kit-id', '', 'auto'),
(532, 'elementor_pro_drip_api_token', '', 'auto'),
(491, '_transient_timeout__elementor_ab_test_plg_site_mailer_submission', '1789373476', 'off'),
(492, '_transient__elementor_ab_test_plg_site_mailer_submission', '2', 'off'),
(519, 'elementor_disable_typography_schemes', 'yes', 'auto'),
(520, 'elementor_google_maps_api_key', '', 'auto'),
(521, 'elementor_pro_recaptcha_site_key', '', 'auto'),
(522, 'elementor_pro_recaptcha_secret_key', '', 'auto'),
(523, 'elementor_pro_recaptcha_v3_site_key', '', 'auto'),
(524, 'elementor_pro_recaptcha_v3_secret_key', '', 'auto'),
(525, 'elementor_pro_recaptcha_v3_threshold', '0.5', 'auto'),
(499, '_elementor_element_cache_unique_id', '1103d769b8569c2f8bdcdce2a5e36940', 'auto'),
(516, '_elementor_settings_update_time', '1781601480', 'auto'),
(517, 'elementor_cpt_support', 'a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}', 'auto'),
(518, 'elementor_disable_color_schemes', 'yes', 'auto'),
(576, 'elementor_pro_theme_builder_conditions', 'a:4:{s:6:\"single\";a:1:{i:701;a:1:{i:0;s:21:\"include/singular/post\";}}s:7:\"archive\";a:1:{i:695;a:1:{i:0;s:28:\"include/archive/post_archive\";}}s:6:\"footer\";a:1:{i:414;a:1:{i:0;s:15:\"include/general\";}}s:6:\"header\";a:1:{i:48;a:1:{i:0;s:15:\"include/general\";}}}', 'auto'),
(594, 'elementor_library_category_children', 'a:0:{}', 'auto'),
(607, 'site_logo', '52', 'auto');
INSERT INTO `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(590, '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 `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(573, '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:\"#41322d\";i:1;s:7:\"#edd32b\";i:2;s:7:\"#303030\";i:3;s:7:\"#373737\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#fcf1f5\";i:6;s:7:\"#ce2162\";i:7;s:7:\"#D1D5DB\";i:8;s:7:\"#111111\";}s:9:\"palette_2\";a:9:{i:0;s:7:\"#0067FF\";i:1;s:7:\"#005EE9\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#364151\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#E7F6FF\";i:6;s:7:\"#070614\";i:7;s:7:\"#D1DAE5\";i:8;s:7:\"#222222\";}s:9:\"palette_3\";a:9:{i:0;s:7:\"#6528F7\";i:1;s:7:\"#5511F8\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#F2F0FE\";i:6;s:7:\"#0D0614\";i:7;s:7:\"#D8D8F5\";i:8;s:7:\"#222222\";}s:9:\"palette_4\";a:9:{i:0;s:7:\"#0085FF\";i:1;s:7:\"#0177E3\";i:2;s:7:\"#FFFFFF\";i:3;s:7:\"#E7F6FF\";i:4;s:7:\"#212A37\";i:5;s:7:\"#0F172A\";i:6;s:7:\"#4F5B62\";i:7;s:7:\"#070614\";i:8;s:7:\"#222222\";}}s:7:\"presets\";a:11:{s:3:\"Oak\";a:9:{i:0;s:7:\"#0067FF\";i:1;s:7:\"#005EE9\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#364151\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#E7F6FF\";i:6;s:7:\"#070614\";i:7;s:7:\"#D1DAE5\";i:8;s:7:\"#222222\";}s:5:\"Viola\";a:9:{i:0;s:7:\"#6528F7\";i:1;s:7:\"#5511F8\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#F2F0FE\";i:6;s:7:\"#0D0614\";i:7;s:7:\"#D8D8F5\";i:8;s:7:\"#222222\";}s:5:\"Cedar\";a:9:{i:0;s:7:\"#DD183B\";i:1;s:7:\"#CC1939\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#3A3A3A\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FFEDE6\";i:6;s:7:\"#140609\";i:7;s:7:\"#FFD1BF\";i:8;s:7:\"#222222\";}s:6:\"Willow\";a:9:{i:0;s:7:\"#54B435\";i:1;s:7:\"#379237\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#2F3B40\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#EDFBE2\";i:6;s:7:\"#0C1406\";i:7;s:7:\"#D5EAD8\";i:8;s:7:\"#222222\";}s:4:\"Lily\";a:9:{i:0;s:7:\"#DCA54A\";i:1;s:7:\"#D09A40\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#4A4A4A\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FAF5E5\";i:6;s:7:\"#141004\";i:7;s:7:\"#F0E6C5\";i:8;s:7:\"#222222\";}s:4:\"Rose\";a:9:{i:0;s:7:\"#FB5FAB\";i:1;s:7:\"#EA559D\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FCEEF5\";i:6;s:7:\"#140610\";i:7;s:7:\"#FAD8E9\";i:8;s:7:\"#222222\";}s:4:\"Sage\";a:9:{i:0;s:7:\"#1B9C85\";i:1;s:7:\"#178E79\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#EDF6EE\";i:6;s:7:\"#06140C\";i:7;s:7:\"#D4F3D7\";i:8;s:7:\"#222222\";}s:5:\"Flare\";a:9:{i:0;s:7:\"#FD9800\";i:1;s:7:\"#E98C00\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FEF9E1\";i:6;s:7:\"#141006\";i:7;s:7:\"#F9F0C8\";i:8;s:7:\"#222222\";}s:5:\"Maple\";a:9:{i:0;s:7:\"#FF6210\";i:1;s:7:\"#F15808\";i:2;s:7:\"#1C0D0A\";i:3;s:7:\"#353535\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FEF1E4\";i:6;s:7:\"#140B06\";i:7;s:7:\"#E5D7D1\";i:8;s:7:\"#222222\";}s:5:\"Birch\";a:9:{i:0;s:7:\"#737880\";i:1;s:7:\"#65696F\";i:2;s:7:\"#151616\";i:3;s:7:\"#393C40\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#F6F6F6\";i:6;s:7:\"#232529\";i:7;s:7:\"#F1F0F0\";i:8;s:7:\"#222222\";}s:4:\"Dark\";a:9:{i:0;s:7:\"#0085FF\";i:1;s:7:\"#0177E3\";i:2;s:7:\"#FFFFFF\";i:3;s:7:\"#E7F6FF\";i:4;s:7:\"#212A37\";i:5;s:7:\"#0F172A\";i:6;s:7:\"#4F5B62\";i:7;s:7:\"#070614\";i:8;s:7:\"#222222\";}}s:11:\"presetNames\";a:4:{s:9:\"palette_1\";N;s:9:\"palette_2\";s:3:\"Oak\";s:9:\"palette_3\";s:5:\"Viola\";s:9:\"palette_4\";s:4:\"Dark\";}s:4:\"flag\";b:1;}', 'on'),
(574, '_astra_customizer_published_timestamps', 'a:12:{i:0;i:1781601943;i:1;i:1781602024;i:2;i:1781602241;i:3;i:1781602244;i:4;i:1781602845;i:5;i:1781602854;i:6;i:1781602875;i:7;i:1781603513;i:8;i:1781614617;i:9;i:1781689989;i:10;i:1781705434;i:11;i:1781705441;}', 'off'),
(575, '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.4\";s:10:\"properties\";a:0:{}s:4:\"date\";s:19:\"2026-06-16 09:25:43\";}}', 'auto');
INSERT INTO `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(591, '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 `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(602, '_elementor_onboarding_strings_en', 'a:2:{s:7:\"timeout\";i:1781708921;s:5:\"value\";s:4780:\"{\"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.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.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.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_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'),
(603, 'elementor_angie_guide_auto_shown', 'yes', 'auto'),
(2433, '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.2\";s:9:\"timestamp\";i:1784503919;}', 'off'),
(2722, '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'),
(2723, 'bmi_initial_installation_version', '2.1.6', 'auto'),
(2725, 'analyst_cache', 's:6:\"a:0:{}\";', 'auto'),
(2737, '_transient_bmi_latest_size_plugins', '151994702', 'on'),
(2726, '_irb_h_bn_review', 'a:2:{s:5:\"users\";a:0:{}s:13:\"backup-backup\";i:1784644849;}', 'auto'),
(2727, '_new_bb_banner', 'a:3:{s:9:\"dismissed\";b:0;s:12:\"dismissed_at\";i:0;s:11:\"using_since\";i:1784644849;}', 'auto'),
(2728, 'bmi_gdrive_banner_dismissed', '1', 'auto'),
(2729, '_bmi_backup_banner', 'a:3:{s:9:\"dismissed\";b:0;s:12:\"dismissed_at\";N;s:15:\"first_loaded_at\";i:1784644849;}', 'auto'),
(2734, 'bmi_cron_last_ping_time', '1784644863', 'auto'),
(2735, 'BMI::STORAGE::LOCAL::PATH', '/home/mrarqpph/public_html/optimalmentalwellness/wp-content/backup-migration-w5xhdFafAW', 'auto'),
(2732, '_transient_bmi_cron_share_attempted', '1', 'off'),
(2733, 'bmi_cron_new_domain_done', '1', 'auto'),
(2730, 'bmi_sk_keepalive', 'lJrN802uwoe7GPZ7K0Ezw9nLYrK51QFv', 'auto'),
(2731, '_transient_timeout_bmi_cron_share_attempted', '1784648461', 'off'),
(2697, '_site_transient_timeout_community-events-de3bfefd66685f0a991fef0c5a558dea', '1784687969', 'off'),
(1301, 'astra_usage_optin', 'no', 'off'),
(1302, 'bsf_usage_last_displayed_time', '1781693893', 'off'),
(1450, 'fs_active_plugins', 'O:8:\"stdClass\":3:{s:7:\"plugins\";a:1:{s:18:\"post-smtp/freemius\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"2.12.1\";s:4:\"type\";s:6:\"plugin\";s:9:\"timestamp\";i:1781697973;s:11:\"plugin_path\";s:26:\"post-smtp/postman-smtp.php\";}}s:7:\"abspath\";s:49:\"/home/mrarqpph/public_html/optimalmentalwellness/\";s:6:\"newest\";O:8:\"stdClass\":5:{s:11:\"plugin_path\";s:26:\"post-smtp/postman-smtp.php\";s:8:\"sdk_path\";s:18:\"post-smtp/freemius\";s:7:\"version\";s:6:\"2.12.1\";s:13:\"in_activation\";b:0;s:9:\"timestamp\";i:1781697973;}}', 'auto'),
(1451, 'fs_debug_mode', '', 'auto'),
(1452, 'fs_accounts', 'a:7:{s:21:\"id_slug_type_path_map\";a:1:{i:10461;a:3:{s:4:\"slug\";s:9:\"post-smtp\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:26:\"post-smtp/postman-smtp.php\";}}s:11:\"plugin_data\";a:1:{s:9:\"post-smtp\";a:17:{s:19:\"last_load_timestamp\";i:1784635243;s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:26:\"post-smtp/postman-smtp.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1781697973;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:1;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:6:\"2.12.1\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";N;s:14:\"plugin_version\";s:5:\"3.9.4\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";N;s:4:\"host\";s:9:\"mrarif.me\";s:9:\"server_ip\";s:12:\"162.0.232.74\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1781697973;s:7:\"version\";s:5:\"3.9.4\";}s:15:\"prev_is_premium\";b:0;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1781698113;s:7:\"version\";s:5:\"3.9.4\";}}}s:13:\"file_slug_map\";a:1:{s:26:\"post-smtp/postman-smtp.php\";s:9:\"post-smtp\";}s:7:\"plugins\";a:1:{s:9:\"post-smtp\";O:9:\"FS_Plugin\":24:{s:2:\"id\";s:5:\"10461\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:0;s:10:\"public_key\";s:32:\"pk_28fcefa3d0ae86f8cdf6b7f71c0cc\";s:10:\"secret_key\";N;s:16:\"parent_plugin_id\";N;s:5:\"title\";s:9:\"Post SMTP\";s:4:\"slug\";s:9:\"post-smtp\";s:12:\"premium_slug\";s:17:\"post-smtp-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:26:\"post-smtp/postman-smtp.php\";s:7:\"version\";s:5:\"3.9.4\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";s:5:\"10910\";s:17:\"bundle_public_key\";s:32:\"pk_c5110ef04ba30cd57dd970a269a1a\";s:17:\"opt_in_moderation\";N;}}s:12:\"gc_timestamp\";a:0:{}s:10:\"theme_data\";a:0:{}s:9:\"unique_id\";s:32:\"eac3e5814d831506751a316fe843d925\";}', 'auto'),
(1453, 'postman_db_version', '1.0.1', 'auto'),
(1454, 'postman_options', 'a:38:{s:8:\"enc_type\";s:3:\"tls\";s:8:\"hostname\";s:14:\"mail.mrarif.me\";s:4:\"port\";i:587;s:12:\"sender_email\";s:17:\"noreply@mrarif.me\";s:15:\"envelope_sender\";s:17:\"noreply@mrarif.me\";s:14:\"transport_type\";s:4:\"smtp\";s:9:\"auth_type\";s:5:\"login\";s:11:\"sender_name\";s:34:\"Optimal Mental Health And Wellness\";s:15:\"oauth_client_id\";s:0:\"\";s:19:\"oauth_client_secret\";s:0:\"\";s:19:\"basic_auth_username\";s:17:\"noreply@mrarif.me\";s:15:\"sendgrid_region\";s:6:\"Global\";s:19:\"basic_auth_password\";s:16:\"M0trNz9XTWhLaH4=\";s:16:\"mandrill_api_key\";s:0:\"\";s:16:\"sendgrid_api_key\";s:0:\"\";s:14:\"resend_api_key\";s:0:\"\";s:15:\"emailit_api_key\";s:0:\"\";s:16:\"maileroo_api_key\";s:0:\"\";s:16:\"mailtrap_api_key\";s:0:\"\";s:14:\"sweego_api_key\";s:0:\"\";s:18:\"mailersend_api_key\";s:0:\"\";s:18:\"sendinblue_api_key\";s:0:\"\";s:15:\"mailjet_api_key\";s:0:\"\";s:18:\"mailjet_secret_key\";s:0:\"\";s:17:\"sendpulse_api_key\";s:0:\"\";s:20:\"sendpulse_secret_key\";s:0:\"\";s:16:\"postmark_api_key\";s:0:\"\";s:17:\"sparkpost_api_key\";s:0:\"\";s:15:\"mailgun_api_key\";s:0:\"\";s:20:\"elasticemail_api_key\";s:0:\"\";s:15:\"smtp2go_api_key\";s:0:\"\";s:19:\"mailgun_domain_name\";s:0:\"\";s:28:\"prevent_sender_name_override\";s:0:\"\";s:29:\"prevent_sender_email_override\";s:0:\"\";s:21:\"fallback_smtp_enabled\";s:2:\"no\";s:13:\"pushover_user\";s:0:\"\";s:14:\"pushover_token\";s:0:\"\";s:11:\"slack_token\";s:0:\"\";}', 'auto'),
(1455, 'postman_state', 'a:4:{s:12:\"install_date\";i:1781697973;s:7:\"version\";s:5:\"3.9.4\";s:15:\"locking_enabled\";b:1;s:22:\"delivery_success_total\";i:4;}', 'auto'),
(1456, 'fs_api_cache', 'a:0:{}', 'off'),
(2766, '_site_transient_update_themes', 'O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1784700428;s:7:\"checked\";a:3:{s:11:\"astra-child\";s:5:\"1.0.0\";s:5:\"astra\";s:6:\"4.13.4\";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'),
(2764, '_site_transient_timeout_theme_roots', '1784702228', 'off'),
(2765, '_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'),
(2757, '_transient_timeout_astra-theme-cron-test-ok', '1784704025', 'off'),
(2758, '_transient_astra-theme-cron-test-ok', '1', 'off'),
(2760, '_transient_timeout_elementor_migrations_manifest', '1784743626', 'off'),
(2761, '_transient_elementor_migrations_manifest', 'a:2:{s:7:\"version\";s:11:\"4.1.3:4.1.1\";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'),
(1052, '_transient_health-check-site-status-result', '{\"good\":23,\"recommended\":3,\"critical\":1}', 'on'),
(1088, 'wp_calendar_block_has_published_posts', '1', 'auto'),
(2767, '_site_transient_update_plugins', 'O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1784700428;s:8:\"response\";a:4:{s:23:\"elementor/elementor.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"4.2.0\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.4.2.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.gif?rev=3444228\";s:2:\"1x\";s:62:\"https://ps.w.org/elementor/assets/icon-128x128.gif?rev=3444228\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=3443226\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=3443226\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.8\";s:6:\"tested\";s:5:\"7.0.2\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:35:\"litespeed-cache/litespeed-cache.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:29:\"w.org/plugins/litespeed-cache\";s:4:\"slug\";s:15:\"litespeed-cache\";s:6:\"plugin\";s:35:\"litespeed-cache/litespeed-cache.php\";s:11:\"new_version\";s:5:\"7.8.1\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/litespeed-cache/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/litespeed-cache.7.8.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/litespeed-cache/assets/icon-256x256.png?rev=2554181\";s:2:\"1x\";s:68:\"https://ps.w.org/litespeed-cache/assets/icon-128x128.png?rev=2554181\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/litespeed-cache/assets/banner-1544x500.png?rev=2554181\";s:2:\"1x\";s:70:\"https://ps.w.org/litespeed-cache/assets/banner-772x250.png?rev=2554181\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.3\";s:6:\"tested\";s:5:\"6.9.5\";s:12:\"requires_php\";s:3:\"7.2\";s:16:\"requires_plugins\";a:0:{}}s:26:\"post-smtp/postman-smtp.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:23:\"w.org/plugins/post-smtp\";s:4:\"slug\";s:9:\"post-smtp\";s:6:\"plugin\";s:26:\"post-smtp/postman-smtp.php\";s:11:\"new_version\";s:5:\"3.9.5\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/post-smtp/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/post-smtp.3.9.5.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:62:\"https://ps.w.org/post-smtp/assets/icon-128x128.gif?rev=3209655\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/post-smtp/assets/banner-1544x500.png?rev=3443196\";s:2:\"1x\";s:64:\"https://ps.w.org/post-smtp/assets/banner-772x250.png?rev=3443196\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"5.6.0\";s:6:\"tested\";s:5:\"7.0.2\";s:12:\"requires_php\";s:3:\"7.0\";s:16:\"requires_plugins\";a:0:{}}s:31:\"elementor-pro/elementor-pro.php\";O:8:\"stdClass\":16:{s:14:\"stable_version\";s:5:\"4.2.0\";s:12:\"last_updated\";s:19:\"2026-07-20 19:00:43\";s:11:\"new_version\";s:5:\"4.2.0\";s:4:\"name\";s:13:\"Elementor Pro\";s:4:\"slug\";s:13:\"elementor-pro\";s:3:\"url\";s:36:\"https://elementor.com/pro/changelog/\";s:8:\"homepage\";s:26:\"https://elementor.com/pro/\";s:8:\"requires\";s:3:\"6.8\";s:6:\"tested\";s:3:\"7.0\";s:18:\"elementor_requires\";s:4:\"3.34\";s:7:\"package\";s:395:\"https://plugin-downloads.elementor.com/v2/package_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvb3B0aW1hbG1lbnRhbHdlbGxuZXNzIiwiZG93bmxvYWRfYmV0YSI6ZmFsc2UsImZpbGVfa2V5IjoiMSIsImlhdCI6MTc4NDY0NDc4NCwiZXhwIjoxNzg0NzMxMTg0fQ.plalpFRet2SMjelz20yHPKI98qmf3N73mNmcwIMCaJk/package_download\";s:13:\"download_link\";s:395:\"https://plugin-downloads.elementor.com/v2/package_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvb3B0aW1hbG1lbnRhbHdlbGxuZXNzIiwiZG93bmxvYWRfYmV0YSI6ZmFsc2UsImZpbGVfa2V5IjoiMSIsImlhdCI6MTc4NDY0NDc4NCwiZXhwIjoxNzg0NzMxMTg0fQ.plalpFRet2SMjelz20yHPKI98qmf3N73mNmcwIMCaJk/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:12:\"translations\";a:0:{}s:9:\"no_update\";a:1:{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:7:\"checked\";a:7:{s:61:\"advanced-appointment-booking/advanced-appointment-booking.php\";s:5:\"2.0.0\";s:31:\"backup-backup/backup-backup.php\";s:5:\"2.1.6\";s:23:\"elementor/elementor.php\";s:5:\"4.1.3\";s:31:\"elementor-pro/elementor-pro.php\";s:5:\"4.2.0\";s:35:\"litespeed-cache/litespeed-cache.php\";s:7:\"7.8.0.1\";s:26:\"post-smtp/postman-smtp.php\";s:5:\"3.9.4\";s:41:\"powerpack-elements/powerpack-elements.php\";s:6:\"2.10.3\";}}', 'off'),
(2636, '_transient_timeout_elementor_rollback_versions_4.1.3', '1785186817', 'off'),
(2637, '_transient_elementor_rollback_versions_4.1.3', '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.9\";i:4;s:5:\"4.0.8\";i:5;s:5:\"4.0.7\";i:6;s:5:\"4.0.6\";i:7;s:5:\"4.0.5\";i:8;s:5:\"4.0.4\";i:9;s:5:\"4.0.3\";i:10;s:5:\"4.0.2\";i:11;s:5:\"4.0.1\";i:12;s:5:\"4.0.0\";i:13;s:6:\"3.35.9\";i:14;s:6:\"3.35.8\";i:15;s:6:\"3.35.7\";i:16;s:6:\"3.35.6\";i:17;s:6:\"3.35.5\";i:18;s:6:\"3.35.4\";i:19;s:6:\"3.35.3\";i:20;s:6:\"3.35.2\";i:21;s:6:\"3.35.1\";i:22;s:6:\"3.35.0\";i:23;s:6:\"3.34.4\";i:24;s:6:\"3.34.3\";i:25;s:6:\"3.34.2\";i:26;s:6:\"3.34.1\";i:27;s:6:\"3.34.0\";i:28;s:6:\"3.33.6\";i:29;s:6:\"3.33.5\";}', 'off'),
(2738, '_transient_bmi_latest_size_uploads', '7869055', 'on'),
(2739, '_transient_bmi_latest_size_themes', '31380423', 'on'),
(2740, '_transient_bmi_latest_size_contents_others', '123', 'on'),
(2741, '_transient_bmi_latest_size_wordpress', '70834789', 'on'),
(2742, '_transient_bmi_latest_size_database', '20043207', 'on'),
(2743, 'bmi_required_space', '267742024', 'auto'),
(2744, 'elementor-custom-breakpoints-files', 'a:31:{s:23:\"custom-apple-webkit.min\";a:1:{s:4:\"time\";i:1784645556;}s:19:\"custom-lightbox.min\";a:1:{s:4:\"time\";i:1784645556;}s:19:\"custom-frontend.min\";a:1:{s:4:\"time\";i:1784645556;}s:27:\"custom-widget-accordion.min\";a:1:{s:4:\"time\";i:1784645556;}s:23:\"custom-widget-alert.min\";a:1:{s:4:\"time\";i:1784645556;}s:26:\"custom-widget-icon-box.min\";a:1:{s:4:\"time\";i:1784645556;}s:27:\"custom-widget-icon-list.min\";a:1:{s:4:\"time\";i:1784645556;}s:27:\"custom-widget-image-box.min\";a:1:{s:4:\"time\";i:1784645556;}s:31:\"custom-widget-image-gallery.min\";a:1:{s:4:\"time\";i:1784645556;}s:26:\"custom-widget-progress.min\";a:1:{s:4:\"time\";i:1784645556;}s:29:\"custom-widget-star-rating.min\";a:1:{s:4:\"time\";i:1784645556;}s:22:\"custom-widget-tabs.min\";a:1:{s:4:\"time\";i:1784645556;}s:24:\"custom-widget-toggle.min\";a:1:{s:4:\"time\";i:1784645556;}s:29:\"custom-widget-nested-tabs.min\";a:1:{s:4:\"time\";i:1784645556;}s:29:\"custom-widget-link-in-bio.min\";a:1:{s:4:\"time\";i:1784645556;}s:34:\"custom-widget-link-in-bio-base.min\";a:1:{s:4:\"time\";i:1784645556;}s:34:\"custom-widget-floating-buttons.min\";a:1:{s:4:\"time\";i:1784645556;}s:36:\"custom-widget-floating-bars-base.min\";a:1:{s:4:\"time\";i:1784645556;}s:37:\"custom-widget-floating-bars-var-3.min\";a:1:{s:4:\"time\";i:1784645556;}s:38:\"custom-widget-contact-buttons-base.min\";a:1:{s:4:\"time\";i:1784645556;}s:39:\"custom-widget-contact-buttons-var-7.min\";a:1:{s:4:\"time\";i:1784645556;}s:39:\"custom-widget-contact-buttons-var-9.min\";a:1:{s:4:\"time\";i:1784645556;}s:40:\"custom-widget-contact-buttons-var-10.min\";a:1:{s:4:\"time\";i:1784645556;}s:31:\"custom-pro-widget-loop-grid.min\";a:1:{s:4:\"time\";i:1784645556;}s:28:\"custom-pro-widget-slides.min\";a:1:{s:4:\"time\";i:1784645556;}s:30:\"custom-pro-widget-nav-menu.min\";a:1:{s:4:\"time\";i:1784645556;}s:30:\"custom-pro-widget-flip-box.min\";a:1:{s:4:\"time\";i:1784645556;}s:36:\"custom-pro-widget-call-to-action.min\";a:1:{s:4:\"time\";i:1784645556;}s:42:\"custom-pro-widget-testimonial-carousel.min\";a:1:{s:4:\"time\";i:1784645556;}s:36:\"custom-pro-widget-video-playlist.min\";a:1:{s:4:\"time\";i:1784645556;}s:31:\"custom-pro-widget-mega-menu.min\";a:1:{s:4:\"time\";i:1784645556;}}', 'auto'),
(2746, 'elementor_atomic_cache_validity__component-styles-related-posts', 'a:2:{s:5:\"state\";b:0;s:8:\"children\";a:3:{i:48;a:2:{s:5:\"state\";b:1;s:4:\"meta\";a:0:{}}i:414;a:2:{s:5:\"state\";b:1;s:4:\"meta\";a:0:{}}i:10;a:2:{s:5:\"state\";b:1;s:4:\"meta\";a:0:{}}}}', 'off'),
(2747, 'elementor_atomic_cache_validity__template-styles-related-posts', 'a:2:{s:5:\"state\";b:0;s:8:\"children\";a:3:{i:48;a:2:{s:5:\"state\";b:1;s:4:\"meta\";a:0:{}}i:414;a:2:{s:5:\"state\";b:1;s:4:\"meta\";a:0:{}}i:10;a:2:{s:5:\"state\";b:1;s:4:\"meta\";a:0:{}}}}', 'off'),
(2748, 'elementor_atomic_cache_validity__base', 'a:3:{s:5:\"state\";b:1;s:4:\"meta\";s:13:\"6a5f87b62feb4\";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'),
(2749, 'elementor_atomic_cache_validity__global', 'a:2:{s:5:\"state\";b:0;s:8:\"children\";a:3:{i:48;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:\"6a5f87b630271\";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:414;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:\"6a5f87b630520\";s:8:\"children\";a:6:{s:7:\"desktop\";b:1;s:10:\"widescreen\";b:1;s:12:\"tablet_extra\";b:1;s:6:\"tablet\";b:1;s:12:\"mobile_extra\";b:1;s:6:\"mobile\";b:1;}}}}i:10;a:2:{s:5:\"state\";b:0;s:8:\"children\";a:1:{s:8:\"frontend\";a:3:{s:5:\"state\";b:1;s:4:\"meta\";s:13:\"6a5f87b63080e\";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'),
(2750, 'elementor_atomic_cache_validity__local', 'a:2:{s:5:\"state\";b:0;s:8:\"children\";a:3:{i:48;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:\"6a5f87b630ae4\";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:414;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:\"6a5f87b630cb4\";s:8:\"children\";a:6:{s:7:\"desktop\";b:1;s:10:\"widescreen\";b:1;s:12:\"tablet_extra\";b:1;s:6:\"tablet\";b:1;s:12:\"mobile_extra\";b:1;s:6:\"mobile\";b:1;}}}}i:10;a:2:{s:5:\"state\";b:0;s:8:\"children\";a:1:{s:8:\"frontend\";a:3:{s:5:\"state\";b:1;s:4:\"meta\";s:13:\"6a5f87b630e7f\";s:8:\"children\";a:6:{s:7:\"desktop\";b:1;s:10:\"widescreen\";b:1;s:12:\"tablet_extra\";b:1;s:6:\"tablet\";b:1;s:12:\"mobile_extra\";b:1;s:6:\"mobile\";b:1;}}}}}}', 'off');
INSERT INTO `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(2713, 'elementor_pro_remote_info_api_data_4.1.1', 'a:2:{s:7:\"timeout\";i:1784687985;s:5:\"value\";s:257402:\"{\"stable_version\":\"4.2.0\",\"last_updated\":\"2026-07-20 19:00:43\",\"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:242608:\\\"<h1>Elementor Pro - by Elementor.com<\\/h1>\\n<h4>4.2.0 - 2026-07-20<\\/h4>\\n<ul>\\n<li>New: Introducing Loop for building dynamic content layouts - Atomic Editor<\\/li>\\n<li>Tweak: Added Email 2 as an additional action after submit in Atomic Form - Atomic Editor<\\/li>\\n<li>Tweak: Improved the settings UI in Atomic Form - Atomic Editor<\\/li>\\n<li>Tweak: Added autocomplete support for better accessibility in Atomic Form - Atomic Editor<\\/li>\\n<li>Tweak: Added accessibility support for Atomic Form success and error messages after submission - Atomic Editor<\\/li>\\n<li>Fix: Local styles are not loaded inside Shortcode or Template widgets - Atomic Editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/32921\\\">#32921<\\/a>)<\\/li>\\n<li>Fix: Empty overrides in nested Components show the default value instead of remaining empty - Atomic Editor<\\/li>\\n<li>Fix: Classes created from Components override the expected class priority - Atomic Editor<\\/li>\\n<li>Fix: Redoing detach Component inside another Component leaves stale exposed properties behind - Atomic Editor<\\/li>\\n<li>Fix: Atomic Form elements cannot be copied and pasted - Atomic Editor<\\/li>\\n<li>Fix: Metadata is missing from email submissions in Atomic Form - Atomic Editor<\\/li>\\n<li>Fix: Sub-menu indicators flicker while the page is loading in WordPress Menu widget<\\/li>\\n<li>Fix: Load on Click duplicates the initial posts instead of loading the next posts when using multiple Posts widgets<\\/li>\\n<li>Fix: Buttons are not keyboard accessible in Flip Box widget<\\/li>\\n<li>Fix: Non-existent pages can trigger a fatal error in Archive and 404 templates<\\/li>\\n<li>Fix: Custom Search Results URLs can trigger a fatal error in Search widget<\\/li>\\n<li>Fix: Headings are highlighted inconsistently when scrolling down and back up in Table of Contents widget<\\/li>\\n<li>Fix: PHP warnings appear when WooCommerce coupons are disabled in Cart and Checkout widgets<\\/li>\\n<\\/ul>\\n<h4>4.1.3 - 2026-07-14<\\/h4>\\n<ul>\\n<li>Fix: Content section isn&#39;t expanded by default when adding atomic element inside Atomic Form - Atomic Editor<\\/li>\\n<li>Fix: Atomic Form cannot be saved as template - Atomic Editor<\\/li>\\n<\\/ul>\\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.2.0\",\"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.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvb3B0aW1hbG1lbnRhbHdlbGxuZXNzIiwiZG93bmxvYWRfYmV0YSI6ZmFsc2UsImZpbGVfa2V5IjoiMSIsImlhdCI6MTc4NDY0NDc4NCwiZXhwIjoxNzg0NzMxMTg0fQ.plalpFRet2SMjelz20yHPKI98qmf3N73mNmcwIMCaJk\\/package_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvb3B0aW1hbG1lbnRhbHdlbGxuZXNzIiwiZG93bmxvYWRfYmV0YSI6ZmFsc2UsImZpbGVfa2V5IjoiMSIsImlhdCI6MTc4NDY0NDc4NCwiZXhwIjoxNzg0NzMxMTg0fQ.plalpFRet2SMjelz20yHPKI98qmf3N73mNmcwIMCaJk\\/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 `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(2687, '_site_transient_timeout_fs_garbage_collection', '1784731154', 'off'),
(2688, '_site_transient_fs_garbage_collection', '1', 'off'),
(2689, '_site_transient_timeout_browser_c33c588009b95570bda142ca18d363d2', '1785249561', 'off'),
(2690, '_site_transient_browser_c33c588009b95570bda142ca18d363d2', 'a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"150.0.0.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}', 'off'),
(2691, '_site_transient_timeout_php_check_2cd6b574a37d822556e9c586248b843b', '1785249561', 'off'),
(2692, '_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'),
(2693, '_transient_timeout_powerpack_elements_license_data', '1784687963', 'off'),
(2694, '_transient_powerpack_elements_license_data', 'O:8:\"stdClass\":5:{s:7:\"success\";b:0;s:7:\"license\";s:7:\"invalid\";s:7:\"item_id\";b:0;s:9:\"item_name\";s:27:\"PowerPack+Pro+for+Elementor\";s:8:\"checksum\";s:32:\"ba4627249322f51af1fca4193f658aac\";}', 'off'),
(2695, '_transient_timeout_elementor_remote_info_api_data_4.1.3', '1784687963', 'off'),
(2696, '_transient_elementor_remote_info_api_data_4.1.3', 'a:4:{s:9:\"timestamp\";s:10:\"1784642773\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:82:{i:0;a:4:{s:4:\"name\";s:6:\"search\";s:5:\"title\";s:6:\"Search\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-2\";s:5:\"title\";s:7:\"Classic\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:3;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:4;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-3\";s:5:\"title\";s:8:\"Showcase\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:5;a:4:{s:4:\"name\";s:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-4\";s:5:\"title\";s:5:\"Links\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:7;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:8;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-5\";s:5:\"title\";s:8:\"Services\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:9;a:4:{s:4:\"name\";s:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:10;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-6\";s:5:\"title\";s:13:\"Portfolio Bio\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:11;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:12;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-7\";s:5:\"title\";s:13:\"Business Card\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:13;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:16;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:19;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:20;a:4:{s:4:\"name\";s:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:21;a:4:{s:4:\"name\";s:10:\"off-canvas\";s:5:\"title\";s:10:\"Off-Canvas\";s:4:\"icon\";s:16:\"eicon-off-canvas\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:22;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:23;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:25;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:26;a:4:{s:4:\"name\";s:7:\"hotspot\";s:5:\"title\";s:7:\"Hotspot\";s:4:\"icon\";s:19:\"eicon-image-hotspot\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:27;a:4:{s:4:\"name\";s:13:\"paypal-button\";s:5:\"title\";s:13:\"PayPal Button\";s:4:\"icon\";s:19:\"eicon-paypal-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:28;a:4:{s:4:\"name\";s:14:\"code-highlight\";s:5:\"title\";s:14:\"Code Highlight\";s:4:\"icon\";s:20:\"eicon-code-highlight\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:29;a:4:{s:4:\"name\";s:14:\"video-playlist\";s:5:\"title\";s:14:\"Video Playlist\";s:4:\"icon\";s:20:\"eicon-video-playlist\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:30;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:31;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:32;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:33;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:34;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:35;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:36;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:37;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:38;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:39;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:40;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:41;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:42;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:43;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:44;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:45;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:46;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:47;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:48;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:49;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:50;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:51;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:52;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:53;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:54;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:55;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:56;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:57;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:58;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:59;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:60;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:61;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:62;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:63;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:64;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:65;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:66;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:67;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:68;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:69;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:70;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:75;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:76;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:77;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:78;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:79;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:80;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:81;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"7.0.2\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}', 'off'),
(2698, '_site_transient_community-events-de3bfefd66685f0a991fef0c5a558dea', 'a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:11:\"45.120.96.0\";}s:6:\"events\";a:1:{i:0;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:87:\"WordPress Campus Connect Hajee Mohammad Danesh Science and Technology University (HSTU)\";s:3:\"url\";s:53:\"https://events.wordpress.org/campusconnect/2026/hstu/\";s:6:\"meetup\";s:0:\"\";s:10:\"meetup_url\";s:0:\"\";s:4:\"date\";s:19:\"2026-08-16 00:00:00\";s:8:\"end_date\";s:19:\"2026-08-16 00:00:00\";s:20:\"start_unix_timestamp\";i:1786816800;s:18:\"end_unix_timestamp\";i:1786816800;s:8:\"location\";a:4:{s:8:\"location\";s:20:\"Dinajpur, Bangladesh\";s:7:\"country\";s:2:\"BD\";s:8:\"latitude\";d:25.6951926;s:9:\"longitude\";d:88.6519613;}}}}', 'off'),
(2699, '_site_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3', '1784687969', 'off');
INSERT INTO `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(2700, '_site_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3', 'a:6:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:52:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\n \n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"The latest news about WordPress and the WordPress community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 21 Jul 2026 05:07:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=7.1-beta2-62809\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"image\";a:1:{i:0;a:6:{s:4:\"data\";s:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:3:\"url\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://s.w.org/favicon.ico?2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"width\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"height\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:66:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"WordPress 7.0.2 Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/news/2026/07/wordpress-7-0-2-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Jul 2026 18:45:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:14:\"minor-releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=21167\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:373:\"WordPress 7.0.2 is now available. The 7.0.2 security release addresses one critical and one high severity security issue. Because this is a security release, it is recommended that you update your sites immediately. Due to the severity, the WordPress.org team have enabled forced updates via the auto-update system for sites running affected versions. To manually [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"John Blackbourn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4464:\"\n<h2 class=\"wp-block-heading\">WordPress 7.0.2 is now available.</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The 7.0.2 security release addresses one critical and one high severity security issue.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Because this is a security release, <strong>it is recommended that you update your sites immediately.</strong> Due to the severity, the WordPress.org team have enabled forced updates via the auto-update system for sites running affected versions.</p>\n\n\n\n<p class=\"wp-block-paragraph\">To manually update you can visit your WordPress Dashboard, click “Updates”, and then click “Update Now”, or you can <a href=\"https://wordpress.org/wordpress-7.0.2.zip\">download WordPress 7.0.2 from WordPress.org</a>. On sites that support automatic background updates, the update process will begin automatically.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Security updates included in this release</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The security team would like to thank the following people for responsibly <a href=\"https://hackerone.com/wordpress\">reporting</a> vulnerabilities and allowing them to be fixed in this release:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A facilitated SQL injection issue reported as a team by TF1T, dtro, and haongo </li>\n\n\n\n<li>A REST API batch-route confusion and SQL injection issue leading to Remote Code Execution reported by Adam Kues at <a href=\"https://slcyber.io\"><u>Assetnote / Searchlight Cyber</u></a></li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">For more information on this release, please visit the <a href=\"https://wordpress.org/documentation/wordpress-version/version-7-0-2/\">HelpHub site</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Backports</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>WordPress 6.9 is affected by both vulnerabilities. Version 6.9.5 has been released containing fixes for both.</li>\n\n\n\n<li>WordPress 6.8 is only affected by the first vulnerability. Version 6.8.6 has been released containing a fix.</li>\n\n\n\n<li>The beta release of WordPress 7.1 is affected by both vulnerabilities. Version 7.1 beta2 has been released containing fixes for both.</li>\n\n\n\n<li>Versions of WordPress prior to 6.8 are not affected.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">CVE and GHSA references</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/wordpress-develop/security/advisories/GHSA-fpp7-x2x2-2mjf\"><code>CVE-2026-60137</code> / <code>GHSA-fpp7-x2x2-2mjf</code></a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/wordpress-develop/security/advisories/GHSA-ff9f-jf42-662q\"><code>CVE-2026-63030</code> / <code>GHSA-ff9f-jf42-662q</code></a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you to these WordPress contributors</h2>\n\n\n\n<p class=\"wp-block-paragraph\">This release was led by <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a> and <a href=\"https://profiles.wordpress.org/barry/\">Barry Abrahamson</a>. In addition to the security researchers mentioned above, WordPress 7.0.2 would not have been possible without the significant contributions of the following people: <a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/annezazu\">annezazu</a>, <a href=\"https://profiles.wordpress.org/Barry\">Barry</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/ehtis\">Ehtisham Siddiqui</a>, <a href=\"https://profiles.wordpress.org/joedolson\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joehoyle\">Joe Hoyle</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/clorith\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/Matt\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/batmoo\">Mohammad Jangda</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/vortfu\">vortfu</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, plus representatives from Altis, Automattic, Bluehost, Cloudflare, GoDaddy, Hostinger, and WP Engine.</p>\n\n\n\n<p class=\"wp-block-paragraph\"></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"21167\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:72:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 7.1 Beta 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2026/07/wordpress-7-1-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 15 Jul 2026 15:53:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:3:\"7-1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:7:\"release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=20987\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:354:\"WordPress 7.1 Beta 1 is ready for download and testing!&#160; This beta release is intended for testing and development&#160;only. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, use a test environment or local site to explore the new features. How to Test WordPress 7.1 Beta 1 [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Krupa Nanda\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:17714:\"\n<p class=\"wp-block-paragraph\">WordPress 7.1 Beta 1 is ready for download and testing!&nbsp;</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>This beta release is intended for testing and development</strong>&nbsp;only. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, use a test environment or local site to explore the new features.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Test WordPress 7.1 Beta 1</h2>\n\n\n\n<p class=\"wp-block-paragraph\">You can test WordPress 7.1 Beta 1 in any of the following ways:</p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong>WordPress Beta Tester Plugin</strong></td><td>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\" target=\"_blank\" rel=\"noreferrer noopener\">WordPress Beta Tester</a> plugin on a WordPress install. Select the “Bleeding edge” channel and “Beta/RC Only” stream.</td></tr><tr><td><strong>Direct Download</strong></td><td>Download the <a href=\"https://wordpress.org/wordpress-7.1-beta1.zip\">Beta 1 version (zip)</a> and install it on a WordPress website.</td></tr><tr><td><strong>Command Line (WP-CLI)</strong></td><td>Use this <a href=\"https://make.wordpress.org/cli/\" target=\"_blank\" rel=\"noreferrer noopener\">WP-CLI</a> command: <br><code>wp core update --version=7.1-beta1</code></td></tr><tr><td><strong>WordPress Playground</strong></td><td>Use a <a href=\"https://playground.wordpress.net/?site-slug=kind-classic-mountain&amp;networking=no&amp;php=8.3&amp;wp=beta&amp;language=&amp;multisite=no\" target=\"_blank\" rel=\"noopener\">7.1 Beta 1 WordPress Playground instance</a> to test the software directly in your browser. No setup required-just click and go!</td></tr></tbody></table></figure>\n\n\n\n<p class=\"wp-block-paragraph\">The scheduled final release date for WordPress 7.1 is <strong>August 19, 2026</strong>. The full <a href=\"https://make.wordpress.org/core/2026/07/03/wordpress-7-1-release-party-schedule/\" data-type=\"link\" data-id=\"https://make.wordpress.org/core/2026/07/03/wordpress-7-1-release-party-schedule/\" target=\"_blank\" rel=\"noopener\">release schedule can be found here</a>. Your help testing Beta and RC versions is vital to making this release as stable and powerful as possible. Thank you to everyone who contributes by testing! </p>\n\n\n\n<h2 class=\"wp-block-heading\">How important is your testing?</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Testing for issues is a critical part of developing any software, and it’s a meaningful way for anyone to contribute – whether or not you have experience.&nbsp;<a href=\"https://make.wordpress.org/test/2026/07/15/help-test-wordpress-7-1/\">Details on what to test in WordPress 7.1 are available here</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you encounter an issue, please share it in the&nbsp;<a href=\"https://wordpress.org/support/forum/alphabeta/\" target=\"_blank\" rel=\"noopener\">Alpha/Beta area</a>&nbsp;of the support forums. If you are comfortable submitting a reproducible bug report, you can do so&nbsp;<a href=\"https://core.trac.wordpress.org/newticket\" target=\"_blank\" rel=\"noopener\">via WordPress Trac</a>. You can also check your issue against this list of&nbsp;<a href=\"https://core.trac.wordpress.org/tickets/major\" target=\"_blank\" rel=\"noopener\">known bugs</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Curious about testing releases in general and how to get started? Follow along with the<a href=\"https://make.wordpress.org/test/\"> testing initiatives in Make Core</a>&nbsp;and join the&nbsp;<a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a>&nbsp;on&nbsp;<a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.1 will include new features that were previously only available in the Gutenberg plugin. Learn more about Gutenberg updates since WordPress 7.0 in the <a href=\"https://make.wordpress.org/core/tag/gutenberg-new/\">What’s New in Gutenberg</a> posts for versions <a href=\"https://make.wordpress.org/core/2026/03/11/whats-new-in-gutenberg-22-7-11-march/\">22.7</a>, <a href=\"https://make.wordpress.org/core/2026/03/25/whats-new-in-gutenberg-22-8-25-march/\">22.8</a>, <a href=\"https://make.wordpress.org/core/2026/04/09/whats-new-in-gutenberg-22-9-8-april/\">22.9</a>, <a href=\"https://make.wordpress.org/core/2026/04/22/whats-new-in-gutenberg-23-0-22-april/\">23.0</a>, <a href=\"https://make.wordpress.org/core/2026/05/07/whats-new-in-gutenberg-23-1-07-may/\">23.1</a>, <a href=\"https://make.wordpress.org/core/2026/05/21/whats-new-in-gutenberg-23-2-21-may/\">23.2</a>, <a href=\"https://make.wordpress.org/core/2026/06/03/whats-new-in-gutenberg-23-3-03-jun/\">23.3</a>, <a href=\"https://make.wordpress.org/core/2026/06/17/whats-new-in-gutenberg-23-3-03-jun-2/\">23.4</a>, <a href=\"https://make.wordpress.org/core/2026/07/01/whats-new-in-gutenberg-23-5-july-1-2026/\">23.5</a> and 23.6.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s new in WordPress 7.1?</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.1 delivers a more complete set of styling controls, a smoother media experience, and a more personalized admin experience. Notes have evolved to add inline notes with @mentions and rich text formatting that make asynchronous feedback feel more powerful. New styling features unlock long requested features to style how blocks look across screen sizes and to style interactive states, all without writing custom CSS. Various client side media improvements means better format support, improved performance, and more resilient uploads when adding media to your site. A new inline cropping tool brings a fresh and more robust experience to editing images. Finally, the admin experience becomes easier to navigate with an ever present admin bar in the editors, improvements to the command palette, and various quality of life improvements. Underneath it all, developers get an expanding set of APIs to build on, and site owners get better support for a truly global audience.</p>\n\n\n\n<h3 class=\"wp-block-heading\">New suite of Notes features</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Notes continue to grow into a fuller collaboration experience, making asynchronous feedback between teams faster and more expressive.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Text Formatting</strong>: Notes now support inline formatting like bold, italic, code, links and adding emoji; each with a respective keyboard shortcut, so feedback reads clearly without breaking your flow.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>@mentions</strong>: Type &#8220;@&#8221; in a Note to pull up a searchable list of collaborators and tag someone directly, so feedback points at the right person without leaving the sidebar.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Leave notes anywhere</strong>: Start more than one conversation on the same block instead of folding every comment into a single thread, making it easier to track distinct pieces of feedback.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Inline notes:</strong> Leave a note on a text selection instead of on an entire block.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Show more / show less</strong>: Long notes now collapse by default with a toggle to expand them, keeping the margin tidy while you write.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Style it your way, on any screen</h3>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.1 takes a major step toward built-in responsive design and interactive styling, letting you achieve looks that once required writing custom CSS.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Responsive styling</strong>: Define how a block looks at different screen sizes directly in the editor, for both Global Styles and individual blocks without the need of writing custom CSS.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Viewport breakpoint customization</strong>: Theme authors can now define their own responsive breakpoints in <code>theme.json</code>, giving more flexibility for how responsive controls behave on a given site.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Interactive state styling</strong>: Style how blocks respond to interaction, like a button changing color on hover or focus, using a standardized set of controls for both Global Styles and individual block instances.</p>\n\n\n\n<h3 class=\"wp-block-heading\">A smoother media experience</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Uploading, editing, and browsing media keeps getting more capable and more reliable.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Client-side media processing</strong>: Image and media processing moves into the browser, now with broader format support that includes HEIC (the default format for iPhone photos), UltraHDR, AVIF and WebP support built in,&nbsp;plus GIF-to-video conversion for lighter, more efficient files. Uploads are also more resilient, with a progress indicator and automatic retries if your data connectivity drops off.</li>\n\n\n\n<li><strong>New Media Editor Modal</strong>: A dedicated modal for editing images replaces the inline cropping tool, bringing cropping, rotation, and metadata editing together in one streamlined workflow.</li>\n\n\n\n<li><strong>Smarter galleries</strong>: Gallery blocks can automatically pull in and sort media already attached to the current post, cutting down on manual set-up.</li>\n\n\n\n<li><strong>View attached images:</strong> After you upload images to a post, the inserter will automatically surface them in a new Attached images section to make it easier to find relevant images.</li>\n\n\n\n<li><strong>Infinite scrolling by default</strong>: The Media Library grid view now loads additional items automatically as you scroll, rather than requiring a click on &#8220;Load more&#8221; especially handy for sites that handle large media libraries. This can be disabled under your user profile.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">A more personal, more navigable admin</h3>\n\n\n\n<p class=\"wp-block-paragraph\">These meaningful upgrades make the WordPress admin easier to move around in and more consistent with how you like to work.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Persistent toolbar (Omnibar)</strong>: The admin toolbar now travels with you into the Site Editor and Block Editor, with a series of polish improvements throughout.</li>\n\n\n\n<li><strong>Command palette improvements</strong>: Moving through the dashboard and editor with the command palette <code>(Ctrl/Cmd+K)</code> is more refined to make finding what you need even faster! Now results are grouped into <em>Recent, matching and Suggestions</em> sections instead of one flat list.</li>\n\n\n\n<li><strong>Admin color scheme in the Site Editor</strong>: The Site Editor now reflects your chosen admin color scheme instead of always using a fixed background.</li>\n\n\n\n<li><strong>DataViews and DataForms iterations</strong>: Continued refinement of the components behind managing lists of posts, pages, patterns, and templates, alongside the forms used to edit them.</li>\n\n\n\n<li><strong>Excerpts in the Posts list</strong>: The Posts list view now shows a short excerpt for each entry, making it easier to identify the post you&#8217;re looking for without opening it.</li>\n\n\n\n<li><strong>Visual revisions</strong>: This release adds a picker activity layout for browsing history in more detail, clearly labeled autosaves in the timeline, and an autosave notice that opens straight into the visual revisions view. Global Styles revisions get a small polish too, swapping the <em>active</em> style&#8217;s text label for a badge.</li>\n\n\n\n<li><strong>A dedicated Identity section</strong>: Site identity settings like your title, tagline, and icon are now live in their own clearly labeled section of the Site Editor, making them easier to find and update.</li>\n\n\n\n<li><strong>On This Day Widget</strong>: A new widget resurfaces what you published on this date in past years, right on your dashboard. A small nudge to look back on what you&#8217;ve written, and a reason to write something new today.</li>\n\n\n\n<li><strong>Allow Changing Comment Parent:</strong> Fixing a misthreaded comment used to mean editing the database directly. WordPress 7.1 adds an editable &#8220;In reply to&#8221; control to the Edit Comment screen, letting you pick a new parent from a dropdown of the post&#8217;s other comments. It&#8217;s scoped to the same post, so this is about untangling threads, not moving comments across posts.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">New blocks and block-level enhancements</h3>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.1 release brings a handful of block refinements that give more control with fewer steps.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Playlist Block:</strong> A new block for adding a collection of audio files to a post or page, with an optional waveform visualization that shows the audio&#8217;s shape as it plays; a more visual way to present podcasts, music, or audio content without using any third-party plugins.</li>\n\n\n\n<li><strong>Tabs Block:</strong> A new block for organizing content into clickable tabbed panels instead of showing everything at once. It&#8217;s a cleaner way to present related content without overwhelming the page.</li>\n\n\n\n<li><strong>Background gradients</strong>: Background gradients and background images no longer conflict. The gradient used to get silently overridden by the image, but now they combine and display together. This fix extends beyond the Group block to Verse, Accordion, Pullquote, Post Content, and Quote block.</li>\n\n\n\n<li><strong>HTML block editable content</strong>: The HTML block now supports editable nested blocks. This is great to use for AI-generated content, which often arrives as raw HTML.</li>\n\n\n\n<li><strong>&#8220;Mark as decorative&#8221; for images</strong>: A new toggle on the Image block lets you hide purely decorative images from screen readers for a better accessibility experience.</li>\n\n\n\n<li><strong>Smarter shortcode handling</strong>: Pasting or converting a shortcode into the Embed block now creates a proper Embed block instead of leaving raw shortcode text behind, and the Shortcode block gains block-specific transforms of its own.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Built for a global audience</h3>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.1 continues work to make Core reflect the full diversity of its worldwide community, with progress toward supporting Unicode email addresses so usernames, slugs, and email addresses can better represent users everywhere.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Built for developers</h3>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.1 continues to expand the foundation developers build on.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Abilities API expansion</strong>: Continued refinement of the Abilities API with improved querying, filtering, and input validation, giving developers and AI tooling a more reliable foundation to build on.</li>\n\n\n\n<li><strong>Block Bindings for list items</strong>: Block Bindings now extend to List Item, making it possible to connect more block content to dynamic data sources without custom code.</li>\n\n\n\n<li><strong>Custom icon registration</strong>: New functions let plugin and theme authors register their own icons for the Icons block for use throughout the block editor.</li>\n\n\n\n<li><strong>Enforced iframed editor</strong>: The post editor now always runs inside an iframe, isolating the editing canvas from admin styles for more predictable rendering. Blocks using Block API v2 or lower should be updated to v3 for compatibility.</li>\n\n\n\n<li><strong>wordpress/theme stabilization</strong>: Introduces design tokens and a stable React ThemeProvider to provide a more consistent, customizable foundation for WordPress admin interfaces.</li>\n\n\n\n<li><strong>Connectors authentication improvements</strong>: The Connectors screen now also supports username and application-password login &#8211; a more familiar way to connect plugins and services. This release also closes a security gap where browsers could auto-suggest saved credentials into the API key field.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">With so much in progress for WordPress 7.1 Beta 1, this is still only the beginning; expect continued refinement with each Beta and RC release ahead of the final release on <strong>August 19, 2026</strong>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Just for you: a Beta 1 haiku:</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Seeds of Seven-One,<br>Notes, styles, media, and tools—<br>Test, and watch them bloom.</p>\n\n\n\n<p class=\"has-text-align-right wp-block-paragraph\"><em>Props to </em><a href=\'https://profiles.wordpress.org/benjamin_zekavica/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>benjamin_zekavica</a>, <a href=\'https://profiles.wordpress.org/amykamala/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>amykamala</a>, <a href=\'https://profiles.wordpress.org/wildworks/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>wildworks</a>, <a href=\'https://profiles.wordpress.org/adamsilverstein/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>adamsilverstein</a>, <a href=\'https://profiles.wordpress.org/annezazu/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>annezazu</a>, <a href=\'https://profiles.wordpress.org/fushar/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>fushar</a>, <a href=\'https://profiles.wordpress.org/jorgefilipecosta/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jorgefilipecosta</a><em>, <a href=\'https://profiles.wordpress.org/joedolson/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>joedolson</a> for proofreading and review.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"20987\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Your Guide to WordCamp US 2026\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/news/2026/07/wcus-2026-guide/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 13 Jul 2026 13:07:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"WordCamp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:4:\"WCUS\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=21007\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:350:\"WordCamp US 2026 returns for another year, this time in Phoenix, Arizona, for four days, August 16 to 19. It comes at a moment of real energy for WordPress, as artificial intelligence reshapes everyday workflows, the business of building and maintaining sites is shifting, and new people keep discovering the platform every day. Four tracks [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Nicholas Garofalo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:55793:\"\n<figure class=\"wp-block-image size-large has-custom-border is-style-default\" style=\"margin-top:var(--wp--preset--spacing--10);margin-bottom:var(--wp--preset--spacing--10)\"><img data-recalc-dims=\"1\" fetchpriority=\"high\" decoding=\"async\" width=\"1024\" height=\"321\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser.png?resize=1024%2C321&#038;ssl=1\" alt=\"WordCamp US: Powered by WordPress, Driven by Community, August 16-19, 2026\" class=\"wp-image-20859\" style=\"border-top-left-radius:5px;border-top-right-radius:5px;border-bottom-left-radius:5px;border-bottom-right-radius:5px\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser-scaled.png?resize=1024%2C321&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser-scaled.png?resize=300%2C94&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser-scaled.png?resize=768%2C241&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser-scaled.png?resize=1536%2C482&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser-scaled.png?resize=2048%2C643&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /><figcaption class=\"wp-element-caption\"><img src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f4c5.png\" alt=\"📅\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <strong>August 16-19, 2026 | Phoenix Convention Center</strong>,<strong> Phoenix, Arizona</strong></figcaption></figure>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamp US 2026 returns for another year, this time in Phoenix, Arizona, for four days, August 16 to 19. It comes at a moment of real energy for WordPress, as artificial intelligence reshapes everyday workflows, the business of building and maintaining sites is shifting, and new people keep discovering the platform every day. Four tracks address this moment, covering AI, Honing Your Skills, Technical WordPress, and Beginner WordPress. Between them, there is something for everyone, whether you lead an agency, freelance for local clients, write code for a living, or are building your very first site. Whatever draws you in, you will leave Phoenix better equipped and better connected than ever.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-c9c19393 wp-block-buttons-is-layout-flex\" style=\"padding-right:var(--wp--preset--spacing--10);padding-left:var(--wp--preset--spacing--10)\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-align-center wp-element-button\" href=\"https://us.wordcamp.org/2026/tickets/\">Get Your Tickets</a></div>\n\n\n\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-align-center wp-element-button\" href=\"https://us.wordcamp.org/2026/contributor-day/\">Sign Up for Contributor Day</a></div>\n</div>\n\n\n\n<p class=\"wp-block-paragraph\">Phoenix itself rewards anyone who adds a day or two to their trip. The capital of Arizona sits in the Sonoran Desert and pairs a lively downtown with a rich arts and food scene. The Roosevelt Row arts district is known for its galleries, murals, and independent restaurants. It is also home to one of the largest art walks in the region. Nearby, Chase Field and the Footprint Center host professional baseball and live shows, and the surrounding desert offers striking scenery at places like Papago Park and the Desert Botanical Garden.</p>\n\n\n\n<div class=\"wp-block-jetpack-slideshow aligncenter\" data-effect=\"fade\"><div class=\"wp-block-jetpack-slideshow_container swiper\"><ul class=\"wp-block-jetpack-slideshow_swiper-wrapper swiper-wrapper\"><li class=\"wp-block-jetpack-slideshow_slide swiper-slide\"><figure><img data-recalc-dims=\"1\" decoding=\"async\" width=\"1920\" height=\"1147\" alt=\"\" class=\"wp-block-jetpack-slideshow_image wp-image-21052\" data-id=\"21052\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-1.png?resize=1920%2C1147&#038;ssl=1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-1.png?w=1920&amp;ssl=1 1920w, https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-1.png?resize=300%2C179&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-1.png?resize=767%2C458&amp;ssl=1 767w, https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-1.png?resize=1024%2C612&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-1.png?resize=1536%2C918&amp;ssl=1 1536w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure></li><li class=\"wp-block-jetpack-slideshow_slide swiper-slide\"><figure><img data-recalc-dims=\"1\" decoding=\"async\" width=\"1024\" height=\"612\" alt=\"\" class=\"wp-block-jetpack-slideshow_image wp-image-21053\" data-id=\"21053\" data-aspect-ratio=\"1024 / 612\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-2.png?resize=1024%2C612&#038;ssl=1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-2.png?resize=1024%2C612&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-2.png?resize=300%2C179&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-2.png?resize=768%2C459&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-2.png?resize=1536%2C918&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-2.png?w=1920&amp;ssl=1 1920w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure></li><li class=\"wp-block-jetpack-slideshow_slide swiper-slide\"><figure><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"612\" alt=\"\" class=\"wp-block-jetpack-slideshow_image wp-image-21054\" data-id=\"21054\" data-aspect-ratio=\"1024 / 612\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-3.png?resize=1024%2C612&#038;ssl=1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-3.png?resize=1024%2C612&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-3.png?resize=300%2C179&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-3.png?resize=768%2C459&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-3.png?resize=1536%2C918&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-3.png?w=1920&amp;ssl=1 1920w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure></li><li class=\"wp-block-jetpack-slideshow_slide swiper-slide\"><figure><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"612\" alt=\"\" class=\"wp-block-jetpack-slideshow_image wp-image-21056\" data-id=\"21056\" data-aspect-ratio=\"1024 / 612\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-4.png?resize=1024%2C612&#038;ssl=1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-4.png?resize=1024%2C612&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-4.png?resize=300%2C179&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-4.png?resize=768%2C459&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-4.png?resize=1536%2C918&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-4.png?w=1920&amp;ssl=1 1920w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure></li></ul><a class=\"wp-block-jetpack-slideshow_button-prev swiper-button-prev swiper-button-white\" role=\"button\"></a><a class=\"wp-block-jetpack-slideshow_button-next swiper-button-next swiper-button-white\" role=\"button\"></a><a aria-label=\"Pause Slideshow\" class=\"wp-block-jetpack-slideshow_button-pause\" role=\"button\"></a><div class=\"wp-block-jetpack-slideshow_pagination swiper-pagination swiper-pagination-white\"></div></div></div>\n\n\n\n<h2 class=\"wp-block-heading\">Start with Contributor Day</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The week begins with <a href=\"https://us.wordcamp.org/2026/contributor-day/\">Contributor Day</a>, a full day set aside for giving back to the project that makes everything else possible. Attendees will gather in teams to improve WordPress itself, from Core code and documentation to design, training, accessibility, and translation.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">WordPress is so unique because we&#8217;re not just a product; we&#8217;re a movement.</p>\n<cite>Matt Mullenweg, WordPress Cofounder</cite></blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">Contributor Day is open to everyone, whatever your skills, and whether or not you have ever contributed before. Come and experience the open source collaboration that is at the heart of the project. <a href=\"https://us.wordcamp.org/2026/contributor-day/\">Signing up</a> in advance helps us prepare our veteran contributors and provide you with the best experience.</p>\n\n\n\n<figure data-wp-context=\"{&quot;galleryId&quot;:&quot;6a5f834185fa7&quot;}\" data-wp-interactive=\"core/gallery\" class=\"wp-block-gallery alignfull has-nested-images columns-6 is-cropped has-black-background-color has-background wp-block-gallery-1 is-layout-flex wp-container-core-gallery-is-layout-db4b8a9e wp-block-gallery-is-layout-flex\" style=\"border-width:20px;border-radius:2px\">\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a5f83418650e&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a5f83418650e\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"19085\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/Z632926.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-19085\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/Z632926-scaled.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z632926-scaled.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z632926-scaled.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z632926-scaled.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z632926-scaled.jpg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a5f834186ae6&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a5f834186ae6\" class=\"wp-block-image size-large wp-lightbox-container\"><img loading=\"lazy\" decoding=\"async\" width=\"2560\" height=\"1707\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"19089\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8723-scaled.jpg?fit=1024%2C683&amp;ssl=1\" alt=\"\" class=\"wp-image-19089\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8723-scaled.jpg?w=2560&amp;ssl=1 2560w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8723-scaled.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8723-scaled.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8723-scaled.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8723-scaled.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8723-scaled.jpg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a5f834187013&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a5f834187013\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"19110\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC04553.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-19110\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC04553.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC04553.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC04553.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC04553.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC04553.jpg?w=2048&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a5f834187573&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a5f834187573\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"21080\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC8737.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-21080\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC8737.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC8737.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC8737.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC8737.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC8737.jpg?w=1920&amp;ssl=1 1920w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a5f834187bfa&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a5f834187bfa\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"21078\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0748.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-21078\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0748.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0748.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0748.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0748.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0748.jpg?w=1920&amp;ssl=1 1920w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a5f83418810b&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a5f83418810b\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"21079\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0768.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-21079\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0768.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0768.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0768.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0768.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0768.jpg?w=1920&amp;ssl=1 1920w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a5f83418869d&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a5f83418869d\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"21077\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0379.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-21077\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0379.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0379.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0379.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0379.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0379.jpg?w=1920&amp;ssl=1 1920w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a5f834188bc8&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a5f834188bc8\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"21074\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0167.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-21074\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0167.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0167.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0167.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0167.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0167.jpg?w=1920&amp;ssl=1 1920w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a5f8341891f7&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a5f8341891f7\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"21076\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0331.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-21076\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0331.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0331.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0331.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0331.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0331.jpg?w=1920&amp;ssl=1 1920w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a5f834189807&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a5f834189807\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"21083\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/Z636050.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-21083\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/07/Z636050.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/07/Z636050.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/07/Z636050.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/07/Z636050.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/07/Z636050.jpg?w=1920&amp;ssl=1 1920w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a5f834189f35&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a5f834189f35\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"21082\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/Z632983.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-21082\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/07/Z632983.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/07/Z632983.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/07/Z632983.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/07/Z632983.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/07/Z632983.jpg?w=1920&amp;ssl=1 1920w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a5f83418a71c&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a5f83418a71c\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"19083\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8887-2.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-19083\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8887-2-scaled.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8887-2-scaled.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8887-2-scaled.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8887-2-scaled.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8887-2-scaled.jpg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n</figure>\n\n\n\n<h2 class=\"wp-block-heading\">Explore Real-World Projects on Showcase Day</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Day 2, Showcase Day, is dedicated to real-world WordPress projects and focuses on how teams develop features, manage publishing, and run demanding sites at scale. It brings to life the kind of work collected in the WordPress <a href=\"https://wordpress.org/showcase/\">Showcase</a>, the directory of standout sites built on the platform, from global brands like <a href=\"https://wordpress.org/showcase/disney-connect/\">Disney</a> to community publishers and institutions like <a href=\"https://wordpress.org/showcase/nasa/\">NASA</a>. Past WordCamp US Showcase days have brought teams from the likes of <a href=\"https://www.youtube.com/watch?v=PGvh7fCOUk0\">Wikimedia</a> and <a href=\"https://www.youtube.com/watch?v=MHk-Us00pTk\">CANCOM</a> to explain how they manage large, high-traffic systems. Other sessions took a builder&#8217;s perspective on catching bugs faster with automated testing and even running the Block Editor inside a custom app.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/Z637241.jpg?resize=1024%2C576&#038;ssl=1\" alt=\"\" class=\"wp-image-21064\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/07/Z637241.jpg?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/07/Z637241.jpg?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/07/Z637241.jpg?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/07/Z637241.jpg?resize=1536%2C864&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/07/Z637241.jpg?w=1920&amp;ssl=1 1920w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Dive Into Two Conference Days</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The two main conference days will bring a full slate of sessions across four tracks. First among them is the AI track, which treats the technology as a tool to handle with care rather than a headline to chase. Its sessions set guardrails for AI-assisted development, prepare for a web where AI agents become the visitors a site must serve, and weigh the legal and ethical questions of putting AI tools in the hands of clients. Speakers from companies like Elementor will be taking a look at where the web is heading, while keeping the focus on what teams can adopt today without giving up control of their work.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The Technical WordPress and Honing Your Skills tracks cover the craft and business of building with WordPress. On the technical side, sessions dig into modern development workflows, automated testing with tools like the browser-based <a href=\"https://playground.wordpress.net/\">WordPress Playground</a>, and plugin pipelines. The Honing Your Skills track adds practical guidance on pricing, maintenance, and how the agency model is changing as clients ask for more. The Beginner WordPress track keeps the door open for newcomers, with approachable sessions that make your first WordCamp less daunting. Hands-on work runs through all of these tracks, so alongside the talks, attendees will find workshops and working sessions where they can build something real and leave ready to apply it to their own projects.</p>\n\n\n\n<figure data-wp-context=\"{&quot;galleryId&quot;:&quot;6a5f83418bdfc&quot;}\" data-wp-interactive=\"core/gallery\" class=\"wp-block-gallery alignfull has-nested-images columns-6 is-cropped has-black-background-color has-background wp-block-gallery-2 is-layout-flex wp-container-core-gallery-is-layout-db4b8a9e wp-block-gallery-is-layout-flex\" style=\"border-width:20px\">\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a5f83418c4b2&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a5f83418c4b2\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"19080\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5641.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-19080\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5641-scaled.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5641-scaled.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5641-scaled.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5641-scaled.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5641-scaled.jpg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a5f83418ccef&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a5f83418ccef\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"21086\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/Z633923.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-21086\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/07/Z633923.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/07/Z633923.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/07/Z633923.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/07/Z633923.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/07/Z633923.jpg?w=1920&amp;ssl=1 1920w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a5f83418d501&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a5f83418d501\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"21085\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC9190.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-21085\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC9190.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC9190.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC9190.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC9190.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC9190.jpg?w=1920&amp;ssl=1 1920w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a5f83418dae5&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a5f83418dae5\" class=\"wp-block-image size-full wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1920\" height=\"1280\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"21065\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/Z637801.jpg?resize=1920%2C1280&#038;ssl=1\" alt=\"\" class=\"wp-image-21065\" style=\"aspect-ratio:1\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a5f83418e29e&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a5f83418e29e\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"819\" height=\"1024\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"21084\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/Z637088-1.jpg?resize=819%2C1024&#038;ssl=1\" alt=\"\" class=\"wp-image-21084\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/07/Z637088-1.jpg?resize=819%2C1024&amp;ssl=1 819w, https://i0.wp.com/wordpress.org/news/files/2026/07/Z637088-1.jpg?resize=240%2C300&amp;ssl=1 240w, https://i0.wp.com/wordpress.org/news/files/2026/07/Z637088-1.jpg?resize=1229%2C1536&amp;ssl=1 1229w, https://i0.wp.com/wordpress.org/news/files/2026/07/Z637088-1.jpg?resize=768%2C960&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/07/Z637088-1.jpg?w=1536&amp;ssl=1 1536w\" sizes=\"auto, (max-width: 819px) 100vw, 819px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a5f83418ea19&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a5f83418ea19\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"21081\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC9344.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-21081\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC9344.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC9344.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC9344.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC9344.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC9344.jpg?w=1920&amp;ssl=1 1920w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n</figure>\n\n\n\n<p class=\"wp-block-paragraph\">Not all of the value happens in the session rooms. On the show floor, the <a href=\"https://us.wordcamp.org/2026/47-days-out-whats-waiting-for-you-at-wordcamp-us-2026/#happiness\">Happiness Bar</a> is a free, drop-in help desk where you can sit down with a volunteer WordPress expert and work through whatever has you stuck. The <a href=\"https://us.wordcamp.org/2026/47-days-out-whats-waiting-for-you-at-wordcamp-us-2026/#sponsor\">Sponsor Hall</a> next door is where many of the best unplanned conversations happen, and its <a href=\"https://us.wordcamp.org/2026/47-days-out-whats-waiting-for-you-at-wordcamp-us-2026/#career\">Career Corner</a> gives anyone weighing their next move a relaxed place to browse the job board, meet company reps, and see who is hiring across the ecosystem.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Plan Your Trip to Phoenix</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Getting to Phoenix is straightforward. The <a href=\"https://us.wordcamp.org/2026/about/venue/\">Phoenix Convention Center</a> sits in the heart of downtown, less than five miles from Phoenix Sky Harbor International Airport (PHX) and about 15 minutes away on the <a href=\"https://www.valleymetro.org/how-to-ride/rail\">Valley Metro light rail</a>. WordCamp US has a room block at the Sheraton Phoenix Downtown, close to the convention center, so <a href=\"https://book.passkey.com/event/51129263/owner/68648/home\">book your hotel</a> before the block fills, and <a href=\"https://us.wordcamp.org/2026/tickets/\">reserve your ticket</a> if you have not already. The full event lineup and details live on the <a href=\"https://us.wordcamp.org/2026/schedule/\">WordCamp US 2026 site</a>, and the conference closes with an evening social before everyone heads home.</p>\n\n\n\n<div class=\"wp-block-group has-off-white-background-color has-background is-nowrap is-layout-flex wp-container-core-group-is-layout-7c1a8141 wp-block-group-is-layout-flex\" style=\"padding-top:var(--wp--preset--spacing--10);padding-right:var(--wp--preset--spacing--edge-space);padding-bottom:var(--wp--preset--spacing--10);padding-left:var(--wp--preset--spacing--edge-space)\">\n<ol style=\"padding-top:var(--wp--preset--spacing--10);padding-right:var(--wp--preset--spacing--10);padding-bottom:var(--wp--preset--spacing--10);padding-left:var(--wp--preset--spacing--10)\" class=\"wp-block-list has-off-white-background-color has-background has-large-font-size wp-container-content-9cfa9a5a\">\n<li><strong><img src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f39f.png\" alt=\"🎟\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> </strong><a href=\"https://us.wordcamp.org/2026/tickets/\">Reserve your ticket</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f6cf.png\" alt=\"🛏\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /><a href=\"https://us.wordcamp.org/2026/about/travel-accommodation/\"> Find accommodations</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f68c.png\" alt=\"🚌\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /><a href=\"https://us.wordcamp.org/2026/plan-your-trip-to-phoenix/\"> Plan your trip</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f4cd.png\" alt=\"📍\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /><a href=\"https://www.visitphoenix.com/\">Explore Phoenix</a></li>\n</ol>\n\n\n\n<figure class=\"wp-block-image size-full wp-container-content-577e1c61\" style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"2066\" height=\"2560\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/route-66-traveller-boy-scaled.png?resize=2066%2C2560&#038;ssl=1\" alt=\"\" class=\"wp-image-21164\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/07/route-66-traveller-boy-scaled.png?w=2066&amp;ssl=1 2066w, https://i0.wp.com/wordpress.org/news/files/2026/07/route-66-traveller-boy-scaled.png?resize=242%2C300&amp;ssl=1 242w, https://i0.wp.com/wordpress.org/news/files/2026/07/route-66-traveller-boy-scaled.png?resize=826%2C1024&amp;ssl=1 826w, https://i0.wp.com/wordpress.org/news/files/2026/07/route-66-traveller-boy-scaled.png?resize=768%2C952&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/07/route-66-traveller-boy-scaled.png?resize=1240%2C1536&amp;ssl=1 1240w, https://i0.wp.com/wordpress.org/news/files/2026/07/route-66-traveller-boy-scaled.png?resize=1653%2C2048&amp;ssl=1 1653w, https://i0.wp.com/wordpress.org/news/files/2026/07/route-66-traveller-boy-scaled.png?w=2000&amp;ssl=1 2000w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n</div>\n\n\n\n<h3 class=\"wp-block-heading\">Help Us Spread the Word!</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Whether attending in person or following along online, share your experience and help welcome others to the WordPress community. Use the #WCUS and #WordPress hashtags to tell your story on social.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"21007\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:69:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 7.0.1 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2026/07/wordpress-7-0-1-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 09 Jul 2026 17:33:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"7.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:5:\"7.0.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:14:\"minor-releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=21005\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:395:\"WordPress 7.0.1 is now available! This minor release includes fixes for 31 bugs throughout Core and the Block Editor, addressing issues affecting multiple areas of WordPress including the block editor, admin ui, and media. For a full list of bug fixes, please refer to the release candidate announcement. WordPress 7.0.1 is a short-cycle maintenance release. The next major version [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Estela Rueda\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:8722:\"\n<p class=\"wp-block-paragraph\"><strong>WordPress 7.0.1 is now available!</strong></p>\n\n\n\n<p class=\"wp-block-paragraph\">This minor release includes fixes for 31 bugs <a href=\"https://core.trac.wordpress.org/query?resolution=fixed&amp;milestone=7.0.1&amp;group=component&amp;col=id&amp;col=summary&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=status&amp;col=priority&amp;order=priority\">throughout Core</a> and the <a href=\"https://core.trac.wordpress.org/changeset/62610\">Block Editor</a>, addressing issues affecting multiple areas of WordPress including the block editor, admin ui, and media. For a full list of bug fixes, please refer to the <a href=\"https://make.wordpress.org/core/2026/07/01/wordpress-7-0-1-rc1-is-now-available/\">release candidate announcement.</a></p>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.0.1 is a short-cycle maintenance release. The next major version of WordPress will be 7.1; it is scheduled for release on 19 August 2026 at <a href=\"https://us.wordcamp.org/2026/\">WordCamp US</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you have sites that support automatic background updates, the update process will begin automatically.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You can&nbsp;<a href=\"https://wordpress.org/wordpress-7.0.1.zip\">download WordPress 7.0.1 from WordPress.org</a>, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”. For more information on this release, please&nbsp;<a href=\"https://wordpress.org/support/wordpress-version/version-7-0-1\">visit the HelpHub site</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you to these WordPress contributors</h2>\n\n\n\n<p class=\"wp-block-paragraph\">This release was led by&nbsp;<a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/masteradhoc/\">Brian Haas</a>, <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a> and <a href=\"https://profiles.wordpress.org/estelaris/\">Estela Rueda</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.0.1 would not have been possible without the contributions of the following people. Their asynchronous coordination to deliver maintenance fixes into a stable release is a testament to the power and capability of the WordPress community.</p>\n\n\n\n<p class=\"is-style-wporg-props-long wp-block-paragraph\"><a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/abduremon\">Abdur Rahman Emon</a>, <a href=\"https://profiles.wordpress.org/abhishekfdd\">Abhishek Kumar</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/zieladam\">Adam Zieliński</a>, <a href=\"https://profiles.wordpress.org/iamadisingh\">Aditya Singh</a>, <a href=\"https://profiles.wordpress.org/wildworks\">Aki Hamano</a>, <a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andraganescu\">Andrei Draganescu</a>, <a href=\"https://profiles.wordpress.org/andrewserong\">Andrew Serong</a>, <a href=\"https://profiles.wordpress.org/annezazu\">annezazu</a>, <a href=\"https://profiles.wordpress.org/scruffian\">Ben Dwyer</a>, <a href=\"https://profiles.wordpress.org/bacoords\">Brian Coords</a>, <a href=\"https://profiles.wordpress.org/masteradhoc\">Brian Haas</a>, <a href=\"https://profiles.wordpress.org/cbravobernal\">Carlos Bravo</a>, <a href=\"https://profiles.wordpress.org/cogdesign\">cogdesign</a>, <a href=\"https://profiles.wordpress.org/danluu\">Dan Luu</a>, <a href=\"https://profiles.wordpress.org/talldanwp\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/darshitrajyaguru97\">Darshit Rajyaguru</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/dmsnell\">Dennis Snell</a>, <a href=\"https://profiles.wordpress.org/dhruvang21\">Dhruvang21</a>, <a href=\"https://profiles.wordpress.org/ellatrix\">Ella Van Durpe</a>, <a href=\"https://profiles.wordpress.org/r1k0\">Erick Wambua</a>, <a href=\"https://profiles.wordpress.org/ecairol\">Esteban</a>, <a href=\"https://profiles.wordpress.org/estelaris\">Estela Rueda</a>, <a href=\"https://profiles.wordpress.org/mamaduka\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/gziolo\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/abcd95\">Himanshu Pathak</a>, <a href=\"https://profiles.wordpress.org/hbhalodia\">Hit Bhalodia</a>, <a href=\"https://profiles.wordpress.org/huzaifaalmesbah\">Huzaifa Al Mesbah</a>, <a href=\"https://profiles.wordpress.org/iflairwebtechnologies\">iflairwebtechnologies</a>, <a href=\"https://profiles.wordpress.org/jamesbregenzer\">James</a>, <a href=\"https://profiles.wordpress.org/jsnajdr\">Jarda Snajdr</a>, <a href=\"https://profiles.wordpress.org/audrasjb\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/joedolson\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joen\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/jonsurrell\">Jon Surrell</a>, <a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/karthikeya01\">Karthikeya Bethu</a>, <a href=\"https://profiles.wordpress.org/khokansardar\">Khokan Sardar</a>, <a href=\"https://profiles.wordpress.org/rlucian\">Lucian R.</a>, <a href=\"https://profiles.wordpress.org/luismulinari\">luismulinari</a>, <a href=\"https://profiles.wordpress.org/dervishov\">Mahammad Darvishov</a>, <a href=\"https://profiles.wordpress.org/manhar\">Manhar Barot</a>, <a href=\"https://profiles.wordpress.org/mciampini\">Marco Ciampini</a>, <a href=\"https://profiles.wordpress.org/tyxla\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/muryam\">Maryam Sultana</a>, <a href=\"https://profiles.wordpress.org/masum52\">Masum</a>, <a href=\"https://profiles.wordpress.org/mcsf\">Miguel Fonseca</a>, <a href=\"https://profiles.wordpress.org/369work\">Miroku</a>, <a href=\"https://profiles.wordpress.org/mohamedahamed\">Mohammed Noumaan Ahamed</a>, <a href=\"https://profiles.wordpress.org/mukesh27\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/mustafabharmal\">Mustafa Bharmal</a>, <a href=\"https://profiles.wordpress.org/ntsekouras\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/noruzzaman\">Noruzzaman</a>, <a href=\"https://profiles.wordpress.org/ozgursar\">Ozgur Sar</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/presskopp\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/ekla\">Rahul Kumar</a>, <a href=\"https://profiles.wordpress.org/ramonopoly\">ramonopoly</a>, <a href=\"https://profiles.wordpress.org/youknowriad\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/rishabhwp\">Rishabh Gupta</a>, <a href=\"https://profiles.wordpress.org/roshniahuja14\">Roshni Ahuja</a>, <a href=\"https://profiles.wordpress.org/sainathpoojary\">Sainath Poojary</a>, <a href=\"https://profiles.wordpress.org/sakshamsharma5\">Saksham Sharma</a>, <a href=\"https://profiles.wordpress.org/andrewssanya\">SAndrew</a>, <a href=\"https://profiles.wordpress.org/coffee2code\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/siliconforks\">siliconforks</a>, <a href=\"https://profiles.wordpress.org/sabernhardt\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/swanandm\">Swanand M</a>, <a href=\"https://profiles.wordpress.org/inc2734\">Takashi Kitajima</a>, <a href=\"https://profiles.wordpress.org/edent\">Terence Eden</a>, <a href=\"https://profiles.wordpress.org/threadi\">threadi</a>, <a href=\"https://profiles.wordpress.org/tusharaddweb\">Tushar Patel</a>, <a href=\"https://profiles.wordpress.org/umesh.nevase\">Umesh Nevase</a>, <a href=\"https://profiles.wordpress.org/webmandesign\">WebMan Design | Oliver Juhas</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/yogeshbhutkar\">Yogesh Bhutkar</a>, <a href=\"https://profiles.wordpress.org/yusufmudagal\">Yusuf Mudagal</a> </p>\n\n\n\n<h2 class=\"wp-block-heading\">How to contribute</h2>\n\n\n\n<p class=\"wp-block-paragraph\">To get involved in WordPress core development, head over to Trac,&nbsp;<a href=\"https://core.trac.wordpress.org/report/6\">choose a ticket</a>, and join the conversation in the&nbsp;<a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a>&nbsp;channel. Need help? Check out the&nbsp;<a href=\"https://make.wordpress.org/core/handbook/\">Core Contributor Handbook</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Props to </em><a href=\'https://profiles.wordpress.org/jorbin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jorbin</a><em> for proofreading.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"21005\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"The First AI Leaders Graduates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2026/06/ai-leaders-graduates/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 29 Jun 2026 20:29:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:9:\"Education\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"Updates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:2:\"AI\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=20951\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:377:\"On June 23, around 40 students from the University of Illinois Chicago (UIC), Louisiana Tech University, and the University of Louisiana at Lafayette were celebrated in Chicago as the first cohort to receive the AI Leaders Micro-Credential through AI Leaders, the nation&#8217;s first workforce-focused AI literacy course tied to a recognized credential. Each of them [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mary Hubbard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5442:\"\n<p class=\"wp-block-paragraph\">On June 23, around 40 students from the University of Illinois Chicago (UIC), Louisiana Tech University, and the University of Louisiana at Lafayette were celebrated in Chicago as the first cohort to receive the AI Leaders Micro-Credential through <a href=\"https://ai-leaders.org/\">AI Leaders</a>, the nation&#8217;s first workforce-focused AI literacy course tied to a recognized credential. Each of them earned it by building real projects, applying generative AI to genuine work, and contributing to the open source software that powers more than 40% of the web. Students who completed the course also earned $1,000, made possible by a donation from Automattic and UIC. This celebration was the moment the program had been building toward since it was <a href=\"https://wordpress.org/news/2026/02/ai-leaders-credential/\">first announced in February</a>.</p>\n\n\n\n<div class=\"wp-block-group has-background is-layout-constrained wp-container-core-group-is-layout-2431c55b wp-block-group-is-layout-constrained\" style=\"background-color:#0c1125;padding-top:var(--wp--preset--spacing--edge-space);padding-right:var(--wp--preset--spacing--edge-space);padding-bottom:var(--wp--preset--spacing--edge-space);padding-left:var(--wp--preset--spacing--edge-space)\">\n<p class=\"has-text-align-center has-white-color has-text-color has-link-color has-normal-font-size wp-elements-2 wp-block-paragraph\"><strong>Explore the project portfolios built by this year’s AI Leaders</strong></p>\n\n\n\n<figure class=\"wp-block-image size-full\" style=\"margin-top:var(--wp--preset--spacing--10);margin-bottom:var(--wp--preset--spacing--10)\"><a href=\"https://aileaderswp.blog/\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/aileaderswpblog-scaled.png?ssl=1\" alt=\"\" class=\"wp-image-20975\" /></a></figure>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-3e41869c wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-align-center wp-element-button\" href=\"https://aileaderswp.blog/\"><strong>AI Leaders · Class of 2026</strong></a></div>\n</div>\n</div>\n\n\n\n<p class=\"wp-block-paragraph\">When the pilot launched, the goal was to test whether open source learning could connect directly to job pathways rather than stopping at a certificate. What makes this program distinct is that it is built on open source from the ground up: students learn on WordPress, contribute to it, and use generative AI the way the WordPress ecosystem uses it every day, leaving with a credential that employers can verify and a community that continues long after the course ends.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The pilot reflects a shared belief that AI and open source skills should be within reach regardless of where someone lives or what they can afford.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">WordPress was built to expand access to publishing and participation on the open web.</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">The program is a collaboration with distinct roles for each partner. It is funded through the <a href=\"https://osf.it.uic.edu/\">UIC Tech Solutions Open Source Fund</a>, with support from the <a href=\"https://www.uic.edu/\">University of Illinois Chicago</a> and <a href=\"https://automattic.com/?p=867048\">Automattic</a>, while the WordPress project and the <a href=\"https://wordpressfoundation.org/\">WordPress Foundation</a> contribute to the development of the curriculum itself.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What Comes Next</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The first cohort was just the beginning. The gathering in Chicago brought this group together with employers and agencies, and further job placements are already in motion. </p>\n\n\n\n<div class=\"wp-block-group has-off-white-2-background-color has-background is-layout-constrained wp-container-core-group-is-layout-2431c55b wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--edge-space);padding-right:var(--wp--preset--spacing--edge-space);padding-bottom:var(--wp--preset--spacing--edge-space);padding-left:var(--wp--preset--spacing--edge-space)\">\n<p class=\"has-text-align-center wp-block-paragraph\">The next round of AI Leaders is on the horizon. Subscribe for updates to be the first to hear when the next cohort opens and how to take part.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-3e41869c wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://ai-leaders.org/#apply\"><strong>Subscribe for AI Leaders Updates</strong></a></div>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-dark-strokes-grey-color has-alpha-channel-opacity has-dark-strokes-grey-background-color has-background\" />\n\n\n\n<p class=\"wp-block-paragraph\"><em>WordPress offers a wide range of educational opportunities for people at every stage, from first steps to advanced contribution. Explore workshops, lesson plans, and community-created resources designed to help you build practical skills while connecting with others who are learning and contributing at <a href=\"https://wordpress.org/education/\">WordPress.org/education/</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"20951\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"Browse the New Mercantile Swag Store\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://wordpress.org/news/2026/06/open-web-merch/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 22 Jun 2026 15:07:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=20930\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:324:\"Mercantile, the official swag store of the WordPress project, has a newly redesigned storefront with a catalog that now sits front and center, and a design tuned to hold up across a wide range of screen sizes. There are also small touches, like automatically selecting a variant when only one is in stock and order [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"jillq\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5622:\"\n<p class=\"wp-block-paragraph\"><a href=\"https://mercantile.wordpress.org/\">Mercantile</a>, the official swag store of the WordPress project, has a newly redesigned storefront with a catalog that now sits front and center, and a design tuned to hold up across a wide range of screen sizes. There are also small touches, like automatically selecting a variant when only one is in stock and order emails styled to match the look and feel of the store.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"2048\" height=\"1055\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/image-1.png?resize=2048%2C1055&#038;ssl=1\" alt=\"\" class=\"wp-image-20931\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/image-1.png?w=2048&amp;ssl=1 2048w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-1.png?resize=300%2C155&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-1.png?resize=767%2C395&amp;ssl=1 767w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-1.png?resize=1024%2C528&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-1.png?resize=1536%2C791&amp;ssl=1 1536w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Throughout the design, the storefront leans into the history and culture of WordPress. Visual and copy choices nod to familiar elements of the project, from the metabox and the admin bar to Wapuu making the occasional appearance, with small open source and code references for those who look closely. The aim was a storefront that feels uniquely WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Under the hood, the storefront shows what a modern WordPress and <a href=\"https://woocommerce.com/\">WooCommerce</a> site can do. It is built almost entirely with blocks, including a block-based cart, checkout, mini-cart, and order confirmation, supported by a set of custom theme blocks created for the store. The <a href=\"https://developer.wordpress.org/block-editor/reference-guides/interactivity-api/iapi-about/\">Interactivity API</a> powers the catalog navigation and modal states, the store runs on WordPress 7.0, and accessibility is built in throughout, honoring reduced-motion preferences across animations and meeting color contrast standards. Product pages surface per-product attributes such as size, material, and care, so shoppers have the details they need before adding an item to the cart.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"2048\" height=\"800\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/image-2.png?resize=2048%2C800&#038;ssl=1\" alt=\"\" class=\"wp-image-20932\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/image-2.png?w=2048&amp;ssl=1 2048w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-2.png?resize=300%2C117&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-2.png?resize=768%2C300&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-2.png?resize=1024%2C400&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-2.png?resize=1536%2C600&amp;ssl=1 1536w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">This latest redesign supported the Mercantile booth at <a href=\"https://europe.wordcamp.org/2026/\">WordCamp Europe</a>. To make in-person sales work smoothly, the team enabled local pickup at checkout and added a set of event-only products refined to match the rest of the catalog. Fifty orders were completed at the event using in-person payments, a strong real-world test of the new checkout flow.</p>\n\n\n\n<p class=\"wp-block-paragraph\">There is more on the way! A playful experiment in progress will let curious shoppers explore a text-based version of the store from the command line, a small tribute to the developers who make up much of the WordPress community. Subtle hints pointing the way will appear once it is ready.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"2048\" height=\"719\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/image-3.png?resize=2048%2C719&#038;ssl=1\" alt=\"\" class=\"wp-image-20933\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/image-3.png?w=2048&amp;ssl=1 2048w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-3.png?resize=300%2C105&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-3.png?resize=766%2C269&amp;ssl=1 766w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-3.png?resize=1024%2C360&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-3.png?resize=1536%2C539&amp;ssl=1 1536w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">The new Mercantile is the work of many contributors who designed, built, tested, and refined it together. Every purchase supports the <a href=\"https://wordpressfoundation.org/\">WordPress Foundation</a>, a 501(c)(3) nonprofit organization, in its mission to democratize publishing and preserve open source software for generations to come. Take a look around and find something you love.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-3e41869c wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://mercantile.wordpress.org/\">Shop at <strong>mercantile.WordPress.org</strong></a></div>\n</div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"20930\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:72:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"Kim Parsell Memorial Scholarship Opens for WordCamp US 2026\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/news/2026/06/kim-parsell-wcus-scholarship/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 19 Jun 2026 16:55:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"WordCamp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"Kim Parsell\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:11:\"Scholarship\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:4:\"WCUS\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=20927\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:350:\"Applications are now open for the 2026 Kim Parsell Memorial Scholarship, which supports one active WordPress contributor who identifies as a woman and has not previously attended WordCamp US. The scholarship helps make it possible for a community member with financial need to join WordCamp US 2026 in Phoenix, Arizona, and take part in one [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5857:\"\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1920\" height=\"1080\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/Kim-Parsell-Blog-post.png?resize=1920%2C1080&#038;ssl=1\" alt=\"\" class=\"wp-image-20941\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/Kim-Parsell-Blog-post.png?w=1920&amp;ssl=1 1920w, https://i0.wp.com/wordpress.org/news/files/2026/06/Kim-Parsell-Blog-post.png?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/Kim-Parsell-Blog-post.png?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/Kim-Parsell-Blog-post.png?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/Kim-Parsell-Blog-post.png?resize=1536%2C864&amp;ssl=1 1536w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Applications are now open for the 2026 Kim Parsell Memorial Scholarship, which supports one active WordPress contributor who identifies as a woman and has not previously attended WordCamp US. The scholarship helps make it possible for a community member with financial need to join WordCamp US 2026 in Phoenix, Arizona, and take part in one of the largest annual gatherings in the WordPress project.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The scholarship honors Kim Parsell, a longtime WordPress contributor whose work and presence left a meaningful mark on the project. Kim was known for her care, generosity, and commitment to helping others feel welcome in open source spaces. For readers who are less familiar with her story, the <a href=\"https://us.wordcamp.org/2019/memories-of-kim-parsell/\">tributes shared by friends and colleagues</a> offer a deeper look at her role in the WordPress community and the lasting impact she had on those who knew her. Through this scholarship, the WordPress Foundation continues to recognize contributors who reflect that same spirit of participation and community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress is built by people from many backgrounds, experiences, and areas of expertise. Events like WordCamp US create space for contributors to meet in person, learn from one another, and continue the work that supports the software and the community around it. For some contributors, the cost of travel, lodging, and registration can make attending difficult. The Kim Parsell Memorial Scholarship helps reduce that barrier for one eligible contributor each year.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Scholarship Details</h2>\n\n\n\n<p class=\"wp-block-paragraph\">One scholarship will be awarded for WordCamp US 2026. Applicants must:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Identify as a woman. </li>\n\n\n\n<li>Be actively involved as a contributor to WordPress.</li>\n\n\n\n<li>Have never attended WordCamp US before.</li>\n\n\n\n<li>Demonstrate financial need to attend the event.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">The scholarship includes the cost of a WordCamp US 2026 ticket, round-trip flight, and lodging. Applications are open through July 10, 2026, and all applicants will be notified of the decision by July 24, 2026.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-background wp-element-button\" href=\"https://wordcampcentral.survey.fm/wcus-2026-kim-parsell-scholarship-application\" style=\"background-color:#6c214f\">Apply for the Kim Parsell Memorial Scholarship</a></div>\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-7387b849 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:66.66%\">\n<p class=\"wp-block-paragraph\">WordCamp US 2026 will take place August 16–19, 2026, at the Phoenix Convention Center in Phoenix, Arizona. Contributors, attendees, volunteers, organizers, and sponsors will come together to share ideas, learn from each other, and continue building the future of WordPress. For many contributors, attending in person creates new ways to collaborate, find support, and stay connected to the open source work that happens throughout the year.</p>\n\n\n\n<p class=\"wp-block-paragraph\">To learn more about eligibility, visit the <a href=\"https://wordpressfoundation.org/kim-parsell-memorial-scholarship/\">Kim Parsell Memorial Scholarship page</a>. Community members are encouraged to share this opportunity with contributors who may qualify. You can also learn more about attending WordCamp US 2026 on the <a href=\"https://us.wordcamp.org/2026/tickets/\">WordCamp US tickets page</a>, explore <a href=\"https://us.wordcamp.org/2026/call-for-volunteers/\">volunteer opportunities</a>, or review <a href=\"https://us.wordcamp.org/2026/call-for-sponsors/\">sponsorship opportunities</a>.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.33%\">\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"943\" height=\"1978\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WCUS26_Sign.png?resize=943%2C1978&#038;ssl=1\" alt=\"\" class=\"wp-image-20939\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WCUS26_Sign.png?w=943&amp;ssl=1 943w, https://i0.wp.com/wordpress.org/news/files/2026/06/WCUS26_Sign.png?resize=143%2C300&amp;ssl=1 143w, https://i0.wp.com/wordpress.org/news/files/2026/06/WCUS26_Sign.png?resize=768%2C1610&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WCUS26_Sign.png?resize=488%2C1024&amp;ssl=1 488w, https://i0.wp.com/wordpress.org/news/files/2026/06/WCUS26_Sign.png?resize=732%2C1536&amp;ssl=1 732w\" sizes=\"auto, (max-width: 943px) 100vw, 943px\" /></figure>\n</div>\n</div>\n\n\n\n<p class=\"wp-block-paragraph\"></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"20927\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:69:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"Global Partners Across the First Half of the 2026 WordPress Event Season\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2026/06/global-partners-first-half-2026/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 18 Jun 2026 17:01:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:9:\"Education\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:8:\"WordCamp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:15:\"Global Partners\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=20910\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:402:\"This post recaps how the WordPress project&#8217;s five Global Partners — Jetpack, WordPress.com, WooCommerce, Bluehost, and Hostinger — supported community events during the first half of 2026. Across more than a dozen regional the first WordPress Developers Day, and a growing network of WordPress Campus Connect events, Global Partners staffed booths, sponsored sessions, and connected [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Harmony Romo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:8155:\"\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/55169598894_0199c1bbb9_o-scaled.jpg?ssl=1\" alt=\"\" class=\"wp-image-20911\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">This post recaps how the WordPress project&#8217;s five Global Partners — Jetpack, WordPress.com, WooCommerce, Bluehost, and Hostinger — supported community events during the first half of 2026. Across more than a dozen regional <a href=\"https://events.wordpress.org/novisad/2026/developer-day/\">the first WordPress Developers Day</a>, and a growing network of <a href=\"https://events.wordpress.org/campusconnect/\">WordPress Campus Connect</a> events, Global Partners staffed booths, sponsored sessions, and connected with developers, freelancers, students, and agency owners around the world.</p>\n\n\n\n<h2 class=\"wp-block-heading\">A global footprint</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The year began in January with <a href=\"https://nepal.wordcamp.org/2026\">WordCamp Nepal</a>, where Jetpack joined the community in Kathmandu. The momentum carried into India, where <a href=\"https://kolhapur.wordcamp.org/2026\">WordCamp Kolhapur</a> and, a week later, <a href=\"https://pune.wordcamp.org/2026\">WordCamp Pune</a> brought Global Partners face-to-face with a student-heavy audience of roughly 200-250 attendees. In Pune, a session on connecting WordPress with AI workflows drew a large crowd, and attendees were curious about WordPress.com plans, new AI features, and Automattic for Agencies.&nbsp;</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1206\" height=\"675\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/img_1932.jpg?resize=1206%2C675&#038;ssl=1\" alt=\"\" class=\"wp-image-20920\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/img_1932.jpg?w=1206&amp;ssl=1 1206w, https://i0.wp.com/wordpress.org/news/files/2026/06/img_1932.jpg?resize=300%2C168&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/img_1932.jpg?resize=766%2C429&amp;ssl=1 766w, https://i0.wp.com/wordpress.org/news/files/2026/06/img_1932.jpg?resize=1024%2C573&amp;ssl=1 1024w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">In February, Jetpack traveled to <a href=\"https://portharcourt.wordcamp.org/2026\">WordCamp Port Harcourt</a> in Nigeria, an inclusive and well-organized event with 256 attendees that featured talks on inclusion and accessibility. Locally produced swag was a standout success there, a reminder that the WordPress community&#8217;s reach extends well beyond Europe and North America.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Across Europe</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Spring brought a wave of European events. At <a href=\"https://madrid.wordcamp.org/2026\">WordCamp Madrid</a>, with 280 attendees, WordPress.com served as a Global Sponsor and ran a Wapuu treasure hunt that drew 97 participants.&nbsp;</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/55230328181_175ece15a5_o-scaled.jpg?ssl=1\" alt=\"\" class=\"wp-image-20921\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Down the coast in France, <a href=\"https://nice.wordcamp.org/2026\">WordCamp Nice</a> gave Jetpack a chance to connect with 247 freelancers and developers, an audience that appreciated concrete, easy-to-explain solutions and asked questions about newsletters, security, and Jetpack&#8217;s broader feature set.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://vienna.wordcamp.org/2026\">WordCamp Vienna</a> stood out for its developer-heavy crowd of 277. From a Jetpack-branded booth staffed on both days, the team engaged with agencies and merchants, fielded numerous questions about WooCommerce and security, and booked 8 agency meetings. Many builders were interested to learn that Automattic stands behind both WordPress.com and WooCommerce. In Italy and Germany, <a href=\"https://torino.wordcamp.org/2026\">WordCamp Torino</a> and <a href=\"https://leipzig.wordcamp.org/2026\">WordCamp Leipzig</a> both reflected growing curiosity about AI, a theme that resurfaced throughout the year. At Leipzig, with 109 agencies, hosting companies, and freelancers in attendance, WordPress.com staffed a booth where tote bags were in high demand, while conversations kept returning to AI and WordPress Studio.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://slovenia.wordcamp.org/2026\">WordCamp Slovenia </a>and <a href=\"https://portugal.wordcamp.org/2026\">WordCamp Portugal</a> closed the European stretch. WordPress.com brought a booth to Ljubljana, and in Porto, it appeared with both a booth and logo presence alongside WooCommerce, which suited an event filled with e-commerce builders and Woo payment providers. The first WordPress Developers Day in Novi Sad introduced a new format, with Jetpack as a global sponsor and nearly 30 in-depth conversations on Jetpack, WooCommerce, performance, and the realities of client work.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Community in Uganda</h2>\n\n\n\n<p class=\"wp-block-paragraph\">In May, <a href=\"https://kampala.wordcamp.org/2026\">WordCamp Kampala</a> brought four Global Partners onto the sponsor roster: Jetpack, WooCommerce, Bluehost, and WordPress.com. The event, themed &#8220;Tech for Social Good,&#8221; welcomed more than 200 attendees and reflected the energy of a fast-growing local community.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Support from Global Sponsors</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Behind every one of these events is a layer of support that does not always appear at a booth. In 2026, Bluehost and Hostinger both joined the <a href=\"https://events.wordpress.org/sponsor/\">WordPress community sponsorship program</a> as top-tier Global Sponsors, alongside Jetpack and WordPress.com. Their contributions help underwrite the global WordCamp program and the community events that make a year like this possible. That program-level backing is what allows organizers in Kathmandu, Porto, and Kampala to bring their events to life, and the WordPress community is grateful to every partner that invests at that scale.<br></p>\n\n\n\n<h2 class=\"wp-block-heading\">Campus Connect reaches 6,200 students</h2>\n\n\n\n<p class=\"wp-block-paragraph\">One of the most notable stories of 2026 is not a WordCamp at all. It is <a href=\"https://events.wordpress.org/campusconnect/\">WordPress Campus Connect</a>. As of early June, the program has passed 6,200 students, with 25 events completed in 2026, 45 events all-time, and 42 more in planning or already scheduled. WordPress.com has played a direct support role throughout, including providing hosting for WordPress Campus Connect events around the world.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The connective tissue between these events and the broader community is real. An organizer first met at WordCamp Mukono went on to help lead WordPress Campus Connect work in Uganda. A student who built her first WordPress site at a WordPress Campus Connect event later attended a WordCamp. These events serve as a pathway for the next generation of WordPress contributors, builders, and professionals.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Looking ahead</h2>\n\n\n\n<p class=\"wp-block-paragraph\">If 2026 has shown anything, it is that interest in WordPress, and in the tools and services that Global Partners provide, continues to grow around the world. The questions being asked at booths and in sessions are sharper, the audiences more diverse, and the community&#8217;s reach more genuinely global. Thank you to Jetpack, WordPress.com, WooCommerce, Bluehost, and Hostinger for being part of that story this year, and to every organizer, volunteer, speaker, and attendee who made these events possible.</p>\n\n\n\n<p class=\"wp-block-paragraph\">To find an upcoming event near you, visit <a href=\"https://central.wordcamp.org\">WordCamp Central</a>. To learn how organizations can support the WordPress project, see the <a href=\"https://events.wordpress.org/sponsor/\">community sponsorship program</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"20910\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:66:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"What Happened at WordCamp Europe 2026\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/news/2026/06/wceu-2026-recap/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 06 Jun 2026 17:44:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"WordCamp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:4:\"WCEU\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=20793\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:249:\"WordCamp Europe 2026 brought the WordPress community to Kraków for three days of contribution and conversation, from CERN going live on WordPress to WordPress 7.0, AI, and a closing fireside chat on where the project goes next. Read the full recap.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Nicholas Garofalo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:72610:\"\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"2560\" height=\"1440\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-01.08.10-1-scaled-edited.jpeg?resize=2560%2C1440&#038;ssl=1\" alt=\"\" class=\"wp-image-20801\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-01.08.10-1-scaled-edited.jpeg?w=2560&amp;ssl=1 2560w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-01.08.10-1-scaled-edited.jpeg?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-01.08.10-1-scaled-edited.jpeg?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-01.08.10-1-scaled-edited.jpeg?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-01.08.10-1-scaled-edited.jpeg?resize=1536%2C864&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-01.08.10-1-scaled-edited.jpeg?resize=2048%2C1152&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<div class=\"wp-block-group is-horizontal is-content-justification-left is-nowrap is-layout-flex wp-container-core-group-is-layout-e8523bbf wp-block-group-is-layout-flex\">\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"386\" height=\"501\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/Witold-wapuu-wceu-2026.jpg?resize=386%2C501&#038;ssl=1\" alt=\"\" class=\"wp-image-20863\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/Witold-wapuu-wceu-2026.jpg?w=386&amp;ssl=1 386w, https://i0.wp.com/wordpress.org/news/files/2026/06/Witold-wapuu-wceu-2026.jpg?resize=231%2C300&amp;ssl=1 231w\" sizes=\"auto, (max-width: 386px) 100vw, 386px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamp Europe, <a href=\"https://europe.wordcamp.org/2026/\">the biggest WordPress conference in Europe</a>, spent the first week of June in Kraków. The 2026 edition of this event filled the ICE Kraków Congress Centre from June 4 to 6, drawing 2,458 ticket holders from 81 countries to the south of Poland. Close to a quarter of them were attending their first WordCamp Europe.</p>\n</div>\n\n\n\n<p class=\"wp-block-paragraph\">The city made it easy to settle in. Every attendee&#8217;s badge carried a transport hologram good for unlimited trams and buses. The Main Market Square, the largest in Europe, sat a short ride away, and the local food ran the gamut from pierogi to żurek soup to obwarzanek pretzels sold off the street.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">Kraków is beautiful, with history everywhere.<br><em>&#8211; Sebastian Miśniakiewicz, local team lead</em></p>\n</blockquote>\n\n\n\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-7387b849 wp-block-group-is-layout-flex\">\n<p class=\"wp-block-paragraph\">The program kept pace with the setting. Across multiple tracks, the schedule held 49 talks and eight hands-on workshops, grouped into themes that ran from core development and AI to business and the open web. Around them sat a full Contributor Day, a sponsor area, side events, on-site childcare, and an after-party the local team stretched to eight hours.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"474\" height=\"500\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/wandzia-wapuu-wceu-2026.jpg?resize=474%2C500&#038;ssl=1\" alt=\"\" class=\"wp-image-20864\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/wandzia-wapuu-wceu-2026.jpg?w=474&amp;ssl=1 474w, https://i0.wp.com/wordpress.org/news/files/2026/06/wandzia-wapuu-wceu-2026.jpg?resize=284%2C300&amp;ssl=1 284w\" sizes=\"auto, (max-width: 474px) 100vw, 474px\" /></figure>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">Contributor Day Opens the Week</h2>\n\n\n\n<p class=\"wp-block-paragraph\">As it does every year, the event began the day before the talks. Contributors filled the venue for Contributor Day, a working session where people work together to improve WordPress itself rather than watch a presentation about it. The morning started with registration and a welcome, the room split into teams, and a group photo broke up the work around midday. The afternoon ran a second working block before each team gathered to share what it had done.</p>\n\n\n\n<figure data-wp-context=\"{&quot;galleryId&quot;:&quot;6a5f8341bb292&quot;}\" data-wp-interactive=\"core/gallery\" class=\"wp-block-gallery has-nested-images columns-default is-cropped has-black-background-color has-background wp-block-gallery-3 is-layout-flex wp-container-core-gallery-is-layout-db4b8a9e wp-block-gallery-is-layout-flex\" style=\"border-width:20px;border-radius:2px\">\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a5f8341bb70b&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a5f8341bb70b\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20812\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-06.16.10.jpeg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-20812\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-06.16.10-scaled.jpeg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-06.16.10-scaled.jpeg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-06.16.10-scaled.jpeg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-06.16.10-scaled.jpeg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-06.16.10-scaled.jpeg?resize=2048%2C1366&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a5f8341bbc7f&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a5f8341bbc7f\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20806\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-02.48.24.jpeg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-20806\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-02.48.24-scaled.jpeg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-02.48.24-scaled.jpeg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-02.48.24-scaled.jpeg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-02.48.24-scaled.jpeg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-02.48.24-scaled.jpeg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a5f8341bc176&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a5f8341bc176\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20805\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-02.43.58.jpeg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-20805\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-02.43.58.jpeg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-02.43.58.jpeg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-02.43.58.jpeg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-02.43.58.jpeg?resize=1536%2C1025&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-02.43.58.jpeg?w=2048&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a5f8341bc6a8&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a5f8341bc6a8\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20807\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.15.18.jpeg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-20807\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.15.18-scaled.jpeg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.15.18-scaled.jpeg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.15.18-scaled.jpeg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.15.18-scaled.jpeg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.15.18-scaled.jpeg?resize=2048%2C1366&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a5f8341bcbea&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a5f8341bcbea\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20808\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.32.46.jpeg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-20808\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.32.46-scaled.jpeg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.32.46-scaled.jpeg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.32.46-scaled.jpeg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.32.46-scaled.jpeg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.32.46-scaled.jpeg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a5f8341bd151&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a5f8341bd151\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20809\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.32.47.jpeg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-20809\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.32.47-scaled.jpeg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.32.47-scaled.jpeg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.32.47-scaled.jpeg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.32.47-scaled.jpeg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.32.47-scaled.jpeg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a5f8341bd6c7&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a5f8341bd6c7\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20810\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-04.00.15.jpeg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-20810\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-04.00.15-scaled.jpeg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-04.00.15-scaled.jpeg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-04.00.15-scaled.jpeg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-04.00.15-scaled.jpeg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-04.00.15-scaled.jpeg?resize=2048%2C1366&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a5f8341bdc16&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a5f8341bdc16\" class=\"wp-block-image size-full wp-lightbox-container\"><img data-recalc-dims=\"1\" decoding=\"async\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20813\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-06.25.24-1-scaled.jpeg?ssl=1\" alt=\"\" class=\"wp-image-20813\" style=\"aspect-ratio:1\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a5f8341be145&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a5f8341be145\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20811\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-04.31.29.jpeg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-20811\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-04.31.29-scaled.jpeg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-04.31.29-scaled.jpeg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-04.31.29-scaled.jpeg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-04.31.29-scaled.jpeg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-04.31.29-scaled.jpeg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n</figure>\n\n\n\n<p class=\"wp-block-paragraph\">The range of tables is the clearest picture of how wide the project has become. Newcomers could sit down with Polyglots to translate WordPress into their own language, with Documentation to fix the pages people reach when they get stuck, or with Support to answer questions in the forums. More technical tables covered Core, Performance, Testing, Themes, and the Plugins team, whose reviewers screen every plugin submitted to the directory.</p>\n\n\n\n<p class=\"wp-block-paragraph\">First-timers were not left to find their own way. The day was built around onboarding tables, named table leads, and mentors, with an open invitation for experienced contributors to adopt a newcomer and walk them through their first patch, string, or ticket.</p>\n\n\n\n<p class=\"wp-block-paragraph\">People who could not travel to Kraków were welcomed to join remotely through the #contributor-day channel in the <a href=\"https://make.wordpress.org/\">Make WordPress Slack</a>, so distance was not a reason to sit the day out.</p>\n\n\n\n<h2 class=\"wp-block-heading\">The Birthplace of the Web</h2>\n\n\n\n<p class=\"wp-block-paragraph\">It was fitting that the opening keynote came from CERN. The European Laboratory for Particle Physics, on the French-Swiss border outside Geneva, is where the World Wide Web was invented more than 30 years ago, and <a href=\"https://profiles.wordpress.org/joachimv\">Joachim Valdemar Yde</a>, who has managed CERN&#8217;s web team since 2021, came to explain why the laboratory had chosen WordPress to carry its web presence forward.</p>\n\n\n\n<div class=\"wp-block-group has-black-background-color has-background is-layout-constrained wp-container-core-group-is-layout-ef2f134e wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--10);padding-right:var(--wp--preset--spacing--10);padding-bottom:var(--wp--preset--spacing--10);padding-left:var(--wp--preset--spacing--10)\">\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/712t_Kjbj3I?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&#038;listType=playlist&#038;list=PL1pJFUVKQ7ET_os7azDwYFsUDoc0Y9plA\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox\"></iframe>\n</div></figure>\n</div>\n\n\n\n<p class=\"wp-block-paragraph\">Yde and <a href=\"https://profiles.wordpress.org/franciscobbarros\">Francisco Borges Aurindo Barros</a>, who leads CERN&#8217;s WordPress infrastructure, framed the move as a chance to give a web presence built up over three decades a shared, modern foundation. After evaluating several leading content management systems against CERN&#8217;s needs, WordPress came out on top.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Barros walked through what they had built. The guiding idea is that people at CERN focus on their content while the web team looks after the platform underneath. A self-service portal lets anyone request a site in a few clicks. Behind it, a shared distribution supplies a common theme and a set of approved, security-hardened plugins, and an in-house tool provisions each new site on Kubernetes in about a minute. In its first year, the platform has already set up hundreds of sites.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Moving years of existing content onto the new platform is the other half of the work, and the team automated it: a single command lifts each site&#8217;s pages, headings, and images and rebuilds them as Gutenberg blocks, with no downtime. They plan to open source the tool.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Then Yde delivered the line that the room had been waiting for.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">As of today, our main flagship website, home.cern, is now served on WordPress. It&#8217;s been automatically migrated, and it&#8217;s live.<br><br><em>&#8211; Joachim Valdemar Yde, Web Manager, CERN</em></p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">The rollout is on track to wrap up over the coming months, and early impressions, Yde said, have been overwhelmingly positive, with easy wins in responsiveness and accessibility. For those at the event, the keynote pointed the room toward <a href=\"https://youtu.be/f09yvh3mnME\">a later talk by CERN&#8217;s Akanksha Chatterjee</a> on building and maintaining the laboratory&#8217;s engineering websites on the same service.</p>\n\n\n\n<p class=\"wp-block-paragraph\">There is a neat symmetry to it. The institution that published the world&#8217;s first website now runs on the software that powers more than 40% of today&#8217;s web, licensed under the GPL and maintained by the people in the room.</p>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 7.0 and AI</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.0 was a throughline of the conference. Several sessions placed the release at the center, framing it less as a routine update than as a change in what the software is, and in what it makes possible for the people who build with it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The anchor for that conversation was a panel called &#8220;Inside WordPress 7.0.&#8221; It gathered contributors who worked on the release, among them <a href=\"https://profiles.wordpress.org/juanmaguitar\">Juan Manuel Garrido</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/benjamin_zekavica\">Benjamin Zekavica</a>, <a href=\"https://profiles.wordpress.org/mikachan\">Sarah Norris</a>, and <a href=\"https://profiles.wordpress.org/milana_cap\">Milana Cap</a>. It was framed around more than a feature list, setting out to cover how a release of this size actually comes together: the contribution workflows, the coordination, and the human aspects of shipping software in the open.</p>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a5f8341bf097&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a5f8341bf097\" class=\"wp-block-image size-full wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1264\" height=\"843\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/wordpress-news-6a2425b8ceabf.png?resize=1264%2C843&#038;ssl=1\" alt=\"Photo of the stage for the panel inside WordPress 7.0\" class=\"wp-image-20878\" title=\"Panel: Inside WordPress 7.0\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/wordpress-news-6a2425b8ceabf.png?w=1264&amp;ssl=1 1264w, https://i0.wp.com/wordpress.org/news/files/2026/06/wordpress-news-6a2425b8ceabf.png?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/wordpress-news-6a2425b8ceabf.png?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/wordpress-news-6a2425b8ceabf.png?resize=768%2C512&amp;ssl=1 768w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<p class=\"wp-block-paragraph\">What gives this release its weight is the work moving into WordPress&#8217;s core: a native AI client, a new Abilities API that lets plugins declare what they can do in a way other tools can discover, and a Connectors screen for wiring up providers such as OpenAI, Anthropic, or Google Gemini. The argument running through the AI sessions was that this belongs to everyone who builds on WordPress, not only to developers shipping their own integrations. Speakers got specific about how to put that to work.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://profiles.wordpress.org/anukasha\">Anukasha Singh</a> focused on how the Abilities API can make plugin permissions cleaner and safer than the capability checks developers have leaned on for years.</li>\n\n\n\n<li>In a workshop, <a href=\"https://profiles.wordpress.org/wpfeedback\">Vito Peleg</a> set out to take builders from one-off prompts toward a tool-using workflow that audits a live site and files structured tickets.</li>\n\n\n\n<li><a href=\"https://profiles.wordpress.org/schlessera\">Alain Schlesser</a>, a WP-CLI maintainer who has worked on structured data and the AI-native web, turned to a fast-growing opportunity. AI assistants and search now send real traffic to the open web, with more than a billion referral visits logged by the middle of 2025. His session framed WordPress as well-placed to earn that attention, with a practical checklist for getting a site ready to be found, read, and cited.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">People stayed at the center of the conversation, too. <a href=\"https://profiles.wordpress.org/karmatosed\">Tammie Lister</a>, in a talk called &#8220;Human in the loop means something,&#8221; framed the phrase as a real commitment rather than a checkbox. Humans and AI are each good at different things, and the products worth building let each do what it does best.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Development and Craft</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The development sessions were where the craft lived. <a href=\"https://profiles.wordpress.org/dmsnell\">Dennis Snell</a>, who co-wrote the HTML API and designed the block parser, devoted a deep-dive workshop to that API. <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, a long-time Core committer on the Performance team, focused on how the WP_Query class has been made faster through better caching, and how site builders can take advantage of that at scale.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Scaling got a hands-on session of its own. One talk set out to see how far a WordPress site can run on a twelve-dollar virtual server, profiling it under load in Grafana and tuning away the bottlenecks, with a GitHub repository so attendees could follow along at home. <a href=\"https://profiles.wordpress.org/fellyph\">Fellyph Cintra</a> focused on the latest in <a href=\"https://playground.wordpress.net/\">WordPress Playground</a>, the browser-based tooling and architectural changes that the project credits with a real speed-up.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://profiles.wordpress.org/luminuu\">Jessica Lyschik</a>, a Core contributor and former default-theme co-lead, set out to make the case that accessibility-ready requirements are far easier to meet than most theme developers assume, drawing on real reviews of both block and classic themes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Two members of the Plugins team, <a href=\"https://profiles.wordpress.org/davidperez\">David Perez</a> and <a href=\"https://profiles.wordpress.org/frantorres\">Fran Torres</a>, framed their session as a practical clinic. Between them, they have reviewed more than 25,000 plugins, and they set out to name the common, avoidable issues that keep good plugins stuck in the review queue. For a first-time author, that is the difference between an afternoon and a month of waiting.</p>\n\n\n\n<h2 class=\"wp-block-heading\">The Business of WordPress and the Open Web</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The business and community sessions pulled the lens back to people, with a refreshingly unsentimental view of running a WordPress business. <a href=\"https://profiles.wordpress.org/deltacx\">Debbie Levitt</a> built her talk around a model for finding product-market fit at three levels at once, on the premise that teams celebrate one good metric and then wonder months later where their users went. <a href=\"https://profiles.wordpress.org/vasvalch\">Vassilena Valchanova</a> took on a quieter problem: being good at the work is not the same as anyone knowing you are.</p>\n\n\n\n<p class=\"wp-block-paragraph\">There was a local thread here as well. <a href=\"https://profiles.wordpress.org/irsilviana\">Irfani Silviana</a>, a full-stack developer at a Kraków-based agency, framed the Business Model Canvas as a translation layer that moves developers from shipping features to engineering business value, a fitting talk to give in her own city.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">The web&#8217;s standards, the argument goes, remain as open as the day Tim Berners-Lee created them at CERN.</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">That idea carried through the rest of the community sessions. </p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://profiles.wordpress.org/wdavidsnead\">David Snead</a>, an attorney who works with internet infrastructure providers, set out to explain how hosts, registrars, and registries coordinate against abuse through shared, real-time intelligence, on the logic that a threat to one WordPress host is a threat to all of them.</li>\n\n\n\n<li><a href=\"https://profiles.wordpress.org/mbootsman\">Marcel Bootsman</a> shared a practical playbook for how companies and individuals can support open source sustainably and look after the people who keep it going.</li>\n\n\n\n<li><a href=\"https://profiles.wordpress.org/karinchristen\">Karin Christen</a> set out to describe how her Swiss agency turned <a href=\"https://wordpress.org/five-for-the-future/\">Five for the Future</a> from a good intention into a standing team habit through internal contributor days.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">Running alongside the talks, the hands-on workshops were a chance to build something on the spot. In one, <a href=\"https://profiles.wordpress.org/welcher\">Ryan Welcher</a> set out to build a touch-enabled gallery slider with the Interactivity API, while another centered on Full Site Editing, with a working portfolio theme attendees could reuse on their next client project. These were laptop-open, leave-with-working-code sessions.</p>\n\n\n\n<figure data-wp-context=\"{&quot;galleryId&quot;:&quot;6a5f8341bfd49&quot;}\" data-wp-interactive=\"core/gallery\" class=\"wp-block-gallery has-nested-images columns-4 is-cropped has-black-background-color has-background wp-block-gallery-4 is-layout-flex wp-container-core-gallery-is-layout-db4b8a9e wp-block-gallery-is-layout-flex\" style=\"border-width:20px;border-radius:2px\">\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a5f8341c0301&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a5f8341c0301\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20849\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/55316270345_085d4eb772_k.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-20849\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/55316270345_085d4eb772_k.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/55316270345_085d4eb772_k.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/55316270345_085d4eb772_k.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/55316270345_085d4eb772_k.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/55316270345_085d4eb772_k.jpg?w=2048&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a5f8341c0a4b&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a5f8341c0a4b\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20850\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/55317280236_97760333e1_k.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-20850\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/55317280236_97760333e1_k.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/55317280236_97760333e1_k.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/55317280236_97760333e1_k.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/55317280236_97760333e1_k.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/55317280236_97760333e1_k.jpg?w=2048&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n</figure>\n\n\n\n<h2 class=\"wp-block-heading\">Closing Fireside Chat</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The closing session opened with a warm gesture from Kraków University of Technology. Representatives took the stage to thank the organizers and the community and to present <a href=\"https://profiles.wordpress.org/4thhubbard\">Mary Hubbard</a>, the Executive Director of WordPress, with a gift from their faculty of informatics and mathematics. They described what the university and the WordCamp community share: a love of learning and sharing knowledge, and an openness to new ideas, skills, and connections.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Hubbard used the moment to share some news. Starting in October, the university will open a WordPress-specific course, which she called a trail-blazing event for Poland and for WordPress. Earlier that day, the program&#8217;s first cohort, around 20 students, had shown what they built, part of the <a href=\"https://wordpress.org/education/campus-connect/\">WordPress Campus Connect</a> and <a href=\"https://wordpress.org/education/credits/\">WordPress Credits</a> education work.</p>\n\n\n\n<figure data-wp-context=\"{&quot;galleryId&quot;:&quot;6a5f8341c10cb&quot;}\" data-wp-interactive=\"core/gallery\" class=\"wp-block-gallery has-nested-images columns-4 is-cropped has-black-background-color has-background wp-block-gallery-5 is-layout-flex wp-container-core-gallery-is-layout-db4b8a9e wp-block-gallery-is-layout-flex\" style=\"border-width:20px;border-radius:2px\">\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a5f8341c16bc&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a5f8341c16bc\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20888\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-06-at-10.26.32.jpeg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-20888\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-06-at-10.26.32-scaled.jpeg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-06-at-10.26.32-scaled.jpeg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-06-at-10.26.32-scaled.jpeg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-06-at-10.26.32-scaled.jpeg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-06-at-10.26.32-scaled.jpeg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a5f8341c1e0d&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a5f8341c1e0d\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20887\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-06-at-10.26.32-1.jpeg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-20887\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-06-at-10.26.32-1-scaled.jpeg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-06-at-10.26.32-1-scaled.jpeg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-06-at-10.26.32-1-scaled.jpeg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-06-at-10.26.32-1-scaled.jpeg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-06-at-10.26.32-1-scaled.jpeg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n</figure>\n\n\n\n<p class=\"wp-block-paragraph\">Hubbard then turned the stage into a conversation, inviting <a href=\"https://profiles.wordpress.org/matveb\">Matías Ventura</a>, the lead of the Gutenberg project, and <a href=\"https://profiles.wordpress.org/richtabor\">Rich Tabor</a>, a WordPress designer and developer, to talk through where WordPress is heading and how AI fits in. WordPress 7.0 had just launched with Ventura as its release lead, and he asked everyone who had contributed to it to stand for a round of applause.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Much of the chat explored the balance between building WordPress with AI, and building with AI on WordPress, without losing the human part. Ventura noted that WordPress&#8217;s long investment in its design system is paying off now that you can ask an AI to extend a menu or a control, and it reaches for the right components. He pointed to older primitives gaining new value, like <a href=\"https://wordpress.org/cli/\">WP-CLI</a>, which AI models use fluently, and to <a href=\"https://developer.wordpress.com/docs/developer-tools/studio/studio-code/\">Studio Code</a>, an open source, agent-based coding tool the team has been building for WordPress. Tabor showed how he now ships many small editor improvements by talking to an agent instead of typing code, and Ventura demoed desktop mode and open-canvas experiments that reimagine the admin.</p>\n\n\n\n<p class=\"wp-block-paragraph\">On open source and AI, Hubbard argued that open source is why WordPress has thrived, that the same values should shape AI, and that the community should be far more vocal about it. As she put it, &#8220;We should be talking about it, and we should be much louder about it.&#8221;</p>\n\n\n\n<div class=\"wp-block-group has-black-background-color has-background is-layout-constrained wp-container-core-group-is-layout-9c97b5da wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--10);padding-right:var(--wp--preset--spacing--10);padding-bottom:var(--wp--preset--spacing--10);padding-left:var(--wp--preset--spacing--10)\">\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/X4GG-sfH94M?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>\n</div></figure>\n</div>\n\n\n\n<p class=\"wp-block-paragraph\">Audience questions pushed on multilingual support, unsticking long-stalled tickets, and reaching a younger, more diverse community. On that last point, Hubbard came back to education, pointing to a <a href=\"https://wordpress.org/news/2026/02/ai-leaders-credential/\">US pilot of an AI literacy micro-credential</a> that uses WordPress as the playground, and made the case for it:</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">I think that focusing in on younger generations, and bringing them into the project in a healthy way, with the dynamic of education as well as mentorship, and how we can understand and learn from them, as well as mentor them and adopt them as contributors, is very important.<br><br><em>&#8211; Mary Hubbard, WordPress Executive Director</em></p>\n</blockquote>\n\n\n\n<h2 class=\"wp-block-heading\">Beyond the Talks</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamp is also about the corridor outside the talks, and Kraków gave people reason to roam. Between sessions, attendees moved through the sponsor area for product demos and conversations that often carried on over lunch.</p>\n\n\n\n<figure data-wp-context=\"{&quot;galleryId&quot;:&quot;6a5f8341c29b2&quot;}\" data-wp-interactive=\"core/gallery\" class=\"wp-block-gallery has-nested-images columns-3 is-cropped has-black-background-color has-background wp-block-gallery-6 is-layout-flex wp-container-core-gallery-is-layout-db4b8a9e wp-block-gallery-is-layout-flex\" style=\"border-width:20px;border-radius:2px\">\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a5f8341c2f84&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a5f8341c2f84\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20823\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.39.47.jpeg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-20823\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.39.47-scaled.jpeg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.39.47-scaled.jpeg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.39.47-scaled.jpeg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.39.47-scaled.jpeg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.39.47-scaled.jpeg?resize=2048%2C1366&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a5f8341c370e&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a5f8341c370e\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20828\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.49.48.jpeg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-20828\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.49.48-scaled.jpeg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.49.48-scaled.jpeg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.49.48-scaled.jpeg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.49.48-scaled.jpeg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.49.48-scaled.jpeg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a5f8341c3ea0&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a5f8341c3ea0\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20825\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.46.57.jpeg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-20825\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.46.57-scaled.jpeg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.46.57-scaled.jpeg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.46.57-scaled.jpeg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.46.57-scaled.jpeg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.46.57-scaled.jpeg?resize=2048%2C1366&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a5f8341c4661&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a5f8341c4661\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20824\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.39.48.jpeg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-20824\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.39.48-scaled.jpeg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.39.48-scaled.jpeg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.39.48-scaled.jpeg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.39.48-scaled.jpeg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.39.48-scaled.jpeg?resize=2048%2C1366&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a5f8341c4dd9&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a5f8341c4dd9\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20826\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-05.23.01.jpeg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-20826\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-05.23.01-scaled.jpeg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-05.23.01-scaled.jpeg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-05.23.01-scaled.jpeg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-05.23.01-scaled.jpeg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-05.23.01-scaled.jpeg?resize=2048%2C1366&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a5f8341c5548&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a5f8341c5548\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20827\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-04.35.58.jpeg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-20827\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-04.35.58-scaled.jpeg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-04.35.58-scaled.jpeg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-04.35.58-scaled.jpeg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-04.35.58-scaled.jpeg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-04.35.58-scaled.jpeg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n</figure>\n\n\n\n<p class=\"wp-block-paragraph\">The after-party was the not-so-subtle flourish of a local team that doubled the usual length to eight hours, with Polish food and dragon-and-floral swag that nodded to the Wawel Dragon of Kraków legend. The nearby artistic Kazimierz district kept the evening going, and the trams, as one organizer had promised, were still running reliably afterward.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What Comes Next</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamps run on people, and 2026 was no different. The organizing teams, the speakers, the sponsors who funded the venue and the meals, the local crew who sorted trams and pierogi, and the contributors who arrived a day early to work on the project all built this WCEU together. The people watching the <a href=\"https://www.youtube.com/playlist?list=PL1pJFUVKQ7ET_os7azDwYFsUDoc0Y9plA\">livestream</a> from outside Kraków were part of it as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">For anyone whose appetite was only sharpened by three days in Poland, the calendar already has the next stop. <a href=\"https://us.wordcamp.org/2026/\">WordCamp US 2026</a> (Phoenix, USA) runs August 16 to 19, with its own Contributor Day opening the week.</p>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border\"><a href=\"https://us.wordcamp.org/2026/\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"321\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser.png?resize=1024%2C321&#038;ssl=1\" alt=\"WordCamp US: Powered by WordPress, Driven by Community, August 16-19, 2026\" class=\"wp-image-20859\" style=\"border-style:none;border-width:0px;border-top-left-radius:2px;border-top-right-radius:2px;border-bottom-left-radius:2px;border-bottom-right-radius:2px;box-shadow:var(--wp--preset--shadow--natural)\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser-scaled.png?resize=1024%2C321&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser-scaled.png?resize=300%2C94&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser-scaled.png?resize=768%2C241&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser-scaled.png?resize=1536%2C482&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser-scaled.png?resize=2048%2C643&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></a></figure>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamp Europe will return next year (May 27-29, 2027) in Málaga, Spain.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-dots\" />\n\n\n\n<p class=\"wp-block-paragraph\"><em>Photography by the <a href=\"https://europe.wordcamp.org/2026/community/organisers/#photography-team\">WCEU 2026 photography team</a>. See the full galleries on <a href=\"https://www.flickr.com/photos/wceu/albums/\">Flickr</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"20793\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Protect The Shire\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://wordpress.org/news/2026/06/pts/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 05 Jun 2026 18:51:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Meta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=20783\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:353:\"tl;dr: Temporary 24-hour cooldown period for plugin/theme releases before auto-updates. AI can give defenders an edge. We want to secure all 78K plugins and themes on WordPress.org.&#160; One of the things we’ve always striven to do as the developers of WordPress is to work harder so you don’t have to; we take technology that’s complex [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:7910:\"\n<p class=\"wp-block-paragraph\"><strong>tl;dr:</strong> <em>Temporary 24-hour cooldown period for plugin/theme releases before auto-updates. AI can give defenders an edge. We want to secure all 78K plugins and themes on WordPress.org.&nbsp;</em></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"wp-block-paragraph\">One of the things we’ve always striven to do as the developers of WordPress is to work harder so you don’t have to; we take technology that’s complex or inaccessible and make it available to everyone, running in as many environments as possible. It’s the Open Source way.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Just last December there was a <a href=\"https://x.com/karpathy/status/2026731645169185220\">step-change in coding ability</a> that rocked many developers, and since April’s <a href=\"https://red.anthropic.com/2026/mythos-preview/\">reveal of Mythos</a>, security activity has kicked into high gear. A few days ago, <a href=\"https://chromereleases.googleblog.com/2026/06/stable-channel-update-for-desktop.html\">Chrome shipped a release with 429 security fixes</a>! The threats and opportunities of these new capabilities inspired us to kick off an initiative we call <strong>Protect The Shire</strong> (hat tip <a href=\"https://www.tolkiensociety.org/discover/biography/\">J. R. R. Tolkien</a>) with the aim of using our best minds and the infrastructure of WordPress.org to make all code in our directories and repositories as secure as possible.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Much of this work was and will remain behind the scenes, and we hope its success is defined mostly by what <em>doesn’t</em> happen. However, while we reckon with our newfound powers, we need to make space for review.</p>\n\n\n\n<h2 class=\"wp-block-heading\">To Update or Not</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress core updates go through multiple people and layers of review before they go out, a process we’ve polished to a high art in the 18 years since we <a href=\"https://wordpress.org/news/2008/12/coltrane/\">introduced one-click upgrades in 2.7 “Coltrane.”</a></p>\n\n\n\n<p class=\"wp-block-paragraph\">Core is solid, and I’m so proud that <a href=\"https://wordpress.org/about/stats/\">over 50% of all WordPress sites have upgraded to 7.0 within two weeks</a>! That’s the result of an unimaginable amount of work across thousands of hosts, developers, and teams across WordPress.org. We’ve pushed hard to make upgrades happen automagically, and as fast as possible.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We’re in a liminal period now, and I believe 2026 will be a year of tension between two approaches: updating as quickly as possible to stay secure, and holding back on updating to stay secure.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We’ve seen clever and dangerous supply chain attacks across the npm, PyPI, GitHub, and RubyGems ecosystems, and we even had our own mini-version with the <a href=\"https://anchor.host/someone-bought-30-wordpress-plugins-and-planted-a-backdoor-in-all-of-them/\">Essential Plugins debacle</a>, where good plugins were unknowingly sold to a new author who had malicious intent.</p>\n\n\n\n<p class=\"wp-block-paragraph\">How to balance security updates and <em>securing</em> updates?</p>\n\n\n\n<h2 class=\"wp-block-heading\">Mirkwood or the Wild West?</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Everyone knows the fun of WordPress is in its 78k+ plugins and themes. We have a rigorous, human-powered review process for <a href=\"https://make.wordpress.org/themes/handbook/review/\">theme</a> and <a href=\"https://developer.wordpress.org/plugins/wordpress-org/detailed-plugin-guidelines/\">plugin</a> submissions, but once you’re published in the directory, you’re on your own. Our update system currently distributes every plugin and theme release as soon as a developer presses the button. That’s what keeps the directory as robust as WordPress itself. There were over 3,000 commits to the plugin repository yesterday!&nbsp;</p>\n\n\n\n<p class=\"wp-block-paragraph\">For now, each new plugin release will wait up to 24 hours before being distributed through auto-updates. This will give everyone, including a <a href=\"https://wapuu.studio/wapuu/a-gandalf-wapuu-that-is-a-coding-wizard-302912b8/\">new Wapuu</a> we call Gandalf, a chance to review changes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I expect 24 hours could be reduced to minutes as the process evolves, but we’ll err on the side of caution while AI models are advancing so rapidly.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Our <a href=\"https://make.wordpress.org/plugins/\">plugin review team</a> seems superhuman, but still needs to sleep. But bots don’t, and a depth of review that seemed unimaginable before is now a matter of time and tokens.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The security capabilities of AI are going to make the world weird and take a lot of our focus in the next few months, but there’s a light at the end of the tunnel.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Our Shire Is Special</h2>\n\n\n\n<p class=\"wp-block-paragraph\">There’s no shortage of ways to find, install, and update plugins and themes for WordPress. For those who choose WordPress.org, though, we want to make sure that it feels safe and secure. That means staying strict about some things—like guidelines and Open Source licenses—while also remaining flexible enough to allow solo hackers, community projects, and for-profit commercial plugins and themes to thrive in our ecosystem.</p>\n\n\n\n<p class=\"wp-block-paragraph\">GitHub stars may get the hype, but if you add up all the numbers <a href=\"https://wordpress.org/plugins/\">in our plugin directory</a>, it’s over 400M installs. There are 78k+ extensions, many from solo devs, installed on over a million sites each! Now we need to learn from the best parts of GitHub and make that available to every developer on WordPress.org.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Just because WordPress plugins have a reputation for vulnerabilities is no reason not to aim for the same security and stability we’ve achieved in core. We’ve done the impossible a few times already in <a href=\"https://wordpress.org/book/table-of-contents/\">our journey from a b2/cafelog fork</a> to <a href=\"https://wordpress.org/showcase/\">where we are today</a>.&nbsp;</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Freedom and security are not zero-sum.</strong> With Open Source, we can show how security comes from transparency, not obscurity. Collaboration over competition. What we accomplish when we come together is nothing short of incredible. Success always attracts bad actors, but we grow stronger through every adversity.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The scale of WordPress can make some challenges seem too big to tackle, but given time, there is no problem that’s insurmountable. I’m reminded of the story behind the title of <a href=\"https://www.amazon.com/Bird-Some-Instructions-Writing-Life/dp/0385480016\">Anne Lamott’s book <em>Bird by Bird</em></a>:</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">Thirty years ago my older brother, who was ten years old at the time, was trying to get a report written on birds that he&#8217;d had three months to write, which was due the next day. We were out at our family cabin in Bolinas, and he was at the kitchen table close to tears, surrounded by binder paper and pencils and unopened books about birds, immobilized by the hugeness of the task ahead. Then my father sat down beside him, put his arm around my brother&#8217;s shoulder, and said, &#8220;Bird by bird, buddy. Just take it bird by bird.”</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">More to come, stay tuned. I wish everyone <a href=\"https://europe.wordcamp.org/2026/\">in Kraków at WordCamp Europe</a> the best and hope to see you soon!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"20783\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n	hourly	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n	1	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:12:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 21 Jul 2026 14:39:29 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:4:\"vary\";s:37:\"Accept-Encoding, accept, content-type\";s:25:\"strict-transport-security\";s:12:\"max-age=3600\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Tue, 21 Jul 2026 05:07:28 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:4:\"gzip\";s:7:\"alt-svc\";s:5:\"clear\";s:4:\"x-nc\";s:9:\"HIT dca 2\";}s:5:\"build\";i:1760658336;s:21:\"cache_expiration_time\";i:1784687969;s:23:\"__cache_expiration_time\";i:1784687969;}', 'off');
INSERT INTO `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(2701, '_site_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3', '1784687969', 'off'),
(2702, '_site_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3', '1784644769', 'off'),
(2703, '_site_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9', '1784687969', 'off');
INSERT INTO `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(2704, '_site_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9', 'a:6:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:112:\"\n	\n	\n	\n	\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"Open Channels FM: The Growth of Domain Names and the Future of AI in Internet Identity\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2557208\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://openchannels.fm/the-growth-of-domain-names-and-the-future-of-ai-in-internet-identity/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:223:\"This episode looks at the evolving online landscape, focusing on domain names, digital identity, and AI\'s influence. Key insights include rising domain registrations, AI in managing abuse, and the importance of open source.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 21 Jul 2026 13:41:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"Open Channels FM: Open Source and the Open Source Initiative\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2556849\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://openchannels.fm/open-source-and-the-open-source-initiative/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:346:\"People think Open Source is just about having access to the source code. Actually, there&#8217;s a much longer history behind it. Open Source existed before the term Open Source was even coined, back in the late 60s. Universities started giving away software like Unix for free under small licenses like BSD or MIT, coincidentally named [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 21 Jul 2026 12:15:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"WordCamp Central: WordCamp Rajshahi 2026: Celebrating Community, Learning, and Open Source\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://central.wordcamp.org/?p=15457333\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:112:\"https://central.wordcamp.org/news/2026/07/wordcamp-rajshahi-2026-celebrating-community-learning-and-open-source/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8004:\"<p class=\"wp-block-paragraph\">WordCamp Rajshahi 2026, held on July 2nd-3rd, 2026, at the Rajshahi University of Engineering &amp; Technology (RUET) Auditorium, brought together WordPress enthusiasts, developers, designers, business owners, students, and open-source contributors from across Bangladesh and beyond. As a non-profit, community-driven conference, the event demonstrated the strength of collaboration, knowledge sharing, and the spirit of open source.</p>\n\n\n\n<p class=\"wp-block-paragraph\">More than just a technology conference, WordCamp Rajshahi became a place where people connected, exchanged ideas, and inspired one another to contribute to the future of WordPress.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Sharing Knowledge That Matters</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The conference featured a diverse lineup of local and international speakers who shared practical experiences, real-world case studies, and emerging trends shaping the web today.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Artificial intelligence was one of the most discussed topics throughout the event. Sessions explored how AI is transforming the way developers and businesses work—from integrating AI into WordPress without writing code to building customer support agents, using modern Large Language Models (LLMs) for development, debugging applications, and improving everyday workflows.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Performance, architecture, and security also received significant attention. Speakers demonstrated advanced WordPress optimization techniques, object caching strategies, no-code animations using GSAP, methods for identifying system vulnerabilities, and practical approaches to cleaning malware-infected WordPress websites with AI.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Beyond technical sessions, the conference emphasized personal and professional growth. Attendees learned about building successful careers, transitioning from startups to multinational companies, product marketing, the realities of remote work, and maintaining mental well-being while working in the technology industry.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Contributor Day: Giving Back to WordPress</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Contributor Day, held on July 2, served as one of the most meaningful parts of the event.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Participants worked alongside experienced WordPress contributors and Table Leads to improve the WordPress project itself. Whether they contributed to Core, Accessibility, Themes, Plugins, Polyglots (translations), Education, or Photos, attendees experienced firsthand how community collaboration built the global WordPress ecosystem.</p>\n\n\n\n<p class=\"wp-block-paragraph\">For many first-time contributors, it was their first opportunity to make a direct contribution to one of the world&#8217;s largest open-source projects.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Campus Connect: Inspiring the Next Generation</h2>\n\n\n\n<p class=\"wp-block-paragraph\">One of the highlights of WordCamp Rajshahi 2026 was the <strong>Campus Connect</strong> initiative.</p>\n\n\n\n<p class=\"wp-block-paragraph\">To encourage student participation in open source, <strong>40 university students</strong> received <strong>complimentary tickets</strong> to attend the event. This initiative introduced young learners to the WordPress community, allowing them to interact with experienced professionals, attend technical sessions, and discover opportunities to contribute to open source.</p>\n\n\n\n<p class=\"wp-block-paragraph\">By investing in students today, the community hopes to cultivate the next generation of developers, designers, and contributors who will help shape the future of WordPress.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Sponsors Who Made It Possible</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamp events are made possible through the generous support of organizations that believe in strengthening the open-source ecosystem. Rather than simply sponsoring an event, these companies invest in community growth and knowledge sharing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">This year, the sponsorship tiers celebrated Rajshahi&#8217;s famous mango heritage.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Fazli Majesty (Platinum Sponsors)</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://webappick.com/\" rel=\"noopener\" target=\"_blank\">WebAppick</a>,</li>\n\n\n\n<li><a href=\"https://fluentcart.com/\" rel=\"noopener\" target=\"_blank\">FluentCart</a>,</li>\n\n\n\n<li><a href=\"https://xcloud.host/\" rel=\"noopener\" target=\"_blank\">xCloud</a>.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Himsagar Legacy (Gold Sponsor)</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://hosting.com/\" rel=\"noopener\" target=\"_blank\">Hosting.com</a></li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Amrapali Delight (Silver Sponsors)</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://paymentform.io/\" rel=\"noopener\" target=\"_blank\">PaymentForm.io</a></li>\n\n\n\n<li><a href=\"https://kirki.com/\" rel=\"noopener\" target=\"_blank\">Kirki</a></li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Community Sponsors</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://www.google.com/url?sa=E&amp;q=https%3A%2F%2Fcrowdzonebd.com%2F\" rel=\"noopener\" target=\"_blank\">Crowd Zone</a>,</li>\n\n\n\n<li><a href=\"https://exprovia.com/\" rel=\"noopener\" target=\"_blank\">Exprovia</a>,</li>\n\n\n\n<li>NT Tech Innovation,</li>\n\n\n\n<li><a href=\"https://padmazon.com.bd/\" rel=\"noopener\" target=\"_blank\">Padmazon Limited</a>,</li>\n\n\n\n<li><a href=\"https://shapedplugin.com/\" rel=\"noopener\" target=\"_blank\">ShapedPlugin</a>,</li>\n\n\n\n<li><a href=\"https://sigmative.com/\" rel=\"noopener\" target=\"_blank\">Sigmative</a>,</li>\n\n\n\n<li><a href=\"https://timetics.ai/\" rel=\"noopener\" target=\"_blank\">Timetics AI</a>,</li>\n\n\n\n<li><a href=\"https://wpbakery.com/\" rel=\"noopener\" target=\"_blank\">WPBakery</a>.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Official Partners</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>FM Networks (Internet Partner)</li>\n\n\n\n<li>TNR Soft (Payment Gateway Partner)</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">Their support enabled the community to deliver a world-class experience while keeping the event affordable and accessible.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Thank You to Everyone Behind the Scenes</h2>\n\n\n\n<p class=\"wp-block-paragraph\">An event of this scale is never the work of a single person.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Our sincere appreciation goes to every speaker and Contributor Day table lead who generously shared their knowledge and experience with the community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We are equally grateful to our organizers and volunteers. From sponsorship coordination, website management, registration, design, photography, audiovisual production, venue operations, food management, and attendee support, every team member played a vital role in ensuring the event ran smoothly.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Their dedication transformed months of planning into an unforgettable experience for every attendee.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Looking Ahead</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamp Rajshahi 2026 demonstrated what is possible when passionate volunteers, contributors, sponsors, and community members work toward a common goal.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The event was more than a conference—it was a celebration of learning, collaboration, and the open-source values that make WordPress one of the world&#8217;s most successful communities.</p>\n\n\n\n<p class=\"wp-block-paragraph\">As the community continues to grow, the relationships built, ideas shared, and contributions made during WordCamp Rajshahi 2026 will inspire future events and encourage even more people to participate in the global WordPress ecosystem.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Here&#8217;s to many more WordCamps, more contributors, and a stronger open-source community in Bangladesh and beyond.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 20 Jul 2026 19:05:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Nazmul Hosen\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"Gutenberg Times: #WCUS Schedule, iframed Post Editor, WooCommerce 11.0 and so much more — Weekend Edition 369\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=46063\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:115:\"https://gutenbergtimes.com/wcus-schedule-iframed-post-editor-woocommerce-11-0-and-so-much-more-weekend-edition-369/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:23671:\"<p class=\"wp-block-paragraph\">Hi there!</p>\n\n\n\n<p class=\"wp-block-paragraph\">What a week! WordPress 7.1 Beta 1 (and Beta 2) arrived with a huge array of updates. We&#8217;ll unpack them together over the next four weeks, right up to the final release on August 19, 2026.</p>\n\n\n\n<p class=\"wp-block-paragraph\">One thing shouldn&#8217;t wait, though: the security release WordPress 7.0.2. Go update your production sites now — this newsletter will still be here when you&#8217;re back. <img alt=\"😉\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f609.png\" style=\"height: 1em;\" /></p>\n\n\n\n<p class=\"wp-block-paragraph\">In this edition, you&#8217;ll also find the first speaker lineup for WordCamp US, a fourth page-builder migration story, WooCommerce 11.0 on the horizon, and plenty of block development goodness:  from iframed editors to on-brand maintenance pages.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Grab your favorite Saturday beverage and dig in.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Yours, <img alt=\"💕\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f495.png\" style=\"height: 1em;\" /><br /><em>Birgit</em></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<h2 class=\"wp-block-heading\"><strong>WordCamp US 2026: Four Tracks, Three Workshops, 33 Speakers</strong></h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://us.wordcamp.org/2026/announcing-our-first-round-of-speakers-2/\"><img alt=\"First speaker spotlight WordCamp US&gt; \" class=\"wp-image-46081\" height=\"343\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/07/Speakers-WordCamp-Us.png?resize=652%2C343&#038;ssl=1\" width=\"652\" /></a></figure>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>The first wave of WCUS 2026 speakers is live — and it reads like a who&#8217;s-who of WordPress in practice.</strong></p>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamp US just <a href=\"https://us.wordcamp.org/2026/speakers/\">published its opening lineup</a> for August 16–19 in Phoenix: 34 confirmed speakers so far, including <strong>K Adam White, Brian Coords, Jamie Marsland, Kathy Zant, Miriam Schwab, and Robert Abela</strong>, all experienced developers, educators, security specialists, community builders.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The program runs four tracks. </p>\n\n\n\n<ul class=\"wp-block-list has-small-font-size\">\n<li><strong>AI in Action</strong> leads with sessions on agentic workflows, AI search, and guardrails for AI-assisted development. </li>\n\n\n\n<li><strong>Honing Your Skills</strong> covers the practical side: maintenance, privacy compliance, creator commerce, security. </li>\n\n\n\n<li><strong>Technical WordPress</strong> digs into block migrations at scale, WP-CLI automation, and plugin pipelines. </li>\n\n\n\n<li><strong>Beginning WP101</strong> is the on-ramp for newcomers — or for clients you&#8217;re bringing along.</li>\n\n\n\n<li>Three <strong>hands-on workshop</strong>s round out the program, where you build something real in the room and leave with it.<br /></li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">The full session schedule isn&#8217;t out yet, but the speaker list alone is a useful signal. If someone on that page is a voice you follow, a tool you depend on, or a corner of WordPress you&#8217;re actively navigating, you now have a specific reason to be in the room.<br /><br /><img alt=\"🎟\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f39f.png\" style=\"height: 1em;\" /> <a href=\"https://us.wordcamp.org/2026/tickets\" rel=\"noopener\" target=\"_blank\">us.wordcamp.org/2026/tickets</a> — $100 General Admission · $750 Micro-Sponsor (includes listing on the sponsors page) <img alt=\"👥\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f465.png\" style=\"height: 1em;\" /> <a href=\"https://us.wordcamp.org/2026/speakers/\" rel=\"noopener\" target=\"_blank\">Full speaker list →</a></p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://wordpress.org/news/2026/07/wordpress-7-1-beta-1/\"><strong>WordPress 7.1 Beta </strong>1</a> was release on July 15, 2026.  is now available for testing. The release post offers instructions how to sent up a test side and shows an extensive list of new features. </p>\n\n\n\n<p class=\"wp-block-paragraph\">The security team released <a href=\"https://wordpress.org/news/2026/07/wordpress-7-0-2-release/\"><strong>WordPress 7.0.2</strong></a> with the urgent appeal to update right away. The security fixes were also backported in 6.9.5 and 6.8.6. </p>\n\n\n\n<p class=\"wp-block-paragraph\">The security fix was also included in <strong>WordPress 7.1 Beta 2</strong>, so testing sites are also protected during this release cycle. </p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Huzaifa Al Mesbah,</strong> from the Core Test team, published the accompanying <a href=\"https://make.wordpress.org/test/2026/07/15/help-test-wordpress-7-1/\"><strong>Help Test WordPress 7.1</strong></a> post. </p>\n\n\n\n<p class=\"wp-block-paragraph\">A few <strong>WordPress 7.1 Dev Notes</strong> are already available: </p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2026/07/13/consistent-navigation-in-wordpress-7-1-with-persistent-toolbar/\">Consistent navigation in WordPress 7.1 with persistent toolbar</a> </li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/07/07/the-classic-block-stays-in-the-inserter-for-wordpress-7-1/\">The Classic block stays in the inserter for WordPress 7.1</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<p class=\"wp-block-paragraph\"><img alt=\"🎙\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f399.png\" style=\"height: 1em;\" /> The latest episode is  <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-132/\">Gutenberg Changelog #132 – Proposals for Core, Calls for Testing, WordPress 7.1 and Gutenberg 23.4 and 23.5</a></p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-46077\" height=\"183\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/07/Screenshot-2026-07-10-at-10.56.17-edited-1.png?resize=652%2C183&#038;ssl=1\" width=\"652\" /></figure>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\n<figure class=\"wp-block-embed is-type-rich is-provider-pocket-casts wp-block-embed-pocket-casts\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div></div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p class=\"wp-block-paragraph\">In about 10 days, WooCommerce 11.0 release is schedule. Brain Coords has the skinny for you in <a href=\"https://developer.woocommerce.com/2026/07/13/woocommerce-11-0-pre-release/\"><strong>what&#8217;s coming for developers in WooCommerce</strong></a>. Performance leads the release with 28 PRs — product object caching becomes the default for new stores, speeding up variable products by 9–12%. You&#8217;ll also find email verification connecting guest orders to accounts, new phone validation hooks, video embeds in the block email editor, and the final removal of the Product Editor beta. The beta is ready for your testing now.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Jamie Marsland</strong> followed his instincts and build <a href=\"https://wordpress.org/plugins/jamies-front-end-editor-for-content-teams/\"><strong>Jamie&#8217;s Front-End Editor for Content Teams</strong></a>, a plugin that lets your editors click any paragraph or heading on the live page and start typing — no block editor required. With the latest updates, you can now edit text, links, buttons and images right on the live page. No wp-admin, no block editor, just click and change it in place.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Built on the Interactivity API with no build step, it preserves block markup on save, records edits as native block notes for an audit trail, and lets you restrict chosen roles to front-end-only editing. Let Marsland what you think. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://gutenbergtimes.com/roadmap-7-1-gutenberg-23-5-responsive-styling-migration-to-block-themes-weekend-edition-368/\">Last week</a>, I shared three migration stories from page builders to the Core block editor and block themes. Here&#8217;s a fourth perspective: The team at WP Expert, an Ottawa agency founded by <strong>Frederic Sune</strong>, put together a comprehensive post on <a href=\"https://wpexpert.ca/migrate-agency-gutenberg-success/\"><strong>migrating agency sites from page builders to Gutenberg</strong></a>, should you go on that journey, too. You&#8217;ll find the strategic arguments (better Core Web Vitals, smaller attack surface, less technical debt) alongside a practical playbook covering backups, staging, block theme selection, pattern development, and SEO safeguards. The post also explores what block-based architectures mean for an agency&#8217;s business model, from premium modernization packages to fewer layout-related support tickets. An FAQ rounds it out.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Brian Coords</strong> tackles a common WooCommerce pain point: <a href=\"https://www.briancoords.com/custom-product-templates-for-block-themes/\"><strong>custom product templates for block themes</strong></a>. He combines two core WordPress features — the plugin template registration API from 6.7 and the venerable <code>single_template_hierarchy</code> filter — to serve custom templates for product collections, like all products in a category. His example plugin falls back to your Single Product template unless you override it. Clone the repo and give it a try; custom Product fields are next on his list.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\">On the WordPress Developer Blog, <strong>Troy Chaplin </strong>shows you how to build <strong><a href=\"https://developer.wordpress.org/news/2026/07/on-brand-maintenance-mode-for-wordpress-block-themes/\">an on-brand maintenance mode for block themes</a>.</strong> You add one small hook to your theme&#8217;s <code>functions.php</code> once, then design and manage the maintenance page entirely in the Site Editor with full access to your Global Styles. Renaming or deleting the template toggles maintenance mode on and off, no code needed. An SEO-friendly variant adds 503 headers so crawlers know the downtime is temporary.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://developer.wordpress.org/news/2026/07/on-brand-maintenance-mode-for-wordpress-block-themes/\"><img alt=\"\" class=\"wp-image-46150\" height=\"345\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/07/maintenance-mode.png?resize=652%2C345&#038;ssl=1\" width=\"652\" /></a></figure>\n\n\n<div class=\"ng-block-92d4b2be3eea44b2 wp-block-newsletterglue-container ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div class=\"ng-block-vs ng-block-vs-1\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div><div><div class=\"ng-block-hs ng-block-hs-1\" height=\"0\" style=\"width: 0px;\"></div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 20px; padding-bottom: 20px; padding-left: 0px; padding-right: 0px; text-align: none; color: #666666; background-color: #fdfcea; border-radius: 12px;\"><div class=\"ng-block-16533dbe79790ef9 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p><strong> <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" rel=\"noreferrer noopener\" target=\"_blank\">&#8220;Keeping up with Gutenberg &#8211; Index 2026&#8221;</a> </strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2024 on. Updated by yours truly. </p></div></div></div></div>\n\n<div class=\"ng-block-5c23582b20f5bbca wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p>The previous years are also available: <br /><strong><strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\">2020</a> | <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2021/\">2021</a></strong> | <strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2022/\">2022</a></strong></strong> | <strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2023\">2023</a></strong> | <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2024/\"><strong>2024</strong></a> | <strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2025/\">2025</a></strong></p></div></div></div></div></div><div class=\"ng-block-hs ng-block-hs-2\" height=\"0\" style=\"width: 0px;\"></div></div><div><div class=\"ng-block-vs ng-block-vs-2\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div></div></div>\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools </h2>\n\n\n\n<p class=\"wp-block-paragraph\">On WP Mayor, <strong>Jean Galea </strong>untangles <strong><a href=\"https://wpmayor.com/wp-cli-vs-rest-api-vs-abilities-api/\">when to reach for WP-CLI, the REST API, or the Abilities API</a>.</strong> His mental model: they&#8217;re layers, not rivals. WP-CLI lives on the server for bulk work, REST serves off-server callers like headless front ends, and the Abilities API tells AI agents what they&#8217;re allowed to do, complete with schemas and permission checks. Galea also shares how his own sites lean on all three at once.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\">Get up to speed how to make your custom blocks plugin work in the iframed post editor, if you haven&#8217;t yet. After five years of ruminating and communicating the switch is coming to WordPress 7.1. In his post, <strong>Ryan Welcher</strong> explains <a href=\"https://gutenbergtimes.com/the-post-editor-is-going-full-iframe-what-block-developers-need-to-know-before-wordpress-7-1/\"><strong>why the post editor is going full iframe in WordPress 7.1</strong></a> and what that means for your custom blocks. You&#8217;ll find the fixes for the most common breakage — global <code>window</code> and <code>document</code> references, editor styles enqueued into the wrong document, stale admin-scoped CSS, and third-party libraries — plus a companion demo plugin with broken/fixed block pairs, Playground blueprints for testing both states, and a handy pre-flight checklist.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\">The video volunteers at WordCamp Portugal uploaded all recordings to WordPressTV and two of the talks caught my eye: </p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Imran Sayed</strong> walks you through <a href=\"https://wordpress.tv/2026/05/19/the-fastest-way-to-build-gutenberg-blocks-modern-tools-scripts-and-ai-2/\"><strong>the fastest way to build Gutenberg blocks with modern tools, scripts, and AI</strong></a>. If custom block development has felt complex or time-consuming, you&#8217;ll appreciate his focus on practical, real-world workflows you can adopt immediately — moving fast without over-engineering. The recording is available on WordPress.tv, and the presentation slides are linked below the video for easy reference.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Jorge Costa</strong> shows you how to use <a href=\"https://wordpress.tv/2026/05/19/ai-is-in-wordpress-core-heres-how-to-use-it/\">t<strong>he AI building blocks already shipped in WordPress core</strong></a> (the WP AI Client, the Abilities API, and the MCP adapter)  to bring AI-powered features into your own plugins, themes, and sites. He also tackles the bigger question: when agents can spin up entire projects on any stack, why is WordPress still the right bet? <a href=\"https://portugal.wordcamp.org/2026/files/2026/05/T1-12H30-jorge-slides_260516_095705.pdf\">Slides are linked</a> alongside the recording.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\">Check out the not so new any more <strong>Talk Devy to Me</strong> series on Ryan Welchers YouTube Channel! In the latest epsiode, <strong>Antonio Sejas</strong> <a href=\"https://www.youtube.com/watch?v=YZWwP1QHXKM\"><strong>demos Studio Code, the agentic AI assistant</strong></a> built into WordPress Studio&#8217;s desktop app and CLI. You can spin up sites, run performance audits, add content, and install plugins and themes through natural language conversation — all locally, so nothing you break goes public. Sejas explains how it works under the hood before building something live with the host. Studio Code is free while in beta, so now&#8217;s a good time to experiment. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\">If you rather want to read about the updates in WordPress Studio, <strong>Fredrik Rombach Ekelund</strong> shares <a href=\"https://wordpress.com/blog/2026/07/13/faster-wordpress-studio/\"><strong>three big updates to WordPress Studio</strong></a>: a new default Native PHP runtime makes your local sites load 30–50% faster while using a third of the memory, the Studio CLI now installs with one dependency-free command — no Node.js or npm required — and Claude Sonnet 5 is the new default model in Studio Code, improving multi-step work like tracing bugs across files. A Sandbox runtime remains available for testing untrusted code.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n<div class=\"ng-block-bfce9d71b02d37f6 wp-block-newsletterglue-container ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div class=\"ng-block-vs ng-block-vs-1\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div><div><div class=\"ng-block-hs ng-block-hs-1\" height=\"0\" style=\"width: 0px;\"></div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 20px; padding-bottom: 20px; padding-left: 0px; padding-right: 0px; text-align: none; color: #666666; background-color: #f8f8f8; border-radius: 8px;\"><div class=\"ng-block-9b16e00546981a78 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review.</p></div></div></div></div>\n\n<div class=\"ng-block-60b4e3b3f59c16cd wp-block-newsletterglue-image ng-block size-full is-resized\" width=\"100%\"><div><div><div align=\"center\" class=\"ng-block-td\" style=\"padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;\"><a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\"><img alt=\"\" class=\"wp-image-42874 ng-image\" height=\"45\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/02/Screenshot-2025-11-15-at-12.06.44.png?resize=196%2C45&#038;ssl=1\" style=\"border-style: none; border-color: transparent;\" width=\"196\" /></a></div></div></div></div>\n\n<div class=\"ng-block-bd2269028759f3e4 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p>Now also available via <a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\">WordPress Playground</a>. There is no need for a test site locally or on a server. Have you been using it? <a href=\"mailto:pauli@gutenbergtimes.com\">Email me </a>with your experience.</p></div></div></div></div></div><div class=\"ng-block-hs ng-block-hs-2\" height=\"0\" style=\"width: 0px;\"></div></div><div><div class=\"ng-block-vs ng-block-vs-2\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div></div></div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-center has-small-font-size wp-block-paragraph\"><em>Questions? Suggestions? Ideas? </em><br /><em>Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or</em><br /><em> send me a message on WordPress Slack or Twitter @bph</em>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"has-text-align-center has-small-font-size wp-block-paragraph\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, <br />send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n<div class=\"ng-block-c48aa05263c74928 wp-block-newsletterglue-separator ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"center\" class=\"ng-block-td\" style=\"padding-top: 20px; padding-bottom: 20px; padding-left: 20px; padding-right: 20px; color: #666666;\"><hr style=\"background-color: transparent; color: transparent; margin: 0; border: 0; border-top: 1px solid #666666; width: 560px; height: 0;\" /></div></div></div></div>\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\"><div class=\"ng-block-3e20170ece6dadf1 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 14px; font-family: Helvetica; line-height: 0.2; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p><strong>Featured Image: </strong></p></div></div></div></div></div>\n\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 18 Jul 2026 13:15:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Matt: Important Security Update\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=153595\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://ma.tt/2026/07/wp-security/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2168:\"<p class=\"wp-block-paragraph\"><a href=\"https://wordpress.org/news/2026/07/wordpress-7-0-2-release/\">WordPress 7.0.2</a> went out today with two important security updates. One is a type of pre-authorization RCE we (fortunately!) have only seen a few times in WordPress&#8217; 23-year history; the last, I believe, <a href=\"https://wordpress.org/documentation/wordpress-version/version-4-6-21/\">in the PHPMailer class five years ago</a>. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Major kudos to <a href=\"https://x.com/hash_kitten\">Adam Kues</a> of <a href=\"https://slcyber.io/\">Searchlight Cyber</a> for finding the batch REST API RCE, to TF1T, dtro, and haongo on the facilitated SQL injection! </p>\n\n\n\n<p class=\"wp-block-paragraph\">Thanks to <a href=\"https://en.wikipedia.org/wiki/Coordinated_vulnerability_disclosure\">responsible disclosure</a>, the WordPress.org Security team was able to coordinate with hosts and CDNs to mitigate the attack at the network layer. <em>Please upgrade anyway!</em> But it&#8217;s a huge relief to know the vast majority of WordPress sites were protected by <a href=\"https://en.wikipedia.org/wiki/Defense_in_depth_(computing)\">defense-in-depth</a> even before the updates went out. </p>\n\n\n\n<p class=\"wp-block-paragraph\">I really appreciate how people and organizations that otherwise might not be on the best of terms come together in times like this. (<a href=\"https://wordpress.org/news/2026/07/wordpress-7-0-2-release/\">Full credits in the release post</a>.) Everyone buries the hatchet to protect as many people as possible as quickly as possible.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I&#8217;ve said it before, I&#8217;ll say it again: security is going to be a big topic this year as the technology industry digests the incredible advances in AI models. It&#8217;s a good time to review your plans and processes, sweat the details, <a href=\"https://www.amazon.com/dp/1953953492\">invest in maintenance</a>, and <a href=\"https://en.wikipedia.org/wiki/System_Administrator_Appreciation_Day\">hug a sysadmin</a>. <img alt=\"🙂\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f642.png\" style=\"height: 1em;\" /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 18 Jul 2026 02:36:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"WordPress.org blog: WordPress 7.0.2 Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=21167\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/news/2026/07/wordpress-7-0-2-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4462:\"<h2 class=\"wp-block-heading\">WordPress 7.0.2 is now available.</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The 7.0.2 security release addresses one critical and one high severity security issue.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Because this is a security release, <strong>it is recommended that you update your sites immediately.</strong> Due to the severity, the WordPress.org team have enabled forced updates via the auto-update system for sites running affected versions.</p>\n\n\n\n<p class=\"wp-block-paragraph\">To manually update you can visit your WordPress Dashboard, click “Updates”, and then click “Update Now”, or you can <a href=\"https://wordpress.org/wordpress-7.0.2.zip\">download WordPress 7.0.2 from WordPress.org</a>. On sites that support automatic background updates, the update process will begin automatically.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Security updates included in this release</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The security team would like to thank the following people for responsibly <a href=\"https://hackerone.com/wordpress\">reporting</a> vulnerabilities and allowing them to be fixed in this release:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A facilitated SQL injection issue reported as a team by TF1T, dtro, and haongo </li>\n\n\n\n<li>A REST API batch-route confusion and SQL injection issue leading to Remote Code Execution reported by Adam Kues at <a href=\"https://slcyber.io\"><u>Assetnote / Searchlight Cyber</u></a></li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">For more information on this release, please visit the <a href=\"https://wordpress.org/documentation/wordpress-version/version-7-0-2/\">HelpHub site</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Backports</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>WordPress 6.9 is affected by both vulnerabilities. Version 6.9.5 has been released containing fixes for both.</li>\n\n\n\n<li>WordPress 6.8 is only affected by the first vulnerability. Version 6.8.6 has been released containing a fix.</li>\n\n\n\n<li>The beta release of WordPress 7.1 is affected by both vulnerabilities. Version 7.1 beta2 has been released containing fixes for both.</li>\n\n\n\n<li>Versions of WordPress prior to 6.8 are not affected.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">CVE and GHSA references</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/wordpress-develop/security/advisories/GHSA-fpp7-x2x2-2mjf\"><code>CVE-2026-60137</code> / <code>GHSA-fpp7-x2x2-2mjf</code></a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/wordpress-develop/security/advisories/GHSA-ff9f-jf42-662q\"><code>CVE-2026-63030</code> / <code>GHSA-ff9f-jf42-662q</code></a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you to these WordPress contributors</h2>\n\n\n\n<p class=\"wp-block-paragraph\">This release was led by <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a> and <a href=\"https://profiles.wordpress.org/barry/\">Barry Abrahamson</a>. In addition to the security researchers mentioned above, WordPress 7.0.2 would not have been possible without the significant contributions of the following people: <a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/annezazu\">annezazu</a>, <a href=\"https://profiles.wordpress.org/Barry\">Barry</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/ehtis\">Ehtisham Siddiqui</a>, <a href=\"https://profiles.wordpress.org/joedolson\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joehoyle\">Joe Hoyle</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/clorith\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/Matt\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/batmoo\">Mohammad Jangda</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/vortfu\">vortfu</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, plus representatives from Altis, Automattic, Bluehost, Cloudflare, GoDaddy, Hostinger, and WP Engine.</p>\n\n\n\n<p class=\"wp-block-paragraph\"></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Jul 2026 18:45:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"John Blackbourn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:110:\"Gutenberg Times: The post editor is going full iframe: what block developers need to know before WordPress 7.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=46095\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:120:\"https://gutenbergtimes.com/the-post-editor-is-going-full-iframe-what-block-developers-need-to-know-before-wordpress-7-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:55248:\"<p class=\"wp-block-paragraph\">For years, the post editor has lived a double life. The Site Editor renders your blocks inside an iframe. The post editor — where most people actually spend their time — renders them directly in the admin page. That split ends with WordPress 7.1: <strong>the post editor canvas will always be an iframe, on every theme, no matter what <code>apiVersion</code> your blocks declare</strong>. The Gutenberg plugin has been enforcing exactly this for months. If you ship blocks, assume the iframe.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If your block never touches the global <code>document</code> or <code>window</code>, you can probably stop reading after you&#8217;ve changed <code>\"apiVersion\": 2</code> to <code>\"apiVersion\": 3</code> in <code>block.json</code>. For everyone else — and especially anyone shipping blocks that wrap third-party libraries — the iframe changes <em>where your code runs</em> versus <em>where your markup lives</em>. That gap is where things break.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Quick reference guide</strong>: <strong>Are your blocks ready?</strong></p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"An infographic showing the checks and fixes for readying custom blocks for the WordPress 7.1 iframed editor\" class=\"wp-image-46098\" height=\"652\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/07/7.1-iframe-block-check.png?resize=652%2C652&#038;ssl=1\" width=\"652\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"timeline\">The timeline, in one table</h2>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Release</th><th>What happens</th></tr></thead><tbody><tr><td><strong>June 21, 2021</strong></td><td>The iframed editor was <a href=\"https://make.wordpress.org/core/2021/06/29/blocks-in-an-iframed-template-editor/\">announced on make.wordpress.org</a></td></tr><tr><td><strong>WordPress 6.9</strong> (Dec 2025)</td><td>Console warning (with <code>SCRIPT_DEBUG</code>) when a block registers with <code>apiVersion</code> 2 or lower. The <code>block.json</code> schema now only validates <code>apiVersion: 3</code>.</td></tr><tr><td><strong>WordPress 7.0</strong> (Apr 2026)</td><td>The iframe decision now looks at blocks <strong>actually inserted in the post</strong>, not every registered block. All inserted blocks on v3+ → canvas is iframed. Insert a single v1/v2 block → the iframe is removed on the fly. Nothing is enforced yet.<br /></td></tr><tr><td><strong>Gutenberg 22.6+</strong></td><td>The iframe is <strong>enforced regardless of theme</strong> — this is the feedback-gathering phase.</td></tr><tr><td><strong>WordPress 7.1</strong> (Aug 19, 2026)</td><td>The iframe is <strong>enforced on every theme</strong>, regardless of <code>apiVersion</code>. The conditions are gone, not tightened.</td></tr></tbody></table></figure>\n\n\n\n<p class=\"wp-block-paragraph\">The WordPress 7.0 change is subtle but important: before 7.0, one <code>apiVersion: 2</code> block <em>registered by any active plugin</em> — even one never used in the post — kept the entire editor out of the iframe for everyone. Now only inserted blocks count. Your v3 block gets the iframe until the user inserts a legacy one, at which point the editor quietly reloads the canvas without the iframe. The companion plugin ships a <code>legacy-api-v2</code> block so you can watch this happen — insert it into an otherwise-v3 post and the iframe disappears. In 7.1, that escape hatch closes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Worth knowing, as an aside: the &#8220;every theme&#8221; decision landed in <a href=\"https://wordpress.org/news/2026/07/wordpress-7-1-beta-1/\" rel=\"noopener\" target=\"_blank\">WordPress 7.1 Beta 1</a>, and it&#8217;s deliberately being tested in public. Gutenberg merged <a href=\"https://github.com/WordPress/gutenberg/pull/74042\" rel=\"noopener\" target=\"_blank\">&#8220;Post editor: always iframe&#8221; (#74042)</a> on July 10, 2026, deleting the theme and <code>apiVersion</code> conditions outright. The 7.1 release lead signed off on that merge <a href=\"https://github.com/WordPress/gutenberg/pull/74042#issuecomment-4878384706\" rel=\"noopener\" target=\"_blank\">on the condition</a> that the team could &#8220;move to the softer approach&#8221; if Beta 1 feedback surfaced real problems — the softer approach being enforcement on block themes only, with everything else staying on the 7.0 rules. No specific mechanism is committed to; the plan is to respond to what the beta actually turns up.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Which is a reason to test harder, not to wait and see. If that rollback happens, the iframed and non-iframed editors both stay in the wild <em>longer</em> — and your block has to work in both regardless of which way it goes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It&#8217;s also worth noting that blocks that will break with the 7.1 changes are most likely <strong>already breaking in the Site Editor</strong>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Why the iframe is a good thing</h2>\n\n\n\n<p class=\"wp-block-paragraph\">This isn&#8217;t change for change sake. Rendering the canvas in an iframe gives the editor a real document boundary:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Admin CSS stops leaking into your content.</strong> No more <code>#wpadminbar</code>-adjacent style resets, no more admin styles subtly changing how blocks render in the editor versus the front end.</li>\n\n\n\n<li><strong>Viewport units and media queries finally work.</strong> <code>vw</code>, <code>vh</code>, and <code>@media</code> rules resolve against the canvas, not the admin page — so tablet/mobile previews and zoomed-out views actually behave like the front end.</li>\n\n\n\n<li><strong>What you see is much closer to what you get.</strong> The canvas document is built from your theme&#8217;s styles, not the admin&#8217;s.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">The issue this raises for block developers? Your editor JavaScript runs in the admin page, but your block&#8217;s DOM lives in a different document. Every assumption baked into <code>document.querySelector(...)</code> and <code>window.addEventListener(...)</code> just became wrong.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What actually breaks (and how to fix it)</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Everything below is demonstrable with the companion plugin — each pattern ships as a broken/fixed pair of blocks: <strong><a href=\"https://github.com/ryanwelcher/iframe-editor-examples\" rel=\"noopener\" target=\"_blank\">iframe-editor-examples on GitHub</a></strong>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">1. Global <code>window</code> and <code>document</code> references</h3>\n\n\n\n<p class=\"wp-block-paragraph\">The classic: a block that reads the viewport or listens for resize.</p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro\"><span style=\"display: flex; padding: 10px 0px 0 16px; font-size: 0.8em; width: 100%; text-align: left; background-color: #1E1E1E; font-style: italic; color: #D4D4D4;\"><span>JavaScript</span></span><span class=\"code-block-pro-copy-button\" style=\"color: #D4D4D4; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">// <img alt=\"❌\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/274c.png\" style=\"height: 1em;\" /> Broken in the iframed editor\nuseEffect( () => {\n	const update = () => setWidth( window.innerWidth );\n	update();\n	window.addEventListener( \'resize\', update );\n	return () => window.removeEventListener( \'resize\', update );\n}, [] );</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki dark-plus\" style=\"background-color: #1E1E1E;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #6A9955;\">// &#x274c; Broken in the iframed editor</span></span>\n<span class=\"line\"><span style=\"color: #DCDCAA;\">useEffect</span><span style=\"color: #D4D4D4;\">( () </span><span style=\"color: #569CD6;\">=&gt;</span><span style=\"color: #D4D4D4;\"> {</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\">	</span><span style=\"color: #569CD6;\">const</span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #DCDCAA;\">update</span><span style=\"color: #D4D4D4;\"> = () </span><span style=\"color: #569CD6;\">=&gt;</span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #DCDCAA;\">setWidth</span><span style=\"color: #D4D4D4;\">( </span><span style=\"color: #9CDCFE;\">window</span><span style=\"color: #D4D4D4;\">.</span><span style=\"color: #9CDCFE;\">innerWidth</span><span style=\"color: #D4D4D4;\"> );</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\">	</span><span style=\"color: #DCDCAA;\">update</span><span style=\"color: #D4D4D4;\">();</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\">	</span><span style=\"color: #9CDCFE;\">window</span><span style=\"color: #D4D4D4;\">.</span><span style=\"color: #DCDCAA;\">addEventListener</span><span style=\"color: #D4D4D4;\">( </span><span style=\"color: #CE9178;\">\'resize\'</span><span style=\"color: #D4D4D4;\">, </span><span style=\"color: #9CDCFE;\">update</span><span style=\"color: #D4D4D4;\"> );</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\">	</span><span style=\"color: #C586C0;\">return</span><span style=\"color: #D4D4D4;\"> () </span><span style=\"color: #569CD6;\">=&gt;</span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #9CDCFE;\">window</span><span style=\"color: #D4D4D4;\">.</span><span style=\"color: #DCDCAA;\">removeEventListener</span><span style=\"color: #D4D4D4;\">( </span><span style=\"color: #CE9178;\">\'resize\'</span><span style=\"color: #D4D4D4;\">, </span><span style=\"color: #9CDCFE;\">update</span><span style=\"color: #D4D4D4;\"> );</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\">}, [] );</span></span></code></pre></div>\n\n\n\n<p class=\"wp-block-paragraph\">Editor scripts load in the admin page, so <code>window</code> is the <strong>admin</strong> window. In the iframed editor this reports the wrong width and never reacts to the canvas resizing — switch to the Tablet preview and the number doesn&#8217;t move.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The fix is to derive the document and window from your block&#8217;s own DOM element:</p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro\"><span style=\"display: flex; padding: 10px 0px 0 16px; font-size: 0.8em; width: 100%; text-align: left; background-color: #1E1E1E; font-style: italic; color: #D4D4D4;\"><span>JavaScript</span></span><span class=\"code-block-pro-copy-button\" style=\"color: #D4D4D4; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">// <img alt=\"✅\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/2705.png\" style=\"height: 1em;\" /> Fixed — works iframed or not\nimport { useRefEffect } from \'@wordpress/compose\';\n\nconst ref = useRefEffect( ( element ) => {\n	const { defaultView } = element.ownerDocument;\n	const update = () => setWidth( defaultView.innerWidth );\n	update();\n	defaultView.addEventListener( \'resize\', update );\n	return () => defaultView.removeEventListener( \'resize\', update );\n}, [] );\n\nconst blockProps = useBlockProps( { ref } );</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki dark-plus\" style=\"background-color: #1E1E1E;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #6A9955;\">// &#x2705; Fixed — works iframed or not</span></span>\n<span class=\"line\"><span style=\"color: #C586C0;\">import</span><span style=\"color: #D4D4D4;\"> { </span><span style=\"color: #9CDCFE;\">useRefEffect</span><span style=\"color: #D4D4D4;\"> } </span><span style=\"color: #C586C0;\">from</span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #CE9178;\">\'@wordpress/compose\'</span><span style=\"color: #D4D4D4;\">;</span></span>\n<span class=\"line\"></span>\n<span class=\"line\"><span style=\"color: #569CD6;\">const</span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #4FC1FF;\">ref</span><span style=\"color: #D4D4D4;\"> = </span><span style=\"color: #DCDCAA;\">useRefEffect</span><span style=\"color: #D4D4D4;\">( ( </span><span style=\"color: #9CDCFE;\">element</span><span style=\"color: #D4D4D4;\"> ) </span><span style=\"color: #569CD6;\">=&gt;</span><span style=\"color: #D4D4D4;\"> {</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\">	</span><span style=\"color: #569CD6;\">const</span><span style=\"color: #D4D4D4;\"> { </span><span style=\"color: #4FC1FF;\">defaultView</span><span style=\"color: #D4D4D4;\"> } = </span><span style=\"color: #9CDCFE;\">element</span><span style=\"color: #D4D4D4;\">.</span><span style=\"color: #9CDCFE;\">ownerDocument</span><span style=\"color: #D4D4D4;\">;</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\">	</span><span style=\"color: #569CD6;\">const</span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #DCDCAA;\">update</span><span style=\"color: #D4D4D4;\"> = () </span><span style=\"color: #569CD6;\">=&gt;</span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #DCDCAA;\">setWidth</span><span style=\"color: #D4D4D4;\">( </span><span style=\"color: #9CDCFE;\">defaultView</span><span style=\"color: #D4D4D4;\">.</span><span style=\"color: #9CDCFE;\">innerWidth</span><span style=\"color: #D4D4D4;\"> );</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\">	</span><span style=\"color: #DCDCAA;\">update</span><span style=\"color: #D4D4D4;\">();</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\">	</span><span style=\"color: #9CDCFE;\">defaultView</span><span style=\"color: #D4D4D4;\">.</span><span style=\"color: #DCDCAA;\">addEventListener</span><span style=\"color: #D4D4D4;\">( </span><span style=\"color: #CE9178;\">\'resize\'</span><span style=\"color: #D4D4D4;\">, </span><span style=\"color: #9CDCFE;\">update</span><span style=\"color: #D4D4D4;\"> );</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\">	</span><span style=\"color: #C586C0;\">return</span><span style=\"color: #D4D4D4;\"> () </span><span style=\"color: #569CD6;\">=&gt;</span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #9CDCFE;\">defaultView</span><span style=\"color: #D4D4D4;\">.</span><span style=\"color: #DCDCAA;\">removeEventListener</span><span style=\"color: #D4D4D4;\">( </span><span style=\"color: #CE9178;\">\'resize\'</span><span style=\"color: #D4D4D4;\">, </span><span style=\"color: #9CDCFE;\">update</span><span style=\"color: #D4D4D4;\"> );</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\">}, [] );</span></span>\n<span class=\"line\"></span>\n<span class=\"line\"><span style=\"color: #569CD6;\">const</span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #4FC1FF;\">blockProps</span><span style=\"color: #D4D4D4;\"> = </span><span style=\"color: #DCDCAA;\">useBlockProps</span><span style=\"color: #D4D4D4;\">( { </span><span style=\"color: #9CDCFE;\">ref</span><span style=\"color: #D4D4D4;\"> } );</span></span></code></pre></div>\n\n\n\n<p class=\"wp-block-paragraph\">Two things to notice:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>element.ownerDocument</code> is whatever document the block is rendered into — the iframe&#8217;s document when iframed, the admin document when not. <code>ownerDocument.defaultView</code> is that document&#8217;s window. Code written this way is <em>context-agnostic</em>: it doesn&#8217;t care whether the iframe exists.</li>\n\n\n\n<li><code>useRefEffect</code> (from <code>@wordpress/compose</code>) instead of <code>useRef</code> + <code>useEffect</code>: it re-runs the callback when the ref changes, so if the block ever moves between documents, your listeners re-attach to the right window.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">2. &#8220;Close on outside click&#8221; and other document-level events</h3>\n\n\n\n<p class=\"wp-block-paragraph\">This one is my favorite because it fails <em>weirdly</em>. A dropdown that closes when you click outside, implemented the way every React tutorial teaches it:</p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro\"><span style=\"display: flex; padding: 10px 0px 0 16px; font-size: 0.8em; width: 100%; text-align: left; background-color: #1E1E1E; font-style: italic; color: #D4D4D4;\"><span>JavaScript</span></span><span class=\"code-block-pro-copy-button\" style=\"color: #D4D4D4; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">// <img alt=\"❌\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/274c.png\" style=\"height: 1em;\" /> Broken in the iframed editor\nuseEffect( () => {\n	const closeOnOutsideClick = ( event ) => {\n		if ( ! containerRef.current.contains( event.target ) ) {\n			setIsOpen( false );\n		}\n	};\n	document.addEventListener( \'click\', closeOnOutsideClick );\n	return () => document.removeEventListener( \'click\', closeOnOutsideClick );\n}, [] );</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki dark-plus\" style=\"background-color: #1E1E1E;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #6A9955;\">// &#x274c; Broken in the iframed editor</span></span>\n<span class=\"line\"><span style=\"color: #DCDCAA;\">useEffect</span><span style=\"color: #D4D4D4;\">( () </span><span style=\"color: #569CD6;\">=&gt;</span><span style=\"color: #D4D4D4;\"> {</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\">	</span><span style=\"color: #569CD6;\">const</span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #DCDCAA;\">closeOnOutsideClick</span><span style=\"color: #D4D4D4;\"> = ( </span><span style=\"color: #9CDCFE;\">event</span><span style=\"color: #D4D4D4;\"> ) </span><span style=\"color: #569CD6;\">=&gt;</span><span style=\"color: #D4D4D4;\"> {</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\">		</span><span style=\"color: #C586C0;\">if</span><span style=\"color: #D4D4D4;\"> ( ! </span><span style=\"color: #9CDCFE;\">containerRef</span><span style=\"color: #D4D4D4;\">.</span><span style=\"color: #9CDCFE;\">current</span><span style=\"color: #D4D4D4;\">.</span><span style=\"color: #DCDCAA;\">contains</span><span style=\"color: #D4D4D4;\">( </span><span style=\"color: #9CDCFE;\">event</span><span style=\"color: #D4D4D4;\">.</span><span style=\"color: #9CDCFE;\">target</span><span style=\"color: #D4D4D4;\"> ) ) {</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\">			</span><span style=\"color: #DCDCAA;\">setIsOpen</span><span style=\"color: #D4D4D4;\">( </span><span style=\"color: #569CD6;\">false</span><span style=\"color: #D4D4D4;\"> );</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\">		}</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\">	};</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\">	</span><span style=\"color: #9CDCFE;\">document</span><span style=\"color: #D4D4D4;\">.</span><span style=\"color: #DCDCAA;\">addEventListener</span><span style=\"color: #D4D4D4;\">( </span><span style=\"color: #CE9178;\">\'click\'</span><span style=\"color: #D4D4D4;\">, </span><span style=\"color: #9CDCFE;\">closeOnOutsideClick</span><span style=\"color: #D4D4D4;\"> );</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\">	</span><span style=\"color: #C586C0;\">return</span><span style=\"color: #D4D4D4;\"> () </span><span style=\"color: #569CD6;\">=&gt;</span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #9CDCFE;\">document</span><span style=\"color: #D4D4D4;\">.</span><span style=\"color: #DCDCAA;\">removeEventListener</span><span style=\"color: #D4D4D4;\">( </span><span style=\"color: #CE9178;\">\'click\'</span><span style=\"color: #D4D4D4;\">, </span><span style=\"color: #9CDCFE;\">closeOnOutsideClick</span><span style=\"color: #D4D4D4;\"> );</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\">}, [] );</span></span></code></pre></div>\n\n\n\n<p class=\"wp-block-paragraph\">In the iframed editor, clicks inside the canvas happen in the <strong>iframe&#8217;s</strong> document. They never bubble to the admin document, so the listener never fires. The result: click another block in the canvas and the dropdown stays open — but click the admin sidebar and it closes. Same code, same block, works perfectly in the non-iframed editor. This is the kind of bug report you&#8217;ll get from users that &#8220;can&#8217;t be reproduced&#8221; — because whoever tested it happened to have a v2 block sitting in their post, which quietly dropped the iframe and made everything work.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Fix: same principle, attach to <code>element.ownerDocument</code> instead of <code>document</code> (<a href=\"https://github.com/ryanwelcher/iframe-editor-examples/blob/trunk/src/click-outside-fixed/edit.js#L32\">see the plugin for the full <code>useRefEffect</code> version</a>).</p>\n\n\n\n<h3 class=\"wp-block-heading\">3. Editor styles enqueued into the wrong document</h3>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;re styling your block&#8217;s editor experience with <code>enqueue_block_editor_assets</code>, those styles load in the <strong>admin page</strong> — outside the iframe. They silently stop applying the moment the canvas is iframed:</p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro\"><span style=\"display: flex; padding: 10px 0px 0 16px; font-size: 0.8em; width: 100%; text-align: left; background-color: #1E1E1E; font-style: italic; color: #D4D4D4;\"><span>PHP</span></span><span class=\"code-block-pro-copy-button\" style=\"color: #D4D4D4; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">// <img alt=\"❌\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/274c.png\" style=\"height: 1em;\" /> Loads in the admin page — never reaches the iframed canvas.\nfunction myplugin_enqueue_editor_styles() {\n	wp_enqueue_style( \'myplugin-editor\', plugins_url( \'editor.css\', __FILE__ ) );\n}\nadd_action( \'enqueue_block_editor_assets\', \'myplugin_enqueue_editor_styles\' );</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki dark-plus\" style=\"background-color: #1E1E1E;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #6A9955;\">// &#x274c; Loads in the admin page — never reaches the iframed canvas.</span></span>\n<span class=\"line\"><span style=\"color: #569CD6;\">function</span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #DCDCAA;\">myplugin_enqueue_editor_styles</span><span style=\"color: #D4D4D4;\">() {</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\">	</span><span style=\"color: #DCDCAA;\">wp_enqueue_style</span><span style=\"color: #D4D4D4;\">( </span><span style=\"color: #CE9178;\">\'myplugin-editor\'</span><span style=\"color: #D4D4D4;\">, </span><span style=\"color: #DCDCAA;\">plugins_url</span><span style=\"color: #D4D4D4;\">( </span><span style=\"color: #CE9178;\">\'editor.css\'</span><span style=\"color: #D4D4D4;\">, </span><span style=\"color: #569CD6;\">__FILE__</span><span style=\"color: #D4D4D4;\"> ) );</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\">}</span></span>\n<span class=\"line\"><span style=\"color: #DCDCAA;\">add_action</span><span style=\"color: #D4D4D4;\">( </span><span style=\"color: #CE9178;\">\'enqueue_block_editor_assets\'</span><span style=\"color: #D4D4D4;\">, </span><span style=\"color: #CE9178;\">\'myplugin_enqueue_editor_styles\'</span><span style=\"color: #D4D4D4;\"> );</span></span></code></pre></div>\n\n\n\n<p class=\"wp-block-paragraph\">The fix is to register editor styles through <code>block.json</code>, which WordPress injects <strong>into</strong> the canvas document, iframed or not:</p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro\"><span style=\"display: flex; padding: 10px 0px 0 16px; font-size: 0.8em; width: 100%; text-align: left; background-color: #1E1E1E; font-style: italic; color: #D4D4D4;\"><span>JSON</span></span><span class=\"code-block-pro-copy-button\" style=\"color: #D4D4D4; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">{\n	\"editorStyle\": \"file:./index.css\"\n}</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki dark-plus\" style=\"background-color: #1E1E1E;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #D4D4D4;\">{</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\">	</span><span style=\"color: #9CDCFE;\">&quot;editorStyle&quot;</span><span style=\"color: #D4D4D4;\">: </span><span style=\"color: #CE9178;\">&quot;file:./index.css&quot;</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\">}</span></span></code></pre></div>\n\n\n\n<p class=\"wp-block-paragraph\">(<code>add_editor_style()</code> also gets copied into the iframe, if you need theme-level editor styles.)</p>\n\n\n\n<p class=\"wp-block-paragraph\">The demo plugin makes this visual: the same block carries a green banner from <code>editorStyle</code> and a red banner from <code>enqueue_block_editor_assets</code>. Count the banners — two means no iframe, one means you&#8217;re iframed.</p>\n\n\n\n<h3 class=\"wp-block-heading\">4. Stale CSS written for the leaky editor</h3>\n\n\n\n<p class=\"wp-block-paragraph\">The section above is about CSS loading into the wrong document. This one is the sneakier inverse: the stylesheet loads into the <em>right</em> document — injected straight into the canvas, exactly as intended — and still gets it wrong, because of what it was written to describe. These are the rules that quietly stop matching, or start over-matching, once the canvas becomes its own document. It&#8217;s the code that&#8217;s been sitting in themes and plugins for years, &#8220;working,&#8221; right up until the iframe is enforced.</p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Selectors keyed on admin body classes</strong></h4>\n\n\n\n<p class=\"wp-block-paragraph\">The most common one, and it fails exactly like the &#8220;close on outside click&#8221; bug — silently.</p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro\"><span style=\"display: flex; padding: 10px 0px 0 16px; font-size: 0.8em; width: 100%; text-align: left; background-color: #1E1E1E; font-style: italic; color: #D4D4D4;\"><span>CSS</span></span><span class=\"code-block-pro-copy-button\" style=\"color: #D4D4D4; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">/* <img alt=\"❌\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/274c.png\" style=\"height: 1em;\" /> The canvas body no longer carries these classes */\n.wp-admin .my-block { padding: 2rem; }\nbody.block-editor-page .my-block__title { font-size: 2rem; }</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki dark-plus\" style=\"background-color: #1E1E1E;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #6A9955;\">/* &#x274c; The canvas body no longer carries these classes */</span></span>\n<span class=\"line\"><span style=\"color: #D7BA7D;\">.wp-admin</span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #D7BA7D;\">.my-block</span><span style=\"color: #D4D4D4;\"> { </span><span style=\"color: #9CDCFE;\">padding</span><span style=\"color: #D4D4D4;\">: </span><span style=\"color: #B5CEA8;\">2rem</span><span style=\"color: #D4D4D4;\">; }</span></span>\n<span class=\"line\"><span style=\"color: #D7BA7D;\">body.block-editor-page</span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #D7BA7D;\">.my-block__title</span><span style=\"color: #D4D4D4;\"> { </span><span style=\"color: #9CDCFE;\">font-size</span><span style=\"color: #D4D4D4;\">: </span><span style=\"color: #B5CEA8;\">2rem</span><span style=\"color: #D4D4D4;\">; }</span></span></code></pre></div>\n\n\n\n<p class=\"wp-block-paragraph\">Inside the iframe, the canvas <code>&lt;body&gt;</code> is a clean document — no <code>wp-admin</code>, no <code>block-editor-page</code>. The selector matches nothing and your editor styling just evaporates. Same block, same stylesheet, works perfectly in the non-iframed editor.</p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro\"><span style=\"display: flex; padding: 10px 0px 0 16px; font-size: 0.8em; width: 100%; text-align: left; background-color: #1E1E1E; font-style: italic; color: #D4D4D4;\"><span>CSS</span></span><span class=\"code-block-pro-copy-button\" style=\"color: #D4D4D4; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">/* <img alt=\"✅\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/2705.png\" style=\"height: 1em;\" /> Scope to the block, not the admin chrome */\n.my-block { padding: 2rem; }\n.my-block__title { font-size: 2rem; }</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki dark-plus\" style=\"background-color: #1E1E1E;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #6A9955;\">/* &#x2705; Scope to the block, not the admin chrome */</span></span>\n<span class=\"line\"><span style=\"color: #D7BA7D;\">.my-block</span><span style=\"color: #D4D4D4;\"> { </span><span style=\"color: #9CDCFE;\">padding</span><span style=\"color: #D4D4D4;\">: </span><span style=\"color: #B5CEA8;\">2rem</span><span style=\"color: #D4D4D4;\">; }</span></span>\n<span class=\"line\"><span style=\"color: #D7BA7D;\">.my-block__title</span><span style=\"color: #D4D4D4;\"> { </span><span style=\"color: #9CDCFE;\">font-size</span><span style=\"color: #D4D4D4;\">: </span><span style=\"color: #B5CEA8;\">2rem</span><span style=\"color: #D4D4D4;\">; }</span></span></code></pre></div>\n\n\n\n<p class=\"wp-block-paragraph\"><code>.editor-styles-wrapper</code> <em>does</em> still wrap the canvas content inside the iframe, so <code>.editor-styles-wrapper .my-block</code> keeps working if you need genuinely editor-only styling — but the admin ancestor was almost never necessary in the first place.</p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Offsets that compensate for admin chrome</strong></h4>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro\"><span style=\"display: flex; padding: 10px 0px 0 16px; font-size: 0.8em; width: 100%; text-align: left; background-color: #1E1E1E; font-style: italic; color: #D4D4D4;\"><span>CSS</span></span><span class=\"code-block-pro-copy-button\" style=\"color: #D4D4D4; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">/* <img alt=\"❌\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/274c.png\" style=\"height: 1em;\" /> Subtracting the admin sidebar and adminbar from the viewport */\n.my-fullwidth { width: calc( 100vw - 160px ); } /* 160px = admin menu */\n.my-toolbar   { position: fixed; top: 32px; }   /* 32px = #wpadminbar */</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki dark-plus\" style=\"background-color: #1E1E1E;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #6A9955;\">/* &#x274c; Subtracting the admin sidebar and adminbar from the viewport */</span></span>\n<span class=\"line\"><span style=\"color: #D7BA7D;\">.my-fullwidth</span><span style=\"color: #D4D4D4;\"> { </span><span style=\"color: #9CDCFE;\">width</span><span style=\"color: #D4D4D4;\">: </span><span style=\"color: #DCDCAA;\">calc</span><span style=\"color: #D4D4D4;\">( </span><span style=\"color: #B5CEA8;\">100vw</span><span style=\"color: #D4D4D4;\"> - </span><span style=\"color: #B5CEA8;\">160px</span><span style=\"color: #D4D4D4;\"> ); } </span><span style=\"color: #6A9955;\">/* 160px = admin menu */</span></span>\n<span class=\"line\"><span style=\"color: #D7BA7D;\">.my-toolbar</span><span style=\"color: #D4D4D4;\">   { </span><span style=\"color: #9CDCFE;\">position</span><span style=\"color: #D4D4D4;\">: </span><span style=\"color: #CE9178;\">fixed</span><span style=\"color: #D4D4D4;\">; </span><span style=\"color: #9CDCFE;\">top</span><span style=\"color: #D4D4D4;\">: </span><span style=\"color: #B5CEA8;\">32px</span><span style=\"color: #D4D4D4;\">; }   </span><span style=\"color: #6A9955;\">/* 32px = #wpadminbar */</span></span></code></pre></div>\n\n\n\n<p class=\"wp-block-paragraph\">This is the flip side of the win from earlier: now that <code>100vw</code> resolves against the <em>canvas</em> instead of the admin page, there&#8217;s no sidebar to subtract — so the <code>calc()</code> overshoots, and <code>top: 32px</code> pushes your toolbar below an admin bar that doesn&#8217;t exist in this document.</p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro\"><span style=\"display: flex; padding: 10px 0px 0 16px; font-size: 0.8em; width: 100%; text-align: left; background-color: #1E1E1E; font-style: italic; color: #D4D4D4;\"><span>CSS</span></span><span class=\"code-block-pro-copy-button\" style=\"color: #D4D4D4; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">/* <img alt=\"✅\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/2705.png\" style=\"height: 1em;\" /> The canvas is the viewport now — no compensation needed */\n.my-fullwidth { width: 100vw; }\n.my-toolbar   { position: fixed; top: 0; }</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki dark-plus\" style=\"background-color: #1E1E1E;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #6A9955;\">/* &#x2705; The canvas is the viewport now — no compensation needed */</span></span>\n<span class=\"line\"><span style=\"color: #D7BA7D;\">.my-fullwidth</span><span style=\"color: #D4D4D4;\"> { </span><span style=\"color: #9CDCFE;\">width</span><span style=\"color: #D4D4D4;\">: </span><span style=\"color: #B5CEA8;\">100vw</span><span style=\"color: #D4D4D4;\">; }</span></span>\n<span class=\"line\"><span style=\"color: #D7BA7D;\">.my-toolbar</span><span style=\"color: #D4D4D4;\">   { </span><span style=\"color: #9CDCFE;\">position</span><span style=\"color: #D4D4D4;\">: </span><span style=\"color: #CE9178;\">fixed</span><span style=\"color: #D4D4D4;\">; </span><span style=\"color: #9CDCFE;\">top</span><span style=\"color: #D4D4D4;\">: </span><span style=\"color: #B5CEA8;\">0</span><span style=\"color: #D4D4D4;\">; }</span></span></code></pre></div>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Specificity walls built to fight leakage</strong></h4>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro\"><span style=\"display: flex; padding: 10px 0px 0 16px; font-size: 0.8em; width: 100%; text-align: left; background-color: #1E1E1E; font-style: italic; color: #D4D4D4;\"><span>CSS</span></span><span class=\"code-block-pro-copy-button\" style=\"color: #D4D4D4; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">/* <img alt=\"❌\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/274c.png\" style=\"height: 1em;\" /> Cranked up to beat leaking admin styles */\n.editor-styles-wrapper .my-block p {\n	font-family: Georgia, serif !important;\n	line-height: 1.6 !important;\n	box-sizing: border-box !important;\n}</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki dark-plus\" style=\"background-color: #1E1E1E;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #6A9955;\">/* &#x274c; Cranked up to beat leaking admin styles */</span></span>\n<span class=\"line\"><span style=\"color: #D7BA7D;\">.editor-styles-wrapper</span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #D7BA7D;\">.my-block</span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #D7BA7D;\">p</span><span style=\"color: #D4D4D4;\"> {</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\">	</span><span style=\"color: #9CDCFE;\">font-family</span><span style=\"color: #D4D4D4;\">: </span><span style=\"color: #CE9178;\">Georgia</span><span style=\"color: #D4D4D4;\">, </span><span style=\"color: #CE9178;\">serif</span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #569CD6;\">!important</span><span style=\"color: #D4D4D4;\">;</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\">	</span><span style=\"color: #9CDCFE;\">line-height</span><span style=\"color: #D4D4D4;\">: </span><span style=\"color: #B5CEA8;\">1.6</span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #569CD6;\">!important</span><span style=\"color: #D4D4D4;\">;</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\">	</span><span style=\"color: #9CDCFE;\">box-sizing</span><span style=\"color: #D4D4D4;\">: </span><span style=\"color: #CE9178;\">border-box</span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #569CD6;\">!important</span><span style=\"color: #D4D4D4;\">;</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\">}</span></span></code></pre></div>\n\n\n\n<p class=\"wp-block-paragraph\">The iframe already stops admin CSS from leaking in — that&#8217;s one of the reasons it&#8217;s a good thing. These <code>!important</code>s and resets have no admin styles left to override, but they <em>do</em> now override the theme styles the iframe loads into the canvas. The result: your editor preview drifts <em>away</em> from the front end — the exact opposite of what the iframe is for.</p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro\"><span style=\"display: flex; padding: 10px 0px 0 16px; font-size: 0.8em; width: 100%; text-align: left; background-color: #1E1E1E; font-style: italic; color: #D4D4D4;\"><span>CSS</span></span><span class=\"code-block-pro-copy-button\" style=\"color: #D4D4D4; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">/* <img alt=\"✅\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/2705.png\" style=\"height: 1em;\" /> Let theme styles through; set only what your block truly owns */\n.my-block p { font-family: Georgia, serif; }</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki dark-plus\" style=\"background-color: #1E1E1E;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #6A9955;\">/* &#x2705; Let theme styles through; set only what your block truly owns */</span></span>\n<span class=\"line\"><span style=\"color: #D7BA7D;\">.my-block</span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #D7BA7D;\">p</span><span style=\"color: #D4D4D4;\"> { </span><span style=\"color: #9CDCFE;\">font-family</span><span style=\"color: #D4D4D4;\">: </span><span style=\"color: #CE9178;\">Georgia</span><span style=\"color: #D4D4D4;\">, </span><span style=\"color: #CE9178;\">serif</span><span style=\"color: #D4D4D4;\">; }</span></span></code></pre></div>\n\n\n\n<p class=\"wp-block-paragraph\">Two things to notice:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The pattern is the same as the JavaScript fixes: <strong>stop describing the admin, start describing your block.</strong> A selector that names <code>.wp-admin</code>, <code>#wpadminbar</code>, or <code>.block-editor-page</code> is reaching for chrome that isn&#8217;t in the canvas document anymore.</li>\n\n\n\n<li>Most of these were <em>workarounds for problems the iframe solves.</em> Deleting them is usually the fix.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">5. Third-party libraries that assume one global context</h3>\n\n\n\n<p class=\"wp-block-paragraph\">The biggest real-world hazard. Masonry layouts, sliders, lightboxes, maps — a generation of libraries was written assuming there is exactly one <code>document</code>:</p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro\"><span style=\"display: flex; padding: 10px 0px 0 16px; font-size: 0.8em; width: 100%; text-align: left; background-color: #1E1E1E; font-style: italic; color: #D4D4D4;\"><span>JavaScript</span></span><span class=\"code-block-pro-copy-button\" style=\"color: #D4D4D4; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">// Inside some-legacy-lib.js\nconst targets = document.querySelectorAll( selector ); // finds nothing in the iframe</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki dark-plus\" style=\"background-color: #1E1E1E;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #6A9955;\">// Inside some-legacy-lib.js</span></span>\n<span class=\"line\"><span style=\"color: #569CD6;\">const</span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #4FC1FF;\">targets</span><span style=\"color: #D4D4D4;\"> = </span><span style=\"color: #9CDCFE;\">document</span><span style=\"color: #D4D4D4;\">.</span><span style=\"color: #DCDCAA;\">querySelectorAll</span><span style=\"color: #D4D4D4;\">( </span><span style=\"color: #9CDCFE;\">selector</span><span style=\"color: #D4D4D4;\"> ); </span><span style=\"color: #6A9955;\">// finds nothing in the iframe</span></span></code></pre></div>\n\n\n\n<p class=\"wp-block-paragraph\">Your block calls the library, the library queries the admin document, finds zero matches, and silently does nothing. No error, no warning — the block just stops being enhanced.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Your options, in order of preference:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Pass elements, not selectors.</strong> If the library accepts an element (<code>lib.init( element )</code>), hand it the block&#8217;s element from <code>useRefEffect</code> and you&#8217;re usually fine.</li>\n\n\n\n<li><strong>Patch the library.</strong> For unmaintained dependencies, <a href=\"https://www.npmjs.com/package/patch-package\" rel=\"noopener\" target=\"_blank\"><code>patch-package</code></a> is the pragmatic answer: edit the module in <code>node_modules</code> to resolve <code>document</code>/<code>window</code> from the element (<code>node.ownerDocument</code>), run <code>npx patch-package &lt;pkg&gt;</code>, commit the patch, add a <code>postinstall</code> script. The <a href=\"https://developer.wordpress.org/block-editor/reference-guides/block-api/block-api-versions/block-migration-for-iframe-editor-compatibility/\" rel=\"noopener\" target=\"_blank\">official migration guide</a> walks through a real patch for <code>@panzoom/panzoom</code>.</li>\n\n\n\n<li><strong>Guard and bail.</strong> If the library is loaded inside the iframe (front-end scripts are), check for it on <code>defaultView</code> before using it: <code>if ( ! defaultView.jQuery ) return;</code></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">So what does <code>apiVersion: 3</code> actually do?</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Less than you might think — and that&#8217;s the point. Declaring <code>\"apiVersion\": 3</code> in <code>block.json</code> doesn&#8217;t change how your block renders; it&#8217;s a <strong>signal that your block is iframe-ready</strong>. All core blocks have been on v3 since WordPress 6.3. For most blocks the migration is literally a one-line change… followed by the actual work: testing that nothing in your <code>edit</code> component (or the libraries it pulls in) touches the global <code>document</code>/<code>window</code>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And to be clear about 7.1: the iframe will be enforced there <strong>regardless</strong> of <code>apiVersion</code>. Staying on v2 doesn&#8217;t opt you out anymore — it just means you get the console warning <em>and</em> the breakage.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How to test today</h2>\n\n\n\n<p class=\"wp-block-paragraph\">You don&#8217;t need to wait for 7.1. What you&#8217;re testing is that your block works in <strong>both states</strong> — iframed and not — because both will exist in the wild for a while yet.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Iframed:</strong> install the <strong>Gutenberg plugin 22.6+</strong>. It enforces the iframe regardless of theme, so this is the fastest way to live in the future. <a href=\"https://wordpress.org/news/2026/07/wordpress-7-1-beta-1/\"><strong>7.1 Beta 1</strong> </a>does the same — I&#8217;ve confirmed it forces the iframe on a classic theme, which is the merged behavior shipping in August.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Not iframed:</strong> run <strong>WordPress 7.0 without the plugin</strong> and insert a v1/v2 block alongside yours — the canvas drops the iframe on the fly. <a href=\"https://github.com/ryanwelcher/iframe-editor-examples\">The companion plugin&#8217;s <code>legacy-api-v2</code> block exists for exactly this.</a> Any theme will do: core 7.0 has no theme check in the iframe decision at all, so you don&#8217;t need to hunt down a classic theme to reproduce this.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Confirm which state you&#8217;re in:</strong> <code>element.ownerDocument !== document</code>, or look for <code>iframe[name=\"editor-canvas\"]</code> in devtools.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>The Site Editor</strong> has been iframed for years — if your block already behaves there, you&#8217;re most of the way home.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>The companion plugin</strong> ships a <code>wp-env</code> setup, an example override file that adds Gutenberg for enforced mode (copy it to <code>.wp-env.override.json</code>), and <strong>two Playground blueprints</strong> — one per state, so you can flip between iframed and not in two tabs without installing anything.</p>\n\n\n\n<h2 class=\"wp-block-heading\">The block author&#8217;s checklist</h2>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Set <code>\"apiVersion\": 3</code> in every <code>block.json</code>.</li>\n\n\n\n<li>Check your editor code for <code>window.</code> and <code>document.</code> — every hit is a suspect. Replace with <code>element.ownerDocument</code> / <code>.defaultView</code> via <code>useRefEffect</code>.</li>\n\n\n\n<li>Check for <code>enqueue_block_editor_assets</code> — move canvas-affecting styles to <code>editorStyle</code> in <code>block.json</code>.</li>\n\n\n\n<li>Check your editor CSS for <code>.wp-admin</code>, <code>#wpadminbar</code>, and <code>.block-editor-page</code> , admin chrome offsets and <code>!important</code></li>\n\n\n\n<li>Audit third-party libraries: pass elements not selectors, patch what you must.</li>\n\n\n\n<li>Test both <strong>states</strong>, not both themes: iframed (Gutenberg 22.6+ active) and not iframed (no plugin, v1/v2 block inserted). </li>\n\n\n\n<li>Watch the console with <code>SCRIPT_DEBUG</code> on — the deprecation warnings tell you which registered blocks are still on v1/v2.</li>\n</ol>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Note What&#8217;s <em>not</em> on that list:</strong> checking whether the active theme is a block theme. Core exposes that answer twice — as <code>__unstableIsBlockBasedTheme</code> in the editor settings and as <code>is_block_theme</code> on the REST themes endpoint — and there&#8217;s a shelved PR and a live debate behind it. Your block never needs to ask. <code>element.ownerDocument !== document</code> answers the only version of the question that affects you. If you&#8217;re curious what that theme check does under the hood, that&#8217;s its own story: <a href=\"https://gutenbergtimes.com/?p=46118&amp;preview=1&amp;_ppp=09a7d05e9d\"><strong>How WordPress decides a Theme is a &#8220;Block theme&#8221;.</strong></a></p>\n\n\n\n<p class=\"wp-block-paragraph\">Resources</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2026/02/24/iframed-editor-changes-in-wordpress-7-0/\" rel=\"noopener\" target=\"_blank\">Iframed Editor Changes in WordPress 7.0</a> — the dev note this all builds on</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/74042\" rel=\"noopener\" target=\"_blank\">Post editor: always iframe (#74042)</a> — the merged PR that makes 7.1 always-iframed, and the discussion behind the beta-feedback plan</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/06/19/roadmap-to-7-1/\" rel=\"noopener\" target=\"_blank\">Roadmap to 7.1</a> — the original block-themes-first plan, superseded by #74042</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/12/preparing-the-post-editor-for-full-iframe-integration/\" rel=\"noopener\" target=\"_blank\">Preparing the Post Editor for Full iframe Integration</a> — the 6.9 groundwork</li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/block-editor/reference-guides/block-api/block-api-versions/block-migration-for-iframe-editor-compatibility/\" rel=\"noopener\" target=\"_blank\">Migrating Blocks for iframe Editor Compatibility</a> — the official migration guide</li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/block-editor/reference-guides/block-api/block-api-versions/\" rel=\"noopener\" target=\"_blank\">Block API Versions</a> — what each version means</li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/block-editor/how-to-guides/enqueueing-assets-in-the-editor/\">Enqueueing editor assets</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/themes/core-concepts/including-assets/#editor-stylesheets\">Editor styles for themes</a></li>\n\n\n\n<li>Companion demo plugin: <a href=\"https://github.com/ryanwelcher/iframe-editor-examples\" rel=\"noopener\" target=\"_blank\">iframe-editor-examples</a></li>\n</ul>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Jul 2026 16:21:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Ryan Welcher\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"Open Channels FM: Who Is Actually Using the Internet?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2557053\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://openchannels.fm/who-is-actually-using-the-internet/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:168:\"A look at the impact of AI and bots on the web, emphasizing the decline of human engagement, the challenges for content creators, and the future of digital interaction.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Jul 2026 13:41:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"Open Channels FM: Open Channels FM Launches Live News Show Focused on the Open Source Ecosystem\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2556978\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"https://openchannels.fm/open-channels-fm-launches-live-news-show-focused-on-the-open-source-ecosystem/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:207:\"Open Channels FM is launching a new video news show called Open Channels News, starting July 27th. It\'s a quick, five to ten-minute program covering various open source topics, available live and on YouTube.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 16 Jul 2026 12:55:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"Akismet: A small integration detail with a big impact\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://akismet.com/?p=284827\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://akismet.com/blog/a-small-integration-detail-with-a-big-impact/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1814:\"<p class=\"wp-block-paragraph\"><a href=\"https://givewp.com\">GiveWP</a> is the most popular fundraising and donation tool on WordPress, powering over $500 million in donations. It integrates with Akismet to ensure that spammy or potentially fraudulent submissions get filtered out. Recently, some Give users saw an unusually high level of false positives on their donation forms: legitimate donation submissions that were being marked as spam.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We investigated and found that the donation forms were being sent to Akismet for checking after each step in the donation process: once after choosing an amount, again after the user entered their name, again after they entered an optional message, etc. To Akismet, this looks like sudden repeated submissions from the same user, all with similar content (better known as spam).</p>\n\n\n\n<p class=\"wp-block-paragraph\">Akismet supports rechecking content, but only if the integration includes <a href=\"https://akismet.com/developers/detailed-docs/comment-check/\">the <code>recheck_reason</code> parameter</a>. If that parameter is present, Akismet knows not to classify the repeated duplicate (or nearly duplicate) checks as part of a spam attack; however, if <code>recheck_reason</code> is omitted, this kind of consecutive similar content looks very similar to spam, and Akismet blocks it.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://github.com/impress-org/givewp/issues/8238\">We reported the root issue</a> to Liquid Web, and they quickly addressed it and released a fix in version 4.16.0. This kind of collaboration is what makes Open Source great!</p>\n\n\n\n<p class=\"wp-block-paragraph\">We&#8217;re planning on bringing automatic integration review to more clients and platforms, so stay tuned for more tips and insights.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 15 Jul 2026 16:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Christopher Finke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"WordPress.org blog: WordPress 7.1 Beta 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=20987\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2026/07/wordpress-7-1-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:17550:\"<p class=\"wp-block-paragraph\">WordPress 7.1 Beta 1 is ready for download and testing! </p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>This beta release is intended for testing and development</strong> only. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, use a test environment or local site to explore the new features.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Test WordPress 7.1 Beta 1</h2>\n\n\n\n<p class=\"wp-block-paragraph\">You can test WordPress 7.1 Beta 1 in any of the following ways:</p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong>WordPress Beta Tester Plugin</strong></td><td>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\" rel=\"noreferrer noopener\" target=\"_blank\">WordPress Beta Tester</a> plugin on a WordPress install. Select the “Bleeding edge” channel and “Beta/RC Only” stream.</td></tr><tr><td><strong>Direct Download</strong></td><td>Download the <a href=\"https://wordpress.org/wordpress-7.1-beta1.zip\">Beta 1 version (zip)</a> and install it on a WordPress website.</td></tr><tr><td><strong>Command Line (WP-CLI)</strong></td><td>Use this <a href=\"https://make.wordpress.org/cli/\" rel=\"noreferrer noopener\" target=\"_blank\">WP-CLI</a> command: <br /><code>wp core update --version=7.1-beta1</code></td></tr><tr><td><strong>WordPress Playground</strong></td><td>Use a <a href=\"https://playground.wordpress.net/?site-slug=kind-classic-mountain&amp;networking=no&amp;php=8.3&amp;wp=beta&amp;language=&amp;multisite=no\" rel=\"noopener\" target=\"_blank\">7.1 Beta 1 WordPress Playground instance</a> to test the software directly in your browser. No setup required-just click and go!</td></tr></tbody></table></figure>\n\n\n\n<p class=\"wp-block-paragraph\">The scheduled final release date for WordPress 7.1 is <strong>August 19, 2026</strong>. The full <a href=\"https://make.wordpress.org/core/2026/07/03/wordpress-7-1-release-party-schedule/\" rel=\"noopener\" target=\"_blank\">release schedule can be found here</a>. Your help testing Beta and RC versions is vital to making this release as stable and powerful as possible. Thank you to everyone who contributes by testing! </p>\n\n\n\n<h2 class=\"wp-block-heading\">How important is your testing?</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Testing for issues is a critical part of developing any software, and it’s a meaningful way for anyone to contribute – whether or not you have experience. <a href=\"https://make.wordpress.org/test/2026/07/15/help-test-wordpress-7-1/\">Details on what to test in WordPress 7.1 are available here</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you encounter an issue, please share it in the <a href=\"https://wordpress.org/support/forum/alphabeta/\" rel=\"noopener\" target=\"_blank\">Alpha/Beta area</a> of the support forums. If you are comfortable submitting a reproducible bug report, you can do so <a href=\"https://core.trac.wordpress.org/newticket\" rel=\"noopener\" target=\"_blank\">via WordPress Trac</a>. You can also check your issue against this list of <a href=\"https://core.trac.wordpress.org/tickets/major\" rel=\"noopener\" target=\"_blank\">known bugs</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Curious about testing releases in general and how to get started? Follow along with the<a href=\"https://make.wordpress.org/test/\"> testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.1 will include new features that were previously only available in the Gutenberg plugin. Learn more about Gutenberg updates since WordPress 7.0 in the <a href=\"https://make.wordpress.org/core/tag/gutenberg-new/\">What’s New in Gutenberg</a> posts for versions <a href=\"https://make.wordpress.org/core/2026/03/11/whats-new-in-gutenberg-22-7-11-march/\">22.7</a>, <a href=\"https://make.wordpress.org/core/2026/03/25/whats-new-in-gutenberg-22-8-25-march/\">22.8</a>, <a href=\"https://make.wordpress.org/core/2026/04/09/whats-new-in-gutenberg-22-9-8-april/\">22.9</a>, <a href=\"https://make.wordpress.org/core/2026/04/22/whats-new-in-gutenberg-23-0-22-april/\">23.0</a>, <a href=\"https://make.wordpress.org/core/2026/05/07/whats-new-in-gutenberg-23-1-07-may/\">23.1</a>, <a href=\"https://make.wordpress.org/core/2026/05/21/whats-new-in-gutenberg-23-2-21-may/\">23.2</a>, <a href=\"https://make.wordpress.org/core/2026/06/03/whats-new-in-gutenberg-23-3-03-jun/\">23.3</a>, <a href=\"https://make.wordpress.org/core/2026/06/17/whats-new-in-gutenberg-23-3-03-jun-2/\">23.4</a>, <a href=\"https://make.wordpress.org/core/2026/07/01/whats-new-in-gutenberg-23-5-july-1-2026/\">23.5</a> and 23.6.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s new in WordPress 7.1?</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.1 delivers a more complete set of styling controls, a smoother media experience, and a more personalized admin experience. Notes have evolved to add inline notes with @mentions and rich text formatting that make asynchronous feedback feel more powerful. New styling features unlock long requested features to style how blocks look across screen sizes and to style interactive states, all without writing custom CSS. Various client side media improvements means better format support, improved performance, and more resilient uploads when adding media to your site. A new inline cropping tool brings a fresh and more robust experience to editing images. Finally, the admin experience becomes easier to navigate with an ever present admin bar in the editors, improvements to the command palette, and various quality of life improvements. Underneath it all, developers get an expanding set of APIs to build on, and site owners get better support for a truly global audience.</p>\n\n\n\n<h3 class=\"wp-block-heading\">New suite of Notes features</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Notes continue to grow into a fuller collaboration experience, making asynchronous feedback between teams faster and more expressive.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Text Formatting</strong>: Notes now support inline formatting like bold, italic, code, links and adding emoji; each with a respective keyboard shortcut, so feedback reads clearly without breaking your flow.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>@mentions</strong>: Type &#8220;@&#8221; in a Note to pull up a searchable list of collaborators and tag someone directly, so feedback points at the right person without leaving the sidebar.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Leave notes anywhere</strong>: Start more than one conversation on the same block instead of folding every comment into a single thread, making it easier to track distinct pieces of feedback.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Inline notes:</strong> Leave a note on a text selection instead of on an entire block.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Show more / show less</strong>: Long notes now collapse by default with a toggle to expand them, keeping the margin tidy while you write.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Style it your way, on any screen</h3>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.1 takes a major step toward built-in responsive design and interactive styling, letting you achieve looks that once required writing custom CSS.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Responsive styling</strong>: Define how a block looks at different screen sizes directly in the editor, for both Global Styles and individual blocks without the need of writing custom CSS.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Viewport breakpoint customization</strong>: Theme authors can now define their own responsive breakpoints in <code>theme.json</code>, giving more flexibility for how responsive controls behave on a given site.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Interactive state styling</strong>: Style how blocks respond to interaction, like a button changing color on hover or focus, using a standardized set of controls for both Global Styles and individual block instances.</p>\n\n\n\n<h3 class=\"wp-block-heading\">A smoother media experience</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Uploading, editing, and browsing media keeps getting more capable and more reliable.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Client-side media processing</strong>: Image and media processing moves into the browser, now with broader format support that includes HEIC (the default format for iPhone photos), UltraHDR, AVIF and WebP support built in, plus GIF-to-video conversion for lighter, more efficient files. Uploads are also more resilient, with a progress indicator and automatic retries if your data connectivity drops off.</li>\n\n\n\n<li><strong>New Media Editor Modal</strong>: A dedicated modal for editing images replaces the inline cropping tool, bringing cropping, rotation, and metadata editing together in one streamlined workflow.</li>\n\n\n\n<li><strong>Smarter galleries</strong>: Gallery blocks can automatically pull in and sort media already attached to the current post, cutting down on manual set-up.</li>\n\n\n\n<li><strong>View attached images:</strong> After you upload images to a post, the inserter will automatically surface them in a new Attached images section to make it easier to find relevant images.</li>\n\n\n\n<li><strong>Infinite scrolling by default</strong>: The Media Library grid view now loads additional items automatically as you scroll, rather than requiring a click on &#8220;Load more&#8221; especially handy for sites that handle large media libraries. This can be disabled under your user profile.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">A more personal, more navigable admin</h3>\n\n\n\n<p class=\"wp-block-paragraph\">These meaningful upgrades make the WordPress admin easier to move around in and more consistent with how you like to work.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Persistent toolbar (Omnibar)</strong>: The admin toolbar now travels with you into the Site Editor and Block Editor, with a series of polish improvements throughout.</li>\n\n\n\n<li><strong>Command palette improvements</strong>: Moving through the dashboard and editor with the command palette <code>(Ctrl/Cmd+K)</code> is more refined to make finding what you need even faster! Now results are grouped into <em>Recent, matching and Suggestions</em> sections instead of one flat list.</li>\n\n\n\n<li><strong>Admin color scheme in the Site Editor</strong>: The Site Editor now reflects your chosen admin color scheme instead of always using a fixed background.</li>\n\n\n\n<li><strong>DataViews and DataForms iterations</strong>: Continued refinement of the components behind managing lists of posts, pages, patterns, and templates, alongside the forms used to edit them.</li>\n\n\n\n<li><strong>Excerpts in the Posts list</strong>: The Posts list view now shows a short excerpt for each entry, making it easier to identify the post you&#8217;re looking for without opening it.</li>\n\n\n\n<li><strong>Visual revisions</strong>: This release adds a picker activity layout for browsing history in more detail, clearly labeled autosaves in the timeline, and an autosave notice that opens straight into the visual revisions view. Global Styles revisions get a small polish too, swapping the <em>active</em> style&#8217;s text label for a badge.</li>\n\n\n\n<li><strong>A dedicated Identity section</strong>: Site identity settings like your title, tagline, and icon are now live in their own clearly labeled section of the Site Editor, making them easier to find and update.</li>\n\n\n\n<li><strong>On This Day Widget</strong>: A new widget resurfaces what you published on this date in past years, right on your dashboard. A small nudge to look back on what you&#8217;ve written, and a reason to write something new today.</li>\n\n\n\n<li><strong>Allow Changing Comment Parent:</strong> Fixing a misthreaded comment used to mean editing the database directly. WordPress 7.1 adds an editable &#8220;In reply to&#8221; control to the Edit Comment screen, letting you pick a new parent from a dropdown of the post&#8217;s other comments. It&#8217;s scoped to the same post, so this is about untangling threads, not moving comments across posts.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">New blocks and block-level enhancements</h3>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.1 release brings a handful of block refinements that give more control with fewer steps.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Playlist Block:</strong> A new block for adding a collection of audio files to a post or page, with an optional waveform visualization that shows the audio&#8217;s shape as it plays; a more visual way to present podcasts, music, or audio content without using any third-party plugins.</li>\n\n\n\n<li><strong>Tabs Block:</strong> A new block for organizing content into clickable tabbed panels instead of showing everything at once. It&#8217;s a cleaner way to present related content without overwhelming the page.</li>\n\n\n\n<li><strong>Background gradients</strong>: Background gradients and background images no longer conflict. The gradient used to get silently overridden by the image, but now they combine and display together. This fix extends beyond the Group block to Verse, Accordion, Pullquote, Post Content, and Quote block.</li>\n\n\n\n<li><strong>HTML block editable content</strong>: The HTML block now supports editable nested blocks. This is great to use for AI-generated content, which often arrives as raw HTML.</li>\n\n\n\n<li><strong>&#8220;Mark as decorative&#8221; for images</strong>: A new toggle on the Image block lets you hide purely decorative images from screen readers for a better accessibility experience.</li>\n\n\n\n<li><strong>Smarter shortcode handling</strong>: Pasting or converting a shortcode into the Embed block now creates a proper Embed block instead of leaving raw shortcode text behind, and the Shortcode block gains block-specific transforms of its own.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Built for a global audience</h3>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.1 continues work to make Core reflect the full diversity of its worldwide community, with progress toward supporting Unicode email addresses so usernames, slugs, and email addresses can better represent users everywhere.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Built for developers</h3>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.1 continues to expand the foundation developers build on.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Abilities API expansion</strong>: Continued refinement of the Abilities API with improved querying, filtering, and input validation, giving developers and AI tooling a more reliable foundation to build on.</li>\n\n\n\n<li><strong>Block Bindings for list items</strong>: Block Bindings now extend to List Item, making it possible to connect more block content to dynamic data sources without custom code.</li>\n\n\n\n<li><strong>Custom icon registration</strong>: New functions let plugin and theme authors register their own icons for the Icons block for use throughout the block editor.</li>\n\n\n\n<li><strong>Enforced iframed editor</strong>: The post editor now always runs inside an iframe, isolating the editing canvas from admin styles for more predictable rendering. Blocks using Block API v2 or lower should be updated to v3 for compatibility.</li>\n\n\n\n<li><strong>wordpress/theme stabilization</strong>: Introduces design tokens and a stable React ThemeProvider to provide a more consistent, customizable foundation for WordPress admin interfaces.</li>\n\n\n\n<li><strong>Connectors authentication improvements</strong>: The Connectors screen now also supports username and application-password login &#8211; a more familiar way to connect plugins and services. This release also closes a security gap where browsers could auto-suggest saved credentials into the API key field.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">With so much in progress for WordPress 7.1 Beta 1, this is still only the beginning; expect continued refinement with each Beta and RC release ahead of the final release on <strong>August 19, 2026</strong>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Just for you: a Beta 1 haiku:</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Seeds of Seven-One,<br />Notes, styles, media, and tools—<br />Test, and watch them bloom.</p>\n\n\n\n<p class=\"has-text-align-right wp-block-paragraph\"><em>Props to </em><a class=\"mention\" href=\"https://profiles.wordpress.org/benjamin_zekavica/\"><span class=\"mentions-prefix\">@</span>benjamin_zekavica</a>, <a class=\"mention\" href=\"https://profiles.wordpress.org/amykamala/\"><span class=\"mentions-prefix\">@</span>amykamala</a>, <a class=\"mention\" href=\"https://profiles.wordpress.org/wildworks/\"><span class=\"mentions-prefix\">@</span>wildworks</a>, <a class=\"mention\" href=\"https://profiles.wordpress.org/adamsilverstein/\"><span class=\"mentions-prefix\">@</span>adamsilverstein</a>, <a class=\"mention\" href=\"https://profiles.wordpress.org/annezazu/\"><span class=\"mentions-prefix\">@</span>annezazu</a>, <a class=\"mention\" href=\"https://profiles.wordpress.org/fushar/\"><span class=\"mentions-prefix\">@</span>fushar</a>, <a class=\"mention\" href=\"https://profiles.wordpress.org/jorgefilipecosta/\"><span class=\"mentions-prefix\">@</span>jorgefilipecosta</a><em>, <a class=\"mention\" href=\"https://profiles.wordpress.org/joedolson/\"><span class=\"mentions-prefix\">@</span>joedolson</a> for proofreading and review.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 15 Jul 2026 15:53:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Krupa Nanda\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"Open Channels FM: How AI Tools Are Transforming Everyday Web Design Practices\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2556905\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://openchannels.fm/how-ai-tools-are-transforming-everyday-web-design-practices/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:200:\"In this episode, Bob and Cami discuss how AI is reshaping web design, offering tips on using AI tools effectively, educating clients, and adapting workflows for better efficiency in the digital space.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 15 Jul 2026 14:45:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"WPTavern: #225 – Milan Petrović on the Risks of Legacy PHP in WordPress and Why Upgrading Matters for Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=206447\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:126:\"https://wptavern.com/podcast/225-milan-petrovic-on-the-risks-of-legacy-php-in-wordpress-and-why-upgrading-matters-for-security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:43219:\"<details>Transcript<div>\n<p class=\"wp-block-paragraph\">[00:00:19] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox Podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, the risks of legacy PHP in WordPress and why upgrading matters for security.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to wptavern.com/feed/podcast, and you can copy that URL into most podcast players. If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you and hopefully get you or your idea featured on the show. Head to wptavern.com/contact/jukebox and use the form there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So on the podcast today we have Milan Petrović. Milan has been deeply immersed in the WordPress ecosystem since 2007, developing an array of plugins, especially for expanding bbPress forums, and running his own company, creating plugins before joining the Freemius team as a full stack developer. With nearly two decades of hand-on experience, Milan has witnessed firsthand the evolution of both the WordPress and PHP landscapes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Many WordPress users may be only partially aware of PHP. Perhaps they&#8217;ve noticed version numbers in their hosting panel, but few of the millions of WordPress users understand the real impact that PHP versions have on the security and performance of their websites. Milan is here to shine a light on why embracing newer versions like PHP eight isn&#8217;t just good practise, but a crucial step for security and efficiency.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Milan begins by recounting his journey through WordPress development. The conversation gets into the heart of his recent WordCamp Europe presentation, which tackles how legacy PHP code exposes sites to thousands of open bugs and vulnerabilities. And why relying on old versions is, as he describes, an active invitation for automated exploitation.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The discussion explores the contrast between running legacy code, and using the native shields of modern PHP, and highlights how PHP 8 not only closes security holes, but also delivers major performance boosts, reducing memory usage, and accelerating speed.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;re wondering why you should care about the PHP version your site is running on, or you&#8217;re a developer interested in practical ways to harden your code, Milan unpacks both the existential risks of outdated PHP, and the step-by-step benefits for hosts, agencies, and plug-in developers alike.</p>\n\n\n\n<p class=\"wp-block-paragraph\">He introduces his Vulnerability Lab plugin, designed for developers to see firsthand how code exploits play out differently across PHP versions, and makes the case that modernising can happen gradually, one update, one plugin at a time.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;ve ever questioned how your hosting choice, or plugin stack, could affect your site&#8217;s future. Or you&#8217;re ready to take the first steps towards building more secure and future proof WordPress products, this episode is for you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;re interested in finding out more, you can find all of the links in the show notes by heading to wptavern.com/podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so without further delay, I bring you Milan Petrović.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I am joined on the podcast by Milan Petrović. Hello Milan.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:58] <strong>Milan Petrović:</strong> Hello Nathan. Thank you for having me here.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:04:00] <strong>Nathan Wrigley:</strong> You are very welcome. We&#8217;re in a beautiful, beautiful media room at WordCamp Europe. And I know that you have already done your presentation because we just had a little chat about the fact that you&#8217;ve done it and it went well and all of that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Do you want to tell us a little bit about you and your background working with code and developing and security and all of that kind of stuff? And then we&#8217;ll talk about your actual presentation and how it went.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:04:25] <strong>Milan Petrović:</strong> So I started with WordPress almost 20 years ago, so way back in 2007. And I created a lot of plugins for WordPress, and I especially have a lot of plugins for bbPress for expanding forums. Yeah, people still use forums these days. So that was, I really like bbPress and all the stuff I did with that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I have been working as a freelancer for a lot of years. I have my own company that was doing plugins, it&#8217;s called Dev4Press. But in 2024, I joined the amazing team at Freemius. So for almost two years I am a full stack developer at Freemius. And that was a really nice change of pace for me and the work I usually do before that. So yeah, that&#8217;s a short of it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:05:13] <strong>Nathan Wrigley:</strong> Yeah. That&#8217;s great. Thank you. And so the presentation that you did that is now over, goes like this. I&#8217;m going to read the entire blurb because it&#8217;s short enough to read, and it says, secure by design, hardening plugins with PHP 8.x. In the WordPress ecosystem, we&#8217;re often forced to choose between supporting the lowest common denominator of hosting and implementing modern security. But in 2026, writing legacy PHP 7 code isn&#8217;t just a bad habit, it&#8217;s an active invitation for automated exploitation. It&#8217;s time to stop playing whack-a-mole with sanitisation, and start building products that are secure by design. This talk isn&#8217;t just another slide deck on security tips. Through comparisons of a Vulnerability Lab plugin, you will see how common exploits like authentication bypass, and server side request forgery succeed on legacy code, only to be neutralised by the native shields of the latest PHP. You learn how to leverage the modern PHP patterns to ensure your plugins are resilient to a wide range of exploits.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Now into the show notes I will put Milan&#8217;s wordpress.tv presentation so that you can go and watch the entirety of it. I guess basically if at any point you get confused, that would be a good idea, pause this podcast and go and check that out. But, how did it go? How well received was it?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:06:33] <strong>Milan Petrović:</strong> For me personally, I&#8217;m very satisfied with how how it went. I don&#8217;t know, it&#8217;s a bit overwhelming to be honest, but I am very satisfied and I got a lot of questions after the talk. I met a lot of people that liked what I had to say. And I think it&#8217;s good feedback to have, for something that is more technical like this was.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:06:52] <strong>Nathan Wrigley:</strong> Well touching on the fact that it&#8217;s more technical, I have to confess that I think you are going to have to shepherd me through this, because a lot of the content that you I think probably got stuck into is beyond my pay grade. But hopefully we&#8217;ll get through it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Now at WordCamp Europe, where we are now, I don&#8217;t know what the ratio is, but I&#8217;m guessing that a significant proportion of the people out there are not developers. They kind of know that PHP is a thing. They realise that WordPress is built on that, but they don&#8217;t really have an understanding.</p>\n\n\n\n<p class=\"wp-block-paragraph\">They&#8217;ve probably heard of PHP 7. They&#8217;ve probably heard of PHP 8, because somewhere in a control panel that was shown to them. But maybe there&#8217;s not much of an understanding of the fact that it gets better over time. It gets secure over time. I think there&#8217;s probably a notion of, well, my website works. Why do I need to change anything?</p>\n\n\n\n<p class=\"wp-block-paragraph\">So let&#8217;s get into that. What were you talking about in your presentation? What&#8217;s changed in the landscape of PHP more recently that you brought to the fore that you shared with your audience?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:07:51] <strong>Milan Petrović:</strong> Yeah, I think that PHP 8 was a big milestone for a lot of things. And I&#8217;m not sure, but I don&#8217;t think that the wider communities are kind of aware about the impact of the PHP, or the server environment in general, on how the websites work and how secure they are. Maybe the WordPress in itself needs to spread more awareness about that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Because right now we get a notice in the dashboard that maybe the PHP needs to be updated. But for a lot of website users, that can be too much and too little information at the same time, because they may be not aware of how to do things on their hosting site.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We need to spread more awareness about how important the changes in the code are when it comes to the newer PHP versions, and what they can do to improve the security. And how developers should be starting to use more of those new features and the new things that PHP provides on a language level nowadays.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:08:49] <strong>Nathan Wrigley:</strong> WordPress has got this real legacy, I suppose is the right word, of supporting legacy code. So WordPress itself is supported way, way, way back. You can keep using versions of WordPress, which are many, many, many years old. And I wonder what your stance is in terms of PHP, whether or not WordPress runs versions of PHP which are far too old, in your opinion.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So in other words, should WordPress have a policy of, I don&#8217;t know, 8.x only? Or is 7 okay. And I don&#8217;t know what other CMS platforms, you know, Drupal, Joomla as was. I don&#8217;t know what they do, I don&#8217;t know what their posture is.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:09:32] <strong>Milan Petrović:</strong> I think that one of the most important decisions that, it was done with WordPress early on, is that backwards compatibility, because it opened the doors for a wider adoption. Because you don&#8217;t need to change server every year, or you don&#8217;t need to upgrade your software that often. And that helped a lot of hosting companies to provide WordPress hosting very cheaply, because they didn&#8217;t have to have the latest PHP, they didn&#8217;t have to invest much more money into all that. So WordPress got a lot of adoption from backwards compatibility policies.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But in the same time, that also proved a bit of a problem. Because even the WordPress Core code is kind of stuck because of that policy of backwards compatibility. And it&#8217;s not only compatibility with old versions of WordPress, but the old versions of PHP. And we are running now maybe six years behind end of life PHP versions. Because PHP 7.4 end of life was four and a half years ago. And we still support it in the Core.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:10:33] <strong>Nathan Wrigley:</strong> Yeah, I guess it&#8217;s a nice thing to support it. And it, as you described, it was a great way of onboarding the millions of people that came along. But things have moved on.</p>\n\n\n\n<p class=\"wp-block-paragraph\">What would be some of the top level items? And I&#8217;m inviting you to open the scary book and sort of give out the worst case scenarios basically of running legacy code. So really, go to town, frighten us all. What are some of the horrors that await if you&#8217;re quite willing to, as a hosting company, support seven point whatever or beyond, six or five, or dare I say it, four, who knows? What are some of the terrible things that await us?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:11:08] <strong>Milan Petrović:</strong> To be honest, when I was researching some of the statistics and things like that, I was kind of scared when I saw that there are 3 or 4,000 open bug reports for PHP 7 and PHP 5, which are still in use today, and there are WordPress websites running on both of them in the millions. And there are 3 or 4,000 open and confirmed bags that are never going to be fixed. Never. So PHP 7 has thousands of bugs, and I&#8217;m sure that not everything security related, but a big chunk of those bags are related to security.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And there are open exploits that run on the PHP level. They don&#8217;t care really about if you are using WordPress or using something else. It&#8217;s more like a exploit on the level of a, on a server side that can be quite scary because you, even the technical people are not really sure what are all those bugs. Who is going to go through 3,000 or 4,000 bug reports?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:12:05] <strong>Nathan Wrigley:</strong> Yeah, so just to sort of describe that, the fact that there is no more updates to the 7 branch of PHP means that all of those bugs which are publicly available, anybody can go and read great detail about what they are. Well that then means that any hacker can do that, and probably did like a dozen years ago. And so really you are painting a picture there of you are asking for trouble.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:12:30] <strong>Milan Petrović:</strong> There are hosting companies that maybe do things a bit differently because you don&#8217;t need to run PHP as it was created. You can build your own version of PHP. You can patch bugs on your own. And a lot of hosting companies are doing that. But in the same time, that also poses a problem. You are going to run WordPress in your own plugins on a platform that is not actually officially PHP supported. It can have some different quirks that make your code run a bit differently.</p>\n\n\n\n<p class=\"wp-block-paragraph\">A while ago we had the Facebook running their own PHP build, that was quite different from the public PHP. But they used it, and other people started using it. So I don&#8217;t know. Still I think that the official PHP is the one you should be on because you never know what other issues. Even when hosting company patches the PHP they&#8217;re using, maybe they&#8217;re opening doors to something else that is not quite documented on that level.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I think that the best policies, I don&#8217;t expect for WordPress to adopt the latest PHP or only supported PHP versions, but to kind of move quicker on the adoption of the newest version. So maybe we should be quicker to adopt PHP 8.0 or 8.1 is a next minimal required version for WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:13:50] <strong>Nathan Wrigley:</strong> When you say you don&#8217;t expect WordPress to do it, is that simply because it doesn&#8217;t have a history of doing it? Is there a technical reason why WordPress could not keep up with the latest version? I know we&#8217;ve got this plugin architecture where there&#8217;s thousands and thousands of developers who are all doing their own thing, and there&#8217;s all of that. Is there any technical reason why WordPress couldn&#8217;t be on the cutting edge, most up-to-date, latest version?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:14:15] <strong>Milan Petrović:</strong> There are two factors in all that. First one is you can declare, PHP 8 is the minimal version we support. We don&#8217;t support PHP 7.4 anymore. And that means that you don&#8217;t need to make any changes in WordPress at that point. You can declare it because WordPress is compatible with all PHP versions. It works on 8.0 and 8.5. That&#8217;s no problem. But say that branch 7 is no longer supported, you&#8217;re kind of pushing other developers and hosting companies to improve their support for newer versions.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And you don&#8217;t need to make immediate changes to WordPress. But at that point, you are open to modernise the code because now you can have more stricter typing across the board. There are some strict typing things in older PHP versions, but with 8.0, you can do all of that. And it doesn&#8217;t have to be a process that is done immediately. It can be done gradually. You can update parts of the WordPress Core over time. And it&#8217;ll take a few years, to get up to date, but at least you are closing doors to some older versions of PHP, and you are pushing developers as well for plugins to have that policy.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Right now, each developer can have their own plugins supporting any version of PHP you want. For my plugins, I have policy of 8.0 as a minimal version since this year. And, I&#8217;m updating the code as I go along. I don&#8217;t do it, it&#8217;s impossible to do it all at once. And for WordPress, it&#8217;s going to be even worse to make it all up to date. But declaring PHP 8 is a minimal required version, would be a great step in the right direction for wider adoption.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:15:51] <strong>Nathan Wrigley:</strong> Yeah, I think the problem is simply one of the user base, isn&#8217;t it? There&#8217;s just millions of people, thousands of developers all doing their own thing. And casting 8.x, 8.0 and above as the new minimum, there&#8217;s going to be a moment where some things do go wrong.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So that calendar plugin that you&#8217;ve been using for ages, which just works. And sure, you&#8217;ve never really received any updates from the developer, but it just works. Everybody&#8217;s booking on my calendar and we are all good. And then suddenly PHP 8 is required and it turns out the calendar plugin now no longer works.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You can imagine those kind of stories a million times over coming to the fore. But equally, we got to move on. There&#8217;s no way of, you know, because we can&#8217;t in 10 years still have sites on 7.4.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:16:43] <strong>Milan Petrović:</strong> We have sites on five point something. I recently checked the official WordPress tracking. 7.4 is on 20% even now. So we are far away from WordPress ditching the 7 branch. And I think there are still few percent of PHP 5 in all that so.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:17:01] <strong>Nathan Wrigley:</strong> Yes, I regularly look at the, it&#8217;s like a little donut chart, isn&#8217;t it? That is often produced and you gradually see the eight point x whatever section of the pie getting bigger as they produce the next survey. But you&#8217;re right, it&#8217;s still a significant chunk that&#8217;s on 7 and below.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And whilst when I look at that chart, it doesn&#8217;t really bring any alarm bells to the fore, I just think, oh, that&#8217;s a shame. But now that you are presenting this talk, and giving me this information, I realise that that attack surface is worse.</p>\n\n\n\n<p class=\"wp-block-paragraph\">When you gave that talk, who is your target audience? Were you directly sort of aiming at the hosting companies who presumably can do a lot of work very quickly? You know, they could take a million people onto 8 with a little bit of development work and on the back end of their platform. Or are you really encouraging the general WordPress user, like me, to take a bit more interest and make sure that I am going into the cPanel or whatever it is and updating myself? Or is it a bit of both?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:17:59] <strong>Milan Petrović:</strong> For everyone actually. It&#8217;s for developers to be more aware of what they can gain with the new PHP versions. It&#8217;s for hosting companies. Because it&#8217;s not only about security when it comes to the newer PHP. The PHP is faster and faster. So each new version gets you 5 or 10% more performance without doing anything. So PHP 8.5 is more than 50% faster than PHP 7.4. So that&#8217;s a significant update.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I have even, one slide was showing how much less memory PHP 8.5 used to run exactly the same piece of code. So it&#8217;s pretty wild to see that hosting companies are maybe the biggest factor in all this. They will gain a lot more because they&#8217;re going to free a lot of resources to run more websites because PHP is going to use less memory and it&#8217;s going to be faster.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I understand they need to invest a lot of money to do all that. But, I don&#8217;t know, I think that gains from that are very significant, on that level alone.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:18:57] <strong>Nathan Wrigley:</strong> Yeah, so you described there are really compelling scenario. You know, it&#8217;s quicker, it uses less memory, you&#8217;ll save money. I mean what else do you need? You&#8217;ve just presented the entire argument.</p>\n\n\n\n<p class=\"wp-block-paragraph\">However, it hasn&#8217;t happened. So technically speaking, why do you think it hasn&#8217;t happened? Is there an acquisition of new knowledge that is difficult to take in? Is it that simply you would have to, I don&#8217;t know, retrain your staff? How do you understand that it hasn&#8217;t happened? What are the reasons people are digging their heels in and not making these updates?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:19:25] <strong>Milan Petrović:</strong> I kind of make the group of two or three types of hosting companies. One, and that&#8217;s usually more expensive managed hosting solutions. They are forcing the updates. They&#8217;re not maybe on the latest version, but they are forcing their users to use at least three or four versions of PHP back. So maybe 8.2 or 8.3, which is a great step in the right direction.</p>\n\n\n\n<p class=\"wp-block-paragraph\">There is also a problem of support. If something starts breaking, they&#8217;re going to be the first one to be asked about that, because they made the change to the server. So why now website that was working yesterday is no longer working today because of some change made on a hosting level. So there are a lot of factors to play into that adoption.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But on the other hand, there are a lot of developers that have moved on with supporting PHP 8. A lot of plugins are very much updated and, especially popular plugins. They invested a lot of time to do the update. It&#8217;s getting easier to support it. But on the other hand, you have very old websites that are simply cannot move without proper testing, without updating the plugins. And there are cases when you cannot simply update one plugin because something else may break, or you made some changes that will make some other thing break. So it&#8217;s a big puzzle that is definitely not easy to solve, but maybe we should start some work on that as a community to do it, and to move people along.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I don&#8217;t want to say force the change, but make people aware of the benefits. Make people aware of the risks if they continue to run the old and outdated software. And the same goes for not updating plugins, not updating WordPress. No matter how much work is done in that regard, there are still most likely some exploits on a WordPress level for very old versions that at some point someone is going to find out about and exploit.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:21:16] <strong>Nathan Wrigley:</strong> I mean I guess the motto of WordPress was democratised publishing, which means basically make it available to everybody. No matter your level of expertise, make it available to everybody. And I&#8217;m sure that if you were to grab the CEO of any hosting company and say, I can save you money, I can save you resources, and all of those things that you outlined earlier, they would, yeah, we know, we know. But we&#8217;ve got thousands of non-technical people using WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I kind of have this analogy in my head, and it goes a bit like this. Several years ago, I bought a bike. And it sits in my garage and there is my bike. And I expect my bike to work tomorrow in the same way that it did four years ago. And in 10 years, I expect my bike to work. I don&#8217;t expect there to be an update to wheels or gears or the saddle. It doesn&#8217;t need an update. It&#8217;s just a bike. And I need my bike to be a bike and nothing more.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I get the impression that many people treat their WordPress website as the same thing. This sort of static commodity that, sure enough, they pay a monthly fee for it, but it&#8217;s this website. It&#8217;s a thing, and it doesn&#8217;t need changing. And so what I&#8217;m trying to say is, I&#8217;m fairly sure that the hosting companies are met with that an awful lot. The customers who just, it&#8217;s a bike, it&#8217;s a website. Do you know what I mean?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:22:37] <strong>Milan Petrović:</strong> Yeah, but you need to maintain your bike. If you don&#8217;t do it, it&#8217;s going to, your belt is going to rust, your wheels are going to be deflated or whatever. A lot of things can happen with it if you don&#8217;t maintain it. So, we don&#8217;t need to upgrade everything all at once, but we can start from someplace. We can do it gradually. But still, WordPress needs to be the platform that leads the charging that, because it&#8217;s going to force other developers to do it. It&#8217;s going to force hosting companies to start doing it. And it&#8217;s not a big jump on moving just that one version, but it&#8217;s going to help to move things along faster. Let&#8217;s see how it goes in the next few years. But I really don&#8217;t expect for WordPress to drop 7.4 for at least a year or two, maybe even more.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:23:24] <strong>Nathan Wrigley:</strong> I loved your rebuttal of my bike analogy there. That was perfect. That&#8217;s exactly right. The bike will rust, the wheels will be deflated and all of that, yeah. So we need to drag the WordPress users along.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Now, in your presentation, you mentioned something that I have never used, the Vulnerability Lab plugin, which you used to demonstrate the attack. Can you just tell us a little bit about that? Because I&#8217;d be curious to follow that up, and maybe some people listening to this would too.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:23:47] <strong>Milan Petrović:</strong> I started it for, created for this talk specifically to add few examples and to run the code that is going to show those things if you run the plugin on the old version and the new version of PHP. And I do plan to expand on it because there are a lot more PHP security elements that can be demonstrated in that way.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So it can show you, you have like a, in many cases the same code, but if you run it on one platform, you&#8217;re going to get one result. And if you run it on the newer one, you will get something different. So it&#8217;s useful to show, and some of those changes are quite small, those attributes that you can add to the code are very, very small, but they can really help you to improve security of your plugin.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And there are more complex security measures that can be implemented, but the format of the talk wasn&#8217;t really suitable to mention everything. But this was like something to get you started on the path of discovering what else PHP 8 can offer, when it comes to improving the security of the plugins and what possible exploits and vulnerabilities are there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I try to use some obvious things that are very easy to spot. And I&#8217;m sure I did made some of those errors myself in the past. So some of those examples are something that I dealt with when I was upgrading my code. So I&#8217;m sure that a lot of people can see similar problems in their own code, and similar kind of solutions that can help them to overcome those and to make them much more resilient in the future.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:25:17] <strong>Nathan Wrigley:</strong> So is your plugin designed primarily, would you say for developers in mind, or is it something that just a typical end user may get some mileage out of?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:25:26] <strong>Milan Petrović:</strong> No, it&#8217;s more for developers that they can see, they can run that code and see how it behaves on the old version and the new version to demonstrate some of those things. And I will definitely expand it to include more examples in the future. Even for myself to like a document, what can happen if you run something in the old version, and the new version?</p>\n\n\n\n<p class=\"wp-block-paragraph\">I had some suggestions coming to me like, maybe like a pattern library that is going to show what is the pattern that we use with old PHP and how to improve it with a new one, and document which version of PHP is going to support it, and how it&#8217;s going to improve the code.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:01] <strong>Nathan Wrigley:</strong> So is the idea then that you would instal it on various different, let&#8217;s say that you&#8217;ve got a live site and you&#8217;ve got, I don&#8217;t know, a development site and another development site, is that you would put it on each of those, different PHP versions, and just sort of compare and contrast what.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:16] <strong>Milan Petrović:</strong> Yeah, that can be used.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:17] <strong>Nathan Wrigley:</strong> Yeah, in that way. And what&#8217;s the reporting that you get? Is it kind of error logs, you know, that only a developer would be able to understand, or is it in plain language that somebody like me could understand?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:26] <strong>Milan Petrović:</strong> Right now it&#8217;s a bit technical because if you run a certain part of the code, some of those elements do have a visual component in the admin section. You will see, one of the examples, if it&#8217;s run on PHP 7.4, it&#8217;s going to result in a fatal error for sure, depending on the server settings. And if you run it on the new version, you will get a full code running and executing as expected.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So it&#8217;s a bit of a development thing that developers can use themselves to show maybe to potential clients or to website owners what is going to happen if they continue to run the outdated versions of the PHP. So it&#8217;s not just, yeah, the PHP 7.4 is bad, but here it is, why it is bad actually.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:27:12] <strong>Nathan Wrigley:</strong> Okay, that&#8217;s a really interesting use case, isn&#8217;t it? So if I&#8217;m an agency owner and I&#8217;ve got, I don&#8217;t know, a client over here who is absolutely wedded to this plugin, this calendar plugin say, and we know that the development of that plugin has ended years ago, then trying to persuade that client to find something new, or have something new built is difficult.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But with the capabilities of the plugin that you&#8217;ve created, you&#8217;ll be able to show in a sort of readable human way, okay, right. That&#8217;s all very well, but we&#8217;ve got to get onto PHP 8.0. And when we do that, this is going to happen.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So that&#8217;s actually quite a useful tool for agencies to be able to dangle things in front of the noses of their clients. Potentially, I don&#8217;t know, get some new work out of it as well, because there&#8217;s this extra work that needs to be done to bring it up to the modern standards.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:28:01] <strong>Milan Petrović:</strong> Yes. And one example especially demonstrates not only security, it demonstrates the performance. It shows you how much memory that piece of code is using on old version. Almost half the memory is going to be used less with a new version. So that&#8217;s very on the nose demonstration on security, and the performance in the same time. So things like that can help. And I will definitely try to invest more time in showing more examples and anyone can contribute.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It&#8217;s a plugin available on GitHub, so any contributions in that regard are welcome. And we can maybe all work to create like a list of patterns that are something that a lot of people can use, and show different people how the PHP can help them move along.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And again, I don&#8217;t want to sound like we don&#8217;t need whatever WordPress is doing. We still need to use all the security enhancements that WordPress has built in the Core. Escaping, sanitisation. All that is still very important because you cannot solve everything by upgrading PHP and upgrading your code to use some of the PHP features. There are still a lot of security elements in WordPress itself that are very important and should not be replaced, or removed, from the code. There are patterns that are crucial to ensuring the security is on a top level. So combination of what WordPress already has, plus everything we get with the newer PHP is something that we should strive in the future, and to make things better.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And it&#8217;s not that complicated to start with the process. You can start upgrading small things. You can start with stricter typing. You can start with very small changes, and then gradually you can add those new attributes. You can replace some of the functions that you may be used with old version of PHP, but there is something better in the new version. So that&#8217;s something that everyone can do. Do a bit at a time so not everything at once. Spend time and make some gradual upgrades, and that&#8217;s going to help moving along.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:29:57] <strong>Nathan Wrigley:</strong> You are obviously here to talk about where PHP meets WordPress, but presumably you, yourself are gaining intel from the PHP community. Is there a resource, like a central PHP resource that you would direct people to, or would you rather steer them towards kind of WordPress resources? The things that people are doing in the WordPress space and the hosting space. There&#8217;s not really a question there, but it&#8217;s more where do you find your information? Where&#8217;s the most reliable place?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:30:25] <strong>Milan Petrović:</strong> You need to check everything. PHP website is a really good resource to find the information about what&#8217;s coming in the next version of PHP, because the preparations take up to a year to release a new version of PHP. So they&#8217;re now on a cycle that every December we get a new feature version. So in December this year, there is going to be PHP 8.6. And you already know most of the things that are coming to that version. You have the detailed list of changes for every PHP version. And that&#8217;s something that any developer should look at, and to see maybe something that will drive them to upgrade.</p>\n\n\n\n<p class=\"wp-block-paragraph\">In the current usage of third party libraries, there are a lot of libraries used in PHP that have moved on beyond 7.4. There are a lot of libraries that now require 8.1 or 8.2. If you depend on some library for, I don&#8217;t know, parsing URLs, or doing something else, something for security, something for whatever. You may face the problem that if you want to use the latest version of that library, you will need to have the newer PHP version. So you are kind of forced to upgrade your plugin requirements to meet with the requirements of the third party libraries.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And outside of WordPress ecosystem, those libraries will move much faster with the adoption of newer PHPs versions than WordPress itself, because they don&#8217;t deal with millions and millions of websites that are affected. They are creating the library the best way they can. And they want to ensure that their library is secure, that their library has access to the latest features. So they are going to bump requirements for those libraries on their own. And if you are depending on it, you need to do it yourself for your plugin. So it&#8217;s kind of, those libraries are kind of forcing the hand of some developers to upgrade, even if they maybe are not ready at this point to do it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:32:15] <strong>Nathan Wrigley:</strong> Yeah, it certainly sounds like there&#8217;s no lack of information out there. If you make your business to find the information, then it&#8217;s all there. You&#8217;ve just got to make the effort to go and find it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I&#8217;ve kind of run the gamut of everything I wish to ask. However, I&#8217;m very conscious, as I said at the beginning, that this conversation is a little bit above my pay grade. Is there anything that I missed that you wished you had been asked that you wanted to get across?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:32:38] <strong>Milan Petrović:</strong> No, I think we covered a lot of stuff in that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:32:42] <strong>Nathan Wrigley:</strong> Well I&#8217;m glad to hear it. That&#8217;s great. Yeah, thank you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">In which case, I&#8217;m assuming, given that you&#8217;ve come to an event like this and you&#8217;ve put a plugin on GitHub, you are sort of semi available, or very available, to have conversations with people around this. And if that&#8217;s the case, where&#8217;s the best place to find you online? A website or an email address or a Twitter handle or whatever.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:33:00] <strong>Milan Petrović:</strong> We included the slide with the contact information. So even the email, if someone wants to get more information, they can do it on various social networks as well. So any input about all that is welcome. And I&#8217;d be happy to help if someone needs, some pointers or additional information to get started with all this.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:33:21] <strong>Nathan Wrigley:</strong> Well, thank you. That&#8217;s very much appreciated. As always, if you go to the show notes on the WP Tavern website and click on the episode involving Milan, you&#8217;ll be able to find, buried probably towards the bottom, all the different bits and pieces, the wordpress.tv video that will go with his presentation and various other links that have been discussed during the course of this episode.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So with that said, Milan, thank you so much for chatting to me today. I really appreciate it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:33:47] <strong>Milan Petrović:</strong> Thank you. It was really great, and I appreciate your invitation for the interview.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:33:52] <strong>Nathan Wrigley:</strong> You are so welcome. Thank you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:33:53] <strong>Milan Petrović:</strong> Thank you.</p>\n</div></details>\n\n\n\n<p class=\"wp-block-paragraph\">On the podcast today we have <a href=\"https://profiles.wordpress.org/gdragon/\">Milan Petrović</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Milan has been deeply immersed in the WordPress ecosystem since 2007, developing an array of plugins, especially for expanding bbPress forums, and running his own company creating plugins before joining the Freemius team as a full stack developer. With nearly two decades of hands-on experience, Milan has witnessed firsthand the evolution of both the WordPress and PHP landscapes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Many WordPress users may be only partially aware of PHP, perhaps they’ve noticed version numbers in their hosting panels, but few of the millions of WordPress users understand the real impact that PHP versions have on the security and performance of their websites. Milan is here to shine a light on why embracing newer versions, like PHP 8.x, isn’t just good practice but a crucial step for security and efficiency.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Milan begins by recounting his journey through WordPress development. The conversation gets into the heart of his recent WordCamp Europe presentation, which tackles how legacy PHP code exposes sites to thousands of open bugs and vulnerabilities, and why relying on old versions is, as he describes, “an active invitation for automated exploitation.” The discussion explores the contrast between running legacy code and using the “native shields” of modern PHP, and highlights how PHP 8.x not only closes security holes but also delivers major performance boosts, reducing memory usage and accelerating speed.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’re wondering why you should care about the PHP version your site is running on, or you’re a developer interested in practical ways to harden your code, Milan unpacks both the existential risks of outdated PHP and the step-by-step benefits for hosts, agencies, and plugin developers alike.</p>\n\n\n\n<p class=\"wp-block-paragraph\">He introduces his Vulnerability Lab plugin, designed for developers to see first-hand how code exploits play out differently across PHP versions, and makes the case that modernising can happen gradually, one update, one plugin at a time.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’ve ever questioned how your hosting choice or plugin stack could affect your site’s future, or you’re ready to take the first steps towards building more secure and future-proof WordPress products, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://europe.wordcamp.org/2026/session/secure-by-design-hardening-plugins-with-php-8-x/\">Secure-by-design: hardening plugins with PHP 8.x</a> &#8211; Milan&#8217;s presentation at WordCamp Europe 2026</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://bbpress.org\">bbPress</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://www.dev4press.com\">Dev4Press</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://freemius.com\">Freemius</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://github.com/dev4press/vulnerability-lab\"> Vulnerability Lab plugin</a> on GitHub</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 15 Jul 2026 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"Open Channels FM: We are Welcoming InMotion Hosting as our Newest Sponsor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2556962\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://openchannels.fm/we-are-welcoming-inmotion-hosting-as-our-newest-sponsor/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:170:\"InMotion Hosting joins Open Channels FM Podcast as a sponsor, offering reliable hosting with great support. They\'ve been a solid choice for over 25 years. Check them out!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 15 Jul 2026 10:08:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"Open Channels FM: Multi-Layered Security and the Future of Hosting in an AI World\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2556869\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://openchannels.fm/multi-layered-security-and-the-future-of-hosting-in-an-ai-world/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:232:\"In this episode, Adam and Aaron discuss evolving web security in the AI era, emphasizing proactive strategies, layered defenses, and the vital role of hosts in protecting websites against modern threats. Secure your online presence!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 14 Jul 2026 12:41:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"WordPress.org blog: Your Guide to WordCamp US 2026\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=21007\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/news/2026/07/wcus-2026-guide/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:23903:\"<figure class=\"wp-block-image size-large has-custom-border is-style-default\"><img alt=\"WordCamp US: Powered by WordPress, Driven by Community, August 16-19, 2026\" class=\"wp-image-20859\" height=\"321\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser.png?resize=1024%2C321&#038;ssl=1\" style=\"border-top-left-radius: 5px; border-top-right-radius: 5px; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px;\" width=\"1024\" /><figcaption class=\"wp-element-caption\"><img alt=\"📅\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f4c5.png\" style=\"height: 1em;\" /> <strong>August 16-19, 2026 | Phoenix Convention Center</strong>,<strong> Phoenix, Arizona</strong></figcaption></figure>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamp US 2026 returns for another year, this time in Phoenix, Arizona, for four days, August 16 to 19. It comes at a moment of real energy for WordPress, as artificial intelligence reshapes everyday workflows, the business of building and maintaining sites is shifting, and new people keep discovering the platform every day. Four tracks address this moment, covering AI, Honing Your Skills, Technical WordPress, and Beginner WordPress. Between them, there is something for everyone, whether you lead an agency, freelance for local clients, write code for a living, or are building your very first site. Whatever draws you in, you will leave Phoenix better equipped and better connected than ever.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-c9c19393 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-align-center wp-element-button\" href=\"https://us.wordcamp.org/2026/tickets/\">Get Your Tickets</a></div>\n\n\n\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-align-center wp-element-button\" href=\"https://us.wordcamp.org/2026/contributor-day/\">Sign Up for Contributor Day</a></div>\n</div>\n\n\n\n<p class=\"wp-block-paragraph\">Phoenix itself rewards anyone who adds a day or two to their trip. The capital of Arizona sits in the Sonoran Desert and pairs a lively downtown with a rich arts and food scene. The Roosevelt Row arts district is known for its galleries, murals, and independent restaurants. It is also home to one of the largest art walks in the region. Nearby, Chase Field and the Footprint Center host professional baseball and live shows, and the surrounding desert offers striking scenery at places like Papago Park and the Desert Botanical Garden.</p>\n\n\n\n<div class=\"wp-block-jetpack-slideshow aligncenter\"><div class=\"wp-block-jetpack-slideshow_container swiper\"><ul class=\"wp-block-jetpack-slideshow_swiper-wrapper swiper-wrapper\"><li class=\"wp-block-jetpack-slideshow_slide swiper-slide\"><figure><img alt=\"\" class=\"wp-block-jetpack-slideshow_image wp-image-21052\" height=\"1147\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-1.png?resize=1920%2C1147&#038;ssl=1\" width=\"1920\" /></figure></li><li class=\"wp-block-jetpack-slideshow_slide swiper-slide\"><figure><img alt=\"\" class=\"wp-block-jetpack-slideshow_image wp-image-21053\" height=\"612\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-2.png?resize=1024%2C612&#038;ssl=1\" width=\"1024\" /></figure></li><li class=\"wp-block-jetpack-slideshow_slide swiper-slide\"><figure><img alt=\"\" class=\"wp-block-jetpack-slideshow_image wp-image-21054\" height=\"612\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-3.png?resize=1024%2C612&#038;ssl=1\" width=\"1024\" /></figure></li><li class=\"wp-block-jetpack-slideshow_slide swiper-slide\"><figure><img alt=\"\" class=\"wp-block-jetpack-slideshow_image wp-image-21056\" height=\"612\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-4.png?resize=1024%2C612&#038;ssl=1\" width=\"1024\" /></figure></li></ul><a class=\"wp-block-jetpack-slideshow_button-prev swiper-button-prev swiper-button-white\"></a><a class=\"wp-block-jetpack-slideshow_button-next swiper-button-next swiper-button-white\"></a><a class=\"wp-block-jetpack-slideshow_button-pause\"></a><div class=\"wp-block-jetpack-slideshow_pagination swiper-pagination swiper-pagination-white\"></div></div></div>\n\n\n\n<h2 class=\"wp-block-heading\">Start with Contributor Day</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The week begins with <a href=\"https://us.wordcamp.org/2026/contributor-day/\">Contributor Day</a>, a full day set aside for giving back to the project that makes everything else possible. Attendees will gather in teams to improve WordPress itself, from Core code and documentation to design, training, accessibility, and translation.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">WordPress is so unique because we&#8217;re not just a product; we&#8217;re a movement.</p>\n<cite>Matt Mullenweg, WordPress Cofounder</cite></blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">Contributor Day is open to everyone, whatever your skills, and whether or not you have ever contributed before. Come and experience the open source collaboration that is at the heart of the project. <a href=\"https://us.wordcamp.org/2026/contributor-day/\">Signing up</a> in advance helps us prepare our veteran contributors and provide you with the best experience.</p>\n\n\n\n<figure class=\"wp-block-gallery alignfull has-nested-images columns-6 is-cropped has-black-background-color has-background wp-block-gallery-1 is-layout-flex wp-container-core-gallery-is-layout-db4b8a9e wp-block-gallery-is-layout-flex\" style=\"border-width: 20px; border-radius: 2px;\">\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-19085\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/Z632926.jpg?resize=1024%2C683&#038;ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-19089\" height=\"1707\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8723-scaled.jpg?fit=1024%2C683&amp;ssl=1\" width=\"2560\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-19110\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC04553.jpg?resize=1024%2C683&#038;ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-21080\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC8737.jpg?resize=1024%2C683&#038;ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-21078\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0748.jpg?resize=1024%2C683&#038;ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-21079\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0768.jpg?resize=1024%2C683&#038;ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-21077\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0379.jpg?resize=1024%2C683&#038;ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-21074\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0167.jpg?resize=1024%2C683&#038;ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-21076\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0331.jpg?resize=1024%2C683&#038;ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-21083\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/Z636050.jpg?resize=1024%2C683&#038;ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-21082\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/Z632983.jpg?resize=1024%2C683&#038;ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-19083\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8887-2.jpg?resize=1024%2C683&#038;ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n</figure>\n\n\n\n<h2 class=\"wp-block-heading\">Explore Real-World Projects on Showcase Day</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Day 2, Showcase Day, is dedicated to real-world WordPress projects and focuses on how teams develop features, manage publishing, and run demanding sites at scale. It brings to life the kind of work collected in the WordPress <a href=\"https://wordpress.org/showcase/\">Showcase</a>, the directory of standout sites built on the platform, from global brands like <a href=\"https://wordpress.org/showcase/disney-connect/\">Disney</a> to community publishers and institutions like <a href=\"https://wordpress.org/showcase/nasa/\">NASA</a>. Past WordCamp US Showcase days have brought teams from the likes of <a href=\"https://www.youtube.com/watch?v=PGvh7fCOUk0\">Wikimedia</a> and <a href=\"https://www.youtube.com/watch?v=MHk-Us00pTk\">CANCOM</a> to explain how they manage large, high-traffic systems. Other sessions took a builder&#8217;s perspective on catching bugs faster with automated testing and even running the Block Editor inside a custom app.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-21064\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/Z637241.jpg?resize=1024%2C576&#038;ssl=1\" width=\"1024\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Dive Into Two Conference Days</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The two main conference days will bring a full slate of sessions across four tracks. First among them is the AI track, which treats the technology as a tool to handle with care rather than a headline to chase. Its sessions set guardrails for AI-assisted development, prepare for a web where AI agents become the visitors a site must serve, and weigh the legal and ethical questions of putting AI tools in the hands of clients. Speakers from companies like Elementor will be taking a look at where the web is heading, while keeping the focus on what teams can adopt today without giving up control of their work.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The Technical WordPress and Honing Your Skills tracks cover the craft and business of building with WordPress. On the technical side, sessions dig into modern development workflows, automated testing with tools like the browser-based <a href=\"https://playground.wordpress.net/\">WordPress Playground</a>, and plugin pipelines. The Honing Your Skills track adds practical guidance on pricing, maintenance, and how the agency model is changing as clients ask for more. The Beginner WordPress track keeps the door open for newcomers, with approachable sessions that make your first WordCamp less daunting. Hands-on work runs through all of these tracks, so alongside the talks, attendees will find workshops and working sessions where they can build something real and leave ready to apply it to their own projects.</p>\n\n\n\n<figure class=\"wp-block-gallery alignfull has-nested-images columns-6 is-cropped has-black-background-color has-background wp-block-gallery-2 is-layout-flex wp-container-core-gallery-is-layout-db4b8a9e wp-block-gallery-is-layout-flex\" style=\"border-width: 20px;\">\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-19080\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5641.jpg?resize=1024%2C683&#038;ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-21086\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/Z633923.jpg?resize=1024%2C683&#038;ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-21085\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC9190.jpg?resize=1024%2C683&#038;ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n\n\n\n<figure class=\"wp-block-image size-full wp-lightbox-container\"><img alt=\"\" class=\"wp-image-21065\" height=\"1280\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/Z637801.jpg?resize=1920%2C1280&#038;ssl=1\" width=\"1920\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-21084\" height=\"1024\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/Z637088-1.jpg?resize=819%2C1024&#038;ssl=1\" width=\"819\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-21081\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC9344.jpg?resize=1024%2C683&#038;ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n</figure>\n\n\n\n<p class=\"wp-block-paragraph\">Not all of the value happens in the session rooms. On the show floor, the <a href=\"https://us.wordcamp.org/2026/47-days-out-whats-waiting-for-you-at-wordcamp-us-2026/#happiness\">Happiness Bar</a> is a free, drop-in help desk where you can sit down with a volunteer WordPress expert and work through whatever has you stuck. The <a href=\"https://us.wordcamp.org/2026/47-days-out-whats-waiting-for-you-at-wordcamp-us-2026/#sponsor\">Sponsor Hall</a> next door is where many of the best unplanned conversations happen, and its <a href=\"https://us.wordcamp.org/2026/47-days-out-whats-waiting-for-you-at-wordcamp-us-2026/#career\">Career Corner</a> gives anyone weighing their next move a relaxed place to browse the job board, meet company reps, and see who is hiring across the ecosystem.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Plan Your Trip to Phoenix</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Getting to Phoenix is straightforward. The <a href=\"https://us.wordcamp.org/2026/about/venue/\">Phoenix Convention Center</a> sits in the heart of downtown, less than five miles from Phoenix Sky Harbor International Airport (PHX) and about 15 minutes away on the <a href=\"https://www.valleymetro.org/how-to-ride/rail\">Valley Metro light rail</a>. WordCamp US has a room block at the Sheraton Phoenix Downtown, close to the convention center, so <a href=\"https://book.passkey.com/event/51129263/owner/68648/home\">book your hotel</a> before the block fills, and <a href=\"https://us.wordcamp.org/2026/tickets/\">reserve your ticket</a> if you have not already. The full event lineup and details live on the <a href=\"https://us.wordcamp.org/2026/schedule/\">WordCamp US 2026 site</a>, and the conference closes with an evening social before everyone heads home.</p>\n\n\n\n<div class=\"wp-block-group has-off-white-background-color has-background is-nowrap is-layout-flex wp-container-core-group-is-layout-7c1a8141 wp-block-group-is-layout-flex\">\n<ol class=\"wp-block-list has-off-white-background-color has-background has-large-font-size wp-container-content-9cfa9a5a\">\n<li><strong><img alt=\"🎟\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f39f.png\" style=\"height: 1em;\" /> </strong><a href=\"https://us.wordcamp.org/2026/tickets/\">Reserve your ticket</a></li>\n\n\n\n<li><img alt=\"🛏\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f6cf.png\" style=\"height: 1em;\" /><a href=\"https://us.wordcamp.org/2026/about/travel-accommodation/\"> Find accommodations</a></li>\n\n\n\n<li><img alt=\"🚌\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f68c.png\" style=\"height: 1em;\" /><a href=\"https://us.wordcamp.org/2026/plan-your-trip-to-phoenix/\"> Plan your trip</a></li>\n\n\n\n<li><img alt=\"📍\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f4cd.png\" style=\"height: 1em;\" /><a href=\"https://www.visitphoenix.com/\">Explore Phoenix</a></li>\n</ol>\n\n\n\n<figure class=\"wp-block-image size-full wp-container-content-577e1c61\" style=\"margin-top: 0; margin-right: 0; margin-bottom: 0; margin-left: 0;\"><img alt=\"\" class=\"wp-image-21164\" height=\"2560\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/route-66-traveller-boy-scaled.png?resize=2066%2C2560&#038;ssl=1\" width=\"2066\" /></figure>\n</div>\n\n\n\n<h3 class=\"wp-block-heading\">Help Us Spread the Word!</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Whether attending in person or following along online, share your experience and help welcome others to the WordPress community. Use the #WCUS and #WordPress hashtags to tell your story on social.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 13 Jul 2026 13:07:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Nicholas Garofalo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"Open Channels FM: Understanding Open Source Law and AI Impacts in Modern Software Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2556631\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"https://openchannels.fm/understanding-open-source-law-and-ai-impacts-in-modern-software-development/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:214:\"In this Open Web Conversations episode, host Anne Bovelett chats with lawyer Carlo Piana about open source software\'s legal challenges, AI\'s impact on coding, and the importance of proper licensing and attribution.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 13 Jul 2026 08:54:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:126:\"Gutenberg Times: Gutenberg Changelog #132 – Proposals for Core, Calls for Testing, WordPress 7.1 and Gutenberg 23.4 and 23.5\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://gutenbergtimes.com/?post_type=podcast&p=46018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://gutenbergtimes.com/podcast/gutenberg-changelog-132/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:69012:\"<p class=\"wp-block-paragraph\">In episode 132 of the <em>Gutenberg Changelog</em> podcast, host Birgit Pauli-Haack and guest Ellen Bauer explore the latest updates within the WordPress ecosystem. The conversation centers on the releases of Gutenberg 23.4 and 23.5, the recent WordPress 7.0.1 maintenance update, and the strategic roadmap for the upcoming WordPress 7.1.A significant portion of the episode is dedicated to major merge proposals destined for WordPress 7.1 that aim to evolve the core software. </p>\n\n\n\n<p class=\"wp-block-paragraph\">These include &#8220;Core Abilities&#8221; for AI agent integration, the new &#8220;Knowledge&#8221; post type for managing site standards and guidelines, and &#8220;Design System Theming&#8221; to enhance consistency and accessibility via CSS custom properties. The hosts also discuss the shift toward mandatory iframing for the post editor in block-based themes, a critical architectural change designed to improve content rendering.Beyond core architecture, the episode highlights user-focused improvements such as enhanced responsive editing controls, which now allow for granular canvas resizing without preset limits. They also touch on media-related updates, including aspect ratio controls in the media editor, and improvements to the Icon block. </p>\n\n\n\n<p class=\"wp-block-paragraph\">With WordPress 7.1’s Beta 1 approaching, Birgit and Ellen emphasize the importance of community involvement, encouraging developers and site owners to participate in ongoing &#8220;Call for Testing&#8221; efforts. Whether discussing React 19 status or new grid layout properties, the episode serves as a comprehensive briefing for anyone looking to stay current with the rapidly changing landscape of the block editor and WordPress core development.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-132/#shownotes\">Show Notes</a> / <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-132/#transcript\">Transcript</a></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Editor: <a href=\"https://www.linkedin.com/in/sandy-reed/\">Sandy Reed</a></li>\n\n\n\n<li>Logo: <a href=\"https://markuraine.com/\">Mark Uraine</a></li>\n\n\n\n<li>Production: <a href=\"https://icodeforapurpose.com\">Birgit Pauli-Haack</a></li>\n</ul>\n\n\n\n<p class=\"has-larger-font-size wp-block-paragraph\" id=\"shownotes\"><strong>Show Notes</strong></p>\n\n\n\n<h2 class=\"wp-block-heading\">Special Guest: Ellen Bauer</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://x.com/ellenbauer\">On X (former Twitter) @ellenbauer</a></li>\n\n\n\n<li><a href=\"https://profiles.wordpress.org/elmastudio/\">WordPress.org Ellen Bauer</a></li>\n\n\n\n<li><a href=\"https://bsky.app/profile/ellenbauer.bsky.social\">Bluesky</a></li>\n\n\n\n<li><a href=\"https://www.elmastudio.de/en/\">ElmaStudio</a></li>\n\n\n\n<li>Previews appearances on the show\n<ul class=\"wp-block-list\">\n<li><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-124-gutenberg-22-wordpress-6-9/\">Gutenberg Changelog #124 – Gutenberg 22.0 and WordPress 6.9</a></li>\n\n\n\n<li><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-117-woocommerce-starter-theme-and-blocks/\">Gutenberg Changelog 117 – WooCommerce Starter Theme and Blocks, WordCamp Europe, and Gutenberg 20.7 and 20.8</a></li>\n\n\n\n<li><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-105-gutenberg-18-9-block-themes-and-woocommerce/\">Gutenberg Changelog #105 – Gutenberg 18.9, Block Themes and WooCommerce</a></li>\n\n\n\n<li><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-88-wordpress-6-4-and-gutenberg-16-5/\">Gutenberg Changelog #88 – WordPress 6.4 and Gutenberg 16.4 and 16.5.</a></li>\n</ul>\n</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Announcements</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/test/2026/07/03/call-for-testing-responsive-styling/\">Call for Testing: Responsive Styling</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/05/21/media-editor-modal-call-for-testing/\">Modal Media Editor</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/06/04/call-for-testing-client-side-media-processing/\">Client media processing</a> and the </li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/06/03/announcing-a-collaborative-editing-outreach-effort-for-7-1/\">Real-time collaboration outreach effort </a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/06/10/call-for-testing-unicode-email-addresses/\">Call for Testing: Unicode email addresses</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Community Contributions</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2026/07/02/merge-proposal-expanding-wordpress-core-abilities/\">Merge Proposal: Expanding WordPress Core Abilities</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/06/22/merge-proposal-guidelines-built-on-knowledge/\">Merge Proposal: Guidelines built on Knowledge</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/07/07/merge-proposal-design-system-theming/\">Merge Proposal: Design System Theming</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">What&#8217;s released</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://wordpress.org/news/2026/07/wordpress-7-0-1-maintenance-release/\">WordPress 7.0.1</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/07/01/wordpress-7-0-1-rc1-is-now-available/\">WordPress 7.0.1 RC1</a></li>\n\n\n\n<li><a href=\"https://gutenbergtimes.com/?p=45920&amp;preview=1&amp;_ppp=99b8f1f429\">WordPress 7.0.1 Fixes Registration Spam, wp_kses() CSS Corruption, and 7.0 Admin Design Glitches</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/06/19/roadmap-to-7-1/\">Roadmap to 7.1</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Post Editor iframed </h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li> <a href=\"https://github.com/WordPress/gutenberg/pull/74042\">Post editor: always iframe #74042</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/02/24/iframed-editor-changes-in-wordpress-7-0/\">iframed Editor Changes in WordPress 7.0</a> (February 2026) </li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/12/preparing-the-post-editor-for-full-iframe-integration/\">Preparing the Post Editor for Full iframe Integration</a> (November 2025)</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2021/06/29/blocks-in-an-iframed-template-editor/\">Blocks in an iframed (template) editor</a> (June 2021)</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Punted from 7.1 </h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2026/07/07/the-classic-block-stays-in-the-inserter-for-wordpress-7-1/\">The Classic block stays in the inserter for WordPress 7.1</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/06/05/react-19-upgrade-temporarily-reverted-in-gutenberg/\">React 19 upgrade temporarily reverted in Gutenberg</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Gutenberg releases</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2026/06/17/whats-new-in-gutenberg-23-3-03-jun-2/\">What’s new in Gutenberg 23.4? (June 17, 2026)</a>\n<ul class=\"wp-block-list\">\n<li>Docs: Auto-generate per-block API reference pages from block.json. (<a href=\"https://github.com/WordPress/gutenberg/pull/77612\">77612</a>) </li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/05/05/proposal-auto-generate-block-editor-handbook-docs-from-block-json/\">Proposal: Auto-generate Block Editor Handbook docs from block.json</a></li>\n\n\n\n<li>Documentation pages: <a href=\"https://developer.wordpress.org/block-editor/reference-guides/core-blocks/\">Core Blocks Reference</a></li>\n</ul>\n</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/07/01/whats-new-in-gutenberg-23-5-july-1-2026/\">What’s new in Gutenberg 23.5? (July 1, 2026)</a></li>\n</ul>\n\n\n\n<p class=\"has-large-font-size wp-block-paragraph\">Stay in Touch</p>\n\n\n\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow\">\n<ul class=\"wp-block-list\">\n<li>Did you like this episode? <a href=\"https://lovethepodcast.com/gutenbergchangelog\"><strong>Please write us a review </strong></a></li>\n\n\n\n<li>Ping us on X (formerly known as Twitter) or send DMs with questions. <a href=\"https://twitter.com/gutenbergtimes\">@gutenbergtimes </a>and <a href=\"https://twitter.com/bph\">@bph</a>.</li>\n\n\n\n<li><em>If you have questions or suggestions, or news you want us to include, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. </em></li>\n\n\n\n<li><em>Please write us a review on iTunes! <a href=\"https://gutenbergtimes.com/itunes/\">(Click here to learn how)</a></em></li>\n</ul>\n</div></div>\n\n\n\n<p class=\"has-large-font-size wp-block-paragraph\" id=\"transcript\"><strong>Transcript</strong></p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Welcome to our 132nd episode of the Gutenberg Changelog podcast. In today&#8217;s episode, we will talk about proposals for core, calls for testing Gutenberg 23.4, Gutenberg 23.5, and whatever side ideas we have about 7.1, which is in the works. I&#8217;m your host, Birgit Pauli-Haack, curator at the Gutenberg Times and a full time core contributor for the WordPress open source project sponsored by Automattic. With me today on the show, and I&#8217;m very delighted to tell you that is Ellen Bauer, product manager at WordPress.com and early adopter of block themes. Thank you for joining me, Ellen. How are you today?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Thank you very much. Always happy to be here. I&#8217;m great. I just landed back in Bangkok this week where we are. I&#8217;m staying here a little bit longer with my family this year from Germany, visiting family and attending a meetup. And yeah, it&#8217;s good to kind of do that travel because it always inspires me to get out of a routine. And yeah, I&#8217;m really glad I&#8217;m here now and motivated.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> To get back into working, improving WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> That&#8217;s a great time to spend in Germany. And I hope you had luck with the weather.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer</em>: Well, there was this heat wave in the second week. It completely knocked me out, to be honest.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yeah, that was really hard. And a lot of people say that.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> It was great and went on the last day I went to Legoland for the first time, which was also an experience and exhausting, but great.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> That’s here between Munich and Augsburg.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Yeah, I think it&#8217;s close. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah, between my first time. Oh, nice. Yeah, maybe I should go there too. But it is fun.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> It is fun. Maybe not. I don&#8217;t recommend to go in the summer on a Sunday, which we did, but. Oh yeah, that&#8217;s actually really fun.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Family day. Yeah. So you mentioned you attended the meetup in Porto. What was your takeaway from the meetup with digital?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> So it was actually the main reason I came to Europe for it was the first time all products meetup from Automattic in beautiful Portugal for me, also the first time I&#8217;ve been to Portugal, which shouldn&#8217;t happen to not visit before. But it was really cool. I love Portugal. Really lovely people, beautiful vibe, nice weather. Yeah, it was really relaxing, really a treat. And then very inspiring and motivating to be in the product group for the first time all together in a nice setting and we had amazing conversations. For me, I also got to know my team a little bit better because I just sort of recently switched into dot com, so that was helpful. But yeah, also a lot of meaningful, deep conversations and I&#8217;m really, really motivated after that meetup.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Oh yeah. So when you said meetup, I&#8217;m still in the community brain, so I thought it might have been a WordPress meetup because I spent some time. And that&#8217;s probably also the reason why my brain went there instead of the internal. Because I spent some time with meetups, local WordPress meetups in Salzburg and in Erfurt and also in Munich. I restarted the meetup here in Munich with a few of the original founders and some other people and. And it&#8217;s a totally different vibe than a WordPress conference.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> That is true. I love meetups.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> You meet 15 maximum 20 people and then you learn more about how they use WordPress, what they really move a normal user. So it kind of grounds you much better than kind of always being in the contributor section, kind of.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> So that is true. Well, there was WordCamp Europe, which I didn&#8217;t attend because it was just so much. I attended WordCamp Asia, which I also loved this year. That was such an amazing experience and very motivating. And I talked to a lot of people who are meetup organizers in India and I really now want to visit one of their meetups. It sounds fun. I also visited the meetup here in Bangkok before and I love the people there, the really tight community. And I&#8217;m also. I have been thinking for many years now that I should actually start a meetup in our town in New Zealand. I haven&#8217;t committed, but I&#8217;m always coming back thinking about it. So maybe I should just commit and do that because it would be cool to have like a local.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> In New Zealand. There aren&#8217;t many around, but it would be cool.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Well, the first thing that you need is a co-organizer. So don&#8217;t start until you have a second person to do that because we travel a lot. Well, I travel a lot and I cannot be at every meetup, so I need somebody else to do that. So that was kind of back of mind.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> That&#8217;s a good advice.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah. And the meetups in India, they&#8217;re really big. They&#8217;re 40, 50 people.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> I talked to someone and. And they have 200 people every month on Surat. I was like, I want to come. Yeah, it&#8217;s amazing. Like, I want to visit.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> It&#8217;s a small word camp for an evening kind of thing.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> That is so true.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Calls for Testing</h3>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> All right. Yeah. So work for 7.1 is progressing and there are calls for testing out, and this is the first time that there are so many out there. There are five of them. And if you want to learn what&#8217;s really in 7.1, there&#8217;s no better way to take a deep dive and heed the call for testing. </p>\n\n\n\n<p class=\"wp-block-paragraph\">So there&#8217;s a call for testing for the responsive styling and yes, it&#8217;s coming to WordPress now. And then there&#8217;s a call for testing for the new modal media editor that opens up when you click on the crop icon in the toolbar of an image block or a cover block. And then there is the call for testing for the client media processing. That&#8217;s a feature that comes to 7.1 where the client, the browser is actually doing a lot of work in uploading the upload side of the image uploads and the resizing and then dumps it into the WordPress media library. </p>\n\n\n\n<p class=\"wp-block-paragraph\">There&#8217;s also a real time collaboration outreach effort that is also a call for testing. And then there&#8217;s a call for testing for getting Unicode into email addresses. And that&#8217;s kind of fun too. So the testing has done an amazing job putting those calls for testing together because you get instructions on how to use it and videos to show you how to use it and then the instructions also for the testing. So your mental work on how do I test this is already done. You&#8217;re just going to follow the script and, and then have room in your mental room to observe your feelings for whatever you&#8217;re doing and kind of try to, to verbalize them and share your feedback. So it&#8217;s really interesting and I hope you dear listeners are going to heed those calls. One or two of them. You don&#8217;t have to do all of them. Yeah, I don&#8217;t grade you, but there will be a test. Yeah. </p>\n\n\n\n<h3 class=\"wp-block-heading\">Community Contributions</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Then there are also two. Well, I said two, but there are actually three merge proposals from the contributors. There&#8217;s new things coming to WordPress Core. One is expanding the WordPress Core abilities. It&#8217;s a merge proposal to add three read-only abilities to cover the settings, content and users for AI. And it gives AI clients real tools to call so the agents can understand what your site&#8217;s configuration, post and people are doing. There&#8217;s a discussion should this be in core, should this be a plugin and all that you can read up on the post. And the second one is also for AI is the guidelines to build knowledge on your website. Yeah, what&#8217;s your tone about what&#8217;s the tone of voice, the expression, what the topic is about and what the members are, what the standards are and all the notes for revision and capabilities. So an AI agent could follow those instructions as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And for people who manage multiple sites with one AI they can actually it&#8217;s different for every site. So it&#8217;s really important to have that on the site to give that that&#8217;s a new content type and new settings pages for these things. So you can even use your AI to update those guidelines. There&#8217;s one thing and then of course the last one is the bigger one and that&#8217;s a merge proposal for the design systems theming Andrew Duthie published a merge proposal bringing design tokens and new theme components to WordPress built by the Gutenberg Components team. But it turns the hard coded admin styles into CSS custom properties so your plugins and screens stay consistent and accessible. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Then a color ramp tool generates harmonious accessible scales from just two seed colors and the user color scheme reaches the site editor which will come into I think 7.1. So with a dark mode on the horizon. So it&#8217;s a good time to get involved in the discussion now, dear listeners, and to make your point of view listen to and converse with others on the impact for you and your business and for your clients because that&#8217;s where the decisions are made. Some of them are already made but they are loosely held, so to speak. </p>\n\n\n\n<p class=\"wp-block-paragraph\">There&#8217;s a whole aspect of WordPress is we have strong opinions but they&#8217;re loosely held. If you have a good argument and you have a good use case or a different point of view, you are listened to. Of course if aired respectfully and even if it&#8217;s not respectful it should be because we all want to do the same thing. So the links to all the merge proposals and calls for testing will be in the show notes. You get to pick what you are interested in and so that&#8217;s a whole thing that happened in the last three weeks when we didn&#8217;t have a Gutenberg change log. So I wanted to catch you up. Any thoughts on that Ellen, that you want to share with our listeners?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> I think on the merge proposals but I think for the calls for testing the responsive styling of course sticks out to me because we have been calling for that for so long and the user the feedback was always there like what is that without responsive styling? So now here it is. So yeah go ahead and test it and I will do the same and kind of contribute to make it better or improve what. What we can. But here we go. We finally have. I think the number one ask always this is missing in Gutenberg.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah. I think the number one ask is not the responsive design because Gutenberg is responsive in certain areas. It&#8217;s a viewpoint. It&#8217;s a media kind of thing. Yeah. So what is a tablet? What is a mobile. And to change things for those screen sizes. And there was a big hesitation and there&#8217;s. On the developer blog, there&#8217;s an article about intrinsic design that&#8217;s built into Gutenberg. And I think the thinking was, okay, intrinsic design is what comes after media queries. Comes after. So because we need to also talk to what is component in the container queries in CSS and all that. And at the start of Gutenberg people wanted to push the envelope of intrinsic design and then see what&#8217;s missing. And. And now we know where it all goes and how to. To change it. And there is a. Yeah, we talk about it a little later when we come to that. Yeah, but so that&#8217;s kind of. That part why it took so long, I think was the reason why I kind of went on the drain there.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> That is true. I&#8217;m glad that we didn&#8217;t do like earlier versions of it. It seems late, but yeah, there&#8217;s. There&#8217;s a reason.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> But I think, yeah, a lot of plugin companies actually filled that gap quite nicely. I also saw a few implementations where you didn&#8217;t have three viewports or breakpoints, you had six, so. And I kind of couldn&#8217;t imagine that a normal user can keep in their head six different sizes to control the styling and when something needs to be changed to find it again where that actually was changed. I get the hesitation. So yeah, yeah..</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> You quickly go a little overboard with that. And I&#8217;m also glad that we didn&#8217;t do that on the core level.</p>\n\n\n\n<h3 class=\"wp-block-heading\">What’s Released &#8211; WordPress 7.0.1</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Birgit Pauli-Haack: Yeah. So that brings us to what&#8217;s released and it&#8217;s release week kind of thing. So on Wednesday and we&#8217;re recording this on Friday, July 10, Thursday, July 9, WordPress 7.0.1 was released with bug fixes from the major release. And the release candidate announcement has a list of all the fixes in track and from the Gutenberg repo, </p>\n\n\n\n<p class=\"wp-block-paragraph\">I&#8217;m preparing an article for the Gutenberg Times. I will probably put in the show notes about what the fixes actually did is the WPKSS or however say that CSS corruption on some of the admin design glitches and some more. So you can have a summary of that. Yeah. </p>\n\n\n\n<p class=\"wp-block-paragraph\">On Wednesday, just the day before 7.0.1, a user ask in the core channel, what is. I see all the communication. Yeah. What is the latest version actually, and at that time it was still 7.0, but we say but tomorrow it&#8217;s going to be 7.0.1. 7.0.1. Yes. Yeah, yeah. </p>\n\n\n\n<p class=\"wp-block-paragraph\">So 7.1 last month Anne McCarthy posted the roadmap 7.1. It was aspirational and also very concise with an outline and links to the tracking issue for the many features contributors have been working towards. Beta 1 of 7.1 is scheduled for next week. That&#8217;s July 15th. And by then we will know the full picture of what made it and didn&#8217;t make it into the release features from the Gutenberg plugin releases 22.6 through 23.6 will come to 7.1 unless they&#8217;re behind an experiment flag or plugin or plugin only as guardrail 23.6 release candidate. And that&#8217;s what&#8217;s getting into the beta version is on July 14, so one day before the beta version, because that&#8217;s where all the NPM packages are created and all the things get into the branches. Right feature branch. </p>\n\n\n\n<p class=\"wp-block-paragraph\">The final release of 23.6 is moved to July 22nd. That was kind of decided by the release tech leads to get it all just in time for beta and organize that. So the deadline for enhancement into the plugin on 7.1 is July 14, the day before beta. So if you&#8217;re a contributor and you want to get the feature that you were working on in this weekend is probably crucial because it also needs to be reviewed and approved. So give people time to get in there. </p>\n\n\n\n<p class=\"wp-block-paragraph\">So yeah, what should be on your radar for 7.1 is the mandatory iframe of the post editor. We mentioned it before. It actually has also a lead time to come to this point is the post editor runs inside or the block editor should run inside an iframe because it isolates the content from your admin styles and makes the viewport units and media queries work correctly against the editing canvas rather than the browser window. And in 7.1, iframing becomes more enforced for block based themes or for all themes because it ensures that canvas behaves predictably and the blocks render accurately for both the post editor and the site editor, template editor and pattern editor and plugin developers. </p>\n\n\n\n<p class=\"wp-block-paragraph\">So plugin developers who have not updated their Block collections from version 2Block JSON version 2 to 3 should actually upgrade to make this all work. If you want to catch up on the newest discussion, there&#8217;s a Gutenberg PR that&#8217;s called Always the post editor for book theme. And that&#8217;s the 79819. And if you put that in your playground, you can actually add some of the plugins or your staging site, or add it to the staging site, then you can test your things. I think the biggest problems are sites that are maintained by people that do not read the make blog or do not listen to podcasts or read blog posts about their site or the software. And those are sites that haven&#8217;t been maintained for a while, otherwise they would have already upgraded things. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> So block themes need to do anything too. They haven&#8217;t. No. Right.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> I haven’t looked into that.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> It&#8217;s a problem for blocks. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> That are in the block plugin collections.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah. That only. They were only meant for post editor and have never been used inside editor or something like that. Because those would have broken already. Because the site editor since 2020 kind of uses an iframe version. So if you use the block in a template or use the pages thing from the site editor, the pages administration from the site editor, you will know when the block breaks. And in the post editor, if you go into the console, you see the notification that it&#8217;s going to be deprecated. But if you&#8217;re only in the post editor and never look at anything else and those blocks might break if they&#8217;re not updated.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> What should they do if this happened to them?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> There are some guardrails in place and there were two PRs. That one is the hard kind of, okay, we do all the iframe insight and that&#8217;s going to be in beta. And in beta, listening to the feedback will decide if there will be a switch to the other less hard choice there in terms of saying, okay, if it&#8217;s a block theme, it&#8217;s going to be an iframe post editor. But if it&#8217;s not a block theme and. Or if there are blocks on the page that are on the old version, like the version 2, then it will not be iframed, but that is subject to change. It&#8217;s kind of. There&#8217;s a trial and error kind of process here to figure out what is the best way move forward. Because the first post blog post about that was actually published in June ‘21, so five years. And then there was another one in November 2025, and there was another one in February ‘26. So there is a lot of leeway or runway for agency developers and plugin developers to kind of update, but sooner or later there will be a push to make it final and then deal with the consequences. Yeah. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Anne McCarthy&#8217;s roadmap included two updates that we already know have been already punted. So that&#8217;s the update to React 19 and the deprecation of the classic block. Those things have been punted. And there are blog posts on the make blog for the reasons and next steps for that. It&#8217;s pretty much the classic blog where there was a lot of communication around it that said, okay, maybe it&#8217;s not a good time yet. And for the RAC 19 there were too many backwards compatibility issues, but it&#8217;s going to come. So it just needs a little bit more runway to get final to that point. All right. Any thoughts about that?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Not really. I&#8217;m excited for 7.1. I think we haven&#8217;t mentioned the release time. Is that still planned for WordCamp US and like August 19th.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yes, the planning is July 15th being beta and then August 5th being release candidate and August 19th final release on the last day of WordCamp US.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Okay, cool. I&#8217;m excited.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yeah, I&#8217;m excited too. There are nice features in there and there are nice updates to the site editor there and I&#8217;m very excited about that. </p>\n\n\n\n<h3 class=\"wp-block-heading\">Gutenberg 23.4</h3>\n\n\n\n<p class=\"wp-block-paragraph\">And now that brings us to Gutenberg 23.4. Let&#8217;s go and talk about things.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> So that was released June 17th. We&#8217;re also going to talk about the next release 23.5 right after. So let&#8217;s start with this one first. </p>\n\n\n\n<p class=\"wp-block-paragraph\">So I think the most exciting things in there are related to media. And the first thing that is pretty exciting is if you load media into the post editor, you now get like a little notification snack bar that kind of tells you the progress of your uploads. Like if you load dump, just dump in like 20 images you&#8217;re going to see. And you also I think timed first image, second image, third image. We are used to it, I don&#8217;t know from apps and stuff. So I think that is really, really helpful to see the progress of the loading there.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah. And Adam Silverstein did an amazing job to get this all done. There&#8217;s a second one that also that the upload process is now enabled. So when it&#8217;s interrupted because you&#8217;re offline or something, it also resumes automatically the upload on the when the connection returns. So this would save quite a few hurry up and wait kind of thing. When you&#8217;re maybe on a train or in a country where you don&#8217;t have stable Internet connections to upload your media. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Right now, I only highlighted that because it&#8217;s in the same thing that the client side media processing is now geared towards 7.1. So the plugin’s only guardrail has been removed and it can be merged into WordPress.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Enhancements</h3>\n\n\n\n<p class=\"wp-block-paragraph\">The next one is the playlist block. It now has a visualization style selector so it has the playlist lock. When you try and test it, you&#8217;ll see there is a visualization kind of where the music builds some animation on top of the track and you can select the styles now for that. And also it now has a track length setting so you can set up the settings for that as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Another thing I kind of liked because I&#8217;ve built that before is if you have, I don&#8217;t know, on a WooCommerce theme or something, if you want to have the log out log in or for any other kind of purpose, you can now get that into an inner block of the navigation submenu. The lockout lock in. That wasn&#8217;t possible before. It&#8217;s a small thing but very helpful for whenever you want to have that in a drop down or sub menu.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah. If you have a membership site or subscribers only content and you. You offer them a nice accessible way to log in and log out. There&#8217;s a very minimal change, but you might need. You will notice it. It&#8217;s the time to read icon has been renamed to time. So it&#8217;s not. Might be getting rid of redundancy, but I&#8217;m not sure it&#8217;s even clearer. It&#8217;s clear enough. So yeah, that&#8217;s the change.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Yeah, I think that&#8217;s mainly kind of to reuse it, to be able to reuse it for more things. Right.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Another thing that I think is a little bit bigger and quite helpful is that now it&#8217;s possible that columns and gallery blocks can be transformed into grid variations for layout styling. I think that&#8217;s kind of cool. I think I wanted to do that many, many times.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah, me too. Because I forgot that I have a grid block and I tried to do things with the columns block.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Yeah, yeah. So often you kind of start out in a column and then you realize no, that should be a grid.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> And then again for the media. But this time it&#8217;s out of the block editor. The media editing modal has changed and it has some new features, better features, new libraries. And we talked about it before on this podcast. But now you can reorder the details field has been reordered and then now you have aspect ratio controls for the mobile toolbar and they refactored a little bit the modal layout in total. But this is a great, great tool. So these are all just the usability issues. The main feature was already in 23.2 or 3 and there are editable attachment fields. And the mobile tool. The mobile toolbar has been updated to include the aspect ratio controls. Also uses the zoom uses now plus and minus buttons. Yeah. Instead of the spyglass.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Oh yeah. That is actually very helpful an update on the dashboard. And you maybe have to help me out if I&#8217;m not 100% sure if I understand that correctly. So we always had the grid columns and now they are opinionated. So pre designed responsive. Is that correct if I say that like in your dashboard, like the two columns, I think it&#8217;s maximum four columns. It doesn&#8217;t go more than four and then it reduces like it nicely responsive by default, right?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah. It goes from 960 desktop width, so four columns to two columns between a tablet kind of size, between if it&#8217;s smaller than 960 to 600 and if, if it&#8217;s smaller than 600 or 600 and smaller, it&#8217;s going to one column and has a mobile kind of view there. So it&#8217;s definitely responsive. But that&#8217;s the dashboard. It&#8217;s about the admin dashboard. It&#8217;s not in the block editor. So that grid has nothing to do with a grid block in the block editor. So we have a little issue there with using the same words for different things. But that&#8217;s because it&#8217;s all grid based. But it&#8217;s a good thing. </p>\n\n\n\n<p class=\"wp-block-paragraph\">And contributors have an experiment on redesigning the dashboard and also let blocks going in there and all that. So it&#8217;s. It&#8217;s quite interesting to see that there are more additional features in there like this day before. Right. So if you&#8217;re in a block, you can. They&#8217;re figuring out how to put the previous day and previous years. So if you have a blog for 30 years or 10 years, you. You get. Or even five years. Yeah. You get a notification, what you published about this time of year, last year or something like that.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Yeah, I like that.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> And that was actually kind of nice.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> It kind of embraces your blogging history.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah, exactly.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> One actually kind of cool little change that I really like is in the site editor now. The admin color scheme, if you select another one, get translated into the site editor. So I know a lot of people always say, oh, you go into the site editor and it&#8217;s this black different looking user interface. And yeah it&#8217;s. Why is it so dark? So now it kind of adopts the color scheme you have selected. And I think this like part of bigger work going into kind of making the interfaces more be like one thing instead of.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah. The unification of the admin interface is also a long time coming and I think that&#8217;s a, that&#8217;s a fantastic step. Yeah. To kind of just make it sure that if you have a green sidebar that it&#8217;s also green in the site editor.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Yeah. Because why, why wouldn&#8217;t it be?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yeah. So on the client media side again, the ultra HDR JPEGs that are detected by upload and then the originals are kept unmodified and the sizes subsizes. They preserve their ICO standards. So you have a better quality of the Ultra HD but it also handles the bigger sizes. So it&#8217;s a nice addition to the media upload feature that we talked about before.</p>\n\n\n\n<h3 class=\"wp-block-heading\">APIs</h3>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> And then we also have an update on APIs. Oh, God. You have to help me with this one. I read it, but now I&#8217;m kind of like what was that about again? The future it will help.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: So it tracks per entity, the view configuration for pages. And then so it&#8217;s about the pages of pages, posts, patterns, template parts, templates and have their default layout in the grids being the, the layout grid in the admin. So when you&#8217;re in the site editor you have a choice when you look at templates, what kind of layout. You have a grid layout, a list layout and these kinds of things. And now there is actually an API that you can extract that view configuration for several other things. If you&#8217;re plugin developers, you can then replicate what the, what the priority is or what the preference is for your user. And you see that in the rest API when you pull out the information and display it again, that you get the configuration with it. I don&#8217;t know.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> So you can practically kind of unlock whatever the configuration was in default and then use that in a plugin or something, right?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Exactly. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> The same screen.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> So when you. One use case could be if you are using WordPress as your content container, but have another application that displays things as a headless or in another. In another admin content management system that only talks to WordPress with all and pulls out the things that are in WordPress and measures it up with other data that&#8217;s also in the system, then you are able to display the same what the user sees in the WordPress admin, you can display that also in your system at the same time. So that kind of would be one of the use cases that I just made up.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Yeah, that makes sense and very good to explain in that way. What else do we have next?</p>\n\n\n\n<h3 class=\"wp-block-heading\">Experiments</h3>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> So the dashboard we talked about that now has also an events widget that can be filled. </p>\n\n\n\n<h3 class=\"wp-block-heading\">Documentation</h3>\n\n\n\n<p class=\"wp-block-paragraph\">I wanted to point out one documentation thing that is really a big deal that Juan Margarido has taken on in April or May and push that through a merge now with 23.4 and that is the auto generation of the per block API reference from the block JSON files. </p>\n\n\n\n<p class=\"wp-block-paragraph\">So, until now it was really hard to figure out, okay, what&#8217;s the block markup and are there all the supports in there? Because the documentation was handmade. So if somebody updated a block&#8217;s configuration and block JSON and added support to it for other things, it would not show in the documentation until someone touches the documentation page. And for 90 blocks or so that are in core right now, that&#8217;s a moving target and fast moving target. So he proposed to go in and auto generate that documentation page for humans and AI to map multiple things. </p>\n\n\n\n<p class=\"wp-block-paragraph\">So one is the parent relationship with other blocks like think accordion block and the sub blocks there, the attributions in the table, in a table that what the block supports and with links to explain those features. So if you don&#8217;t know what the alignment or support of a block is, you can look it up right from there and then what block styles come with core so you don&#8217;t have to figure that out from the interface. So like the button comes with two styles, one is the default, the other one is the outline style. Then which CSS selectors are automatically created and then an example of the block markup. And last but not least, also the links to the source of the information and the packages. So you have a full 36-degree view on the block. And because the documentation is auto updated, it comes right there when the new features are kind of added to the block and it will be shown in the documentation. </p>\n\n\n\n<p class=\"wp-block-paragraph\">This not only helps the developers and theme developers to have a better handle on or one lookup page or section in the documentation, it also helps AI agents to form a comprehensive space to learn about WordPress blocks. Because I have found that AI sometimes just does a custom HTML block and puts it all there instead of using a column block or cover block or something like that. </p>\n\n\n\n<p class=\"wp-block-paragraph\">So this is a very big deal because that&#8217;s something where AI elevates human capabilities because he used AI to run the code that parses the block JSON and puts it into the documentation page and then also has that documentation page from the GitHub repo into the developers.wordpress.org document block editor documentation automatically merged there. So this is a big deal. And kudos to Juan Margarido. He also spent some time getting some community input from the documentation team from the Gutenberg leadership. We had a hallway hangout with a Q and A and it finally was merged now. So kudos.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Yeah, that&#8217;s pretty cool. </p>\n\n\n\n<h3 class=\"wp-block-heading\">Gutenberg 23.5</h3>\n\n\n\n<p class=\"wp-block-paragraph\">I think now we&#8217;re moving to the latest release, 23.5, released July 1. </p>\n\n\n\n<h3 class=\"wp-block-heading\">Enhancements</h3>\n\n\n\n<p class=\"wp-block-paragraph\">I think the first thing we wanted to highlight was that the design system token defaults now with out a runtime which practically, as far as I understand it correctly, helps that all the styling from the design system is just there by default. There&#8217;s nothing that got missed. Is that correct? Yeah, because it happened before that some design elements were in style.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Exactly. Yeah. It&#8217;s now available as public export. That&#8217;s pretty much so you can use it in your own apps that you put into apps. I say it&#8217;s also called plugin, so you can use it without having to import it into your plugin via NPM and these kinds of things via the build process. So you can just import it into your app here. </p>\n\n\n\n<p class=\"wp-block-paragraph\">But I also want to point out again the match proposal for the design system. Everything there is kind of in a holistic way explained and also what it&#8217;s supposed to come to. And these are all plenty of the component work that&#8217;s done for 23.5 and released or merged is actually in support of the design system and the UI revamp of the components.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> I think about the block library. And we have a few other updates in the release. The first one is that the viewport states and the controls are now support for they supporting aspect ratio and all the related controls with that.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> So I think yeah, it&#8217;s part of the styling system. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> For image blocks featured image block media library also no, no background images. A background cover image and cover block, yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Also yeah, okay, that&#8217;s the viewport states is the name that they give the responsive editing screens. So those controls are now also available. </p>\n\n\n\n<p class=\"wp-block-paragraph\">There&#8217;s also a line item in the block library section of the changelog about the classic block to hide it from the inserter that has been reverted. That&#8217;s part of the blog post that I mentioned earlier that was published after the release of 23.4, so I wanted to point that out. </p>\n\n\n\n<p class=\"wp-block-paragraph\">The next one is that the media editor modal is now available also for the cover block that comes with that. I think I mentioned that already. But now when you have a cover block with an image, you can also use the media editor modal to crop it, to rotate it, to tilt it and all that kind of things.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> That&#8217;s a nice add on small but also visually really nice to have is that the icon block now has controls for flip and rotate the icons, which is very nice to have like a. One of the things you like kind of expect to be able to do and then it&#8217;s super difficult. So now you can do that. And then it also. What is the second one about?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Oh, it just adds a default placeholder instead of to the blockchain.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Yeah. So there was also a big push to have text alignment support for some of the text blocks. And now the block quote. I think there were seven or eight blocks that have that again. This time there was missing text align support and that has been rectified. So now you have also text align support for the block quote. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Yeah, that was one thing that threw me quite a bit and quite often I always went back to the quotes block. But a quote block and a pull quote have different use cases and a pull plot is an excerpt from the article and you couldn&#8217;t make it not centered. It was kind of odd that you couldn&#8217;t left align it. Which is my favorite. Yeah. Centered when you have more than one word in the center, you hardly can read it. Or more than one line. Yeah. So I always wanted to be left aligned and I can&#8217;t quote just a sentence. Yeah. So I&#8217;m really great that they have a text aligned support now that makes sense.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> It&#8217;s these little things that kind of throw you, throw you off if you don&#8217;t have them and you&#8217;re like, why can&#8217;t I then? I think one of the biggest things in this release is that the resizable editor now it&#8217;s like fully resizable. You can drag it along. It&#8217;s not just mobile, tablet, desktop, you can get your own size and preview it. I think this is one of the biggest releases in this. In this update 23.5. So can you do anything else? You can resize it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Birgit Pauli-Haack: Yeah, yeah. It has a handle though. You can resize it. So you have a handle to make it smaller but not as small as mobile. So you can see if. If somebody uses a tablet whatever and odd width you can kind of test it if, if your settings actually work there or your. If the. The layout is there. But you cannot change the viewports themselves. Yeah. They are not customizable. It&#8217;s just so you can see the preview there. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Which is very helpful like visually.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah. Especially when you get a call and you don&#8217;t have that device on hand. Yeah. That a client sees or a client has a complaint from their clients that something is wrong on the view. You can just kind of tested in the block editor without having the device on hand. </p>\n\n\n\n<p class=\"wp-block-paragraph\">But there is a long standing request to be able to change the viewport numbers and because right now they are hard coded to I think 768 is the desktop and then 467. Yeah. 468 is the tablet and or between there is tablet and then below is the mobile. But there is good news. There is coming with 23.6. It&#8217;s already merged is in PR where you can change that via the theme JSON. So theme developers are now able to change viewport numbers for their sites. There is no UI yet for it. But that&#8217;s typical. That theme JSON is first. So theme developers can test it out and can actually use it. But for the UI you need a little bit more information how things are going and how users would work with it.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> And there&#8217;s also been a smaller change on. If you add a note that just. It&#8217;s simplified how the show more or less collapse works. If you have a long note you want to collapse it and show more or less. I think that just has been reworked or simplified.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Right.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> I don&#8217;t think it&#8217;s anything we see on the user side. Right. It&#8217;s more in the background. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> It&#8217;s just faster. Yeah. It&#8217;s kind of that. Okay. Mostly performance issue. Yeah. You&#8217;ll see a slight change there. </p>\n\n\n\n<p class=\"wp-block-paragraph\">There is the experiment of the omnipresent toolbar which is pretty much the admin bar. In the editors you see the admin bar, the black admin bar on top of the screen when you&#8217;re logged in and you look at your website from that perspective and you also in the post editor you see the black toolbar but you couldn&#8217;t in the site editor or in the other editors. So now the experiment is to show it but then also unify the interface because the design view or the site editor has its own W to go back to the other admin. And when it&#8217;s in the admin bar you just click where you normally click to get to the site. So it&#8217;s all unification of the interface pretty much. And now you can see the site icon instead of the dash icon if you select it as well in the toolbar. So there has been an ongoing effort and some of it might come to 7.1. It&#8217;s on the roadmap for the admin bar everywhere, so to speak.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> I think one thing that I remember I struggled with quite a lot is the flex behavior of children. So now there has been.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> You mean your child? Well, it&#8217;s not the flexibility of toddlers.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Ellen Bauer: The Flex elements. I love flexbox CSS always have. But I think we always had a problem that they weren&#8217;t behaving like exactly like CSS. Flexbox should behave. So now one of the changes has been that so flex children that had a fixed width, this is now like truly fixed. I think it was squishable before. Can you say that? Is that correct? And now it&#8217;s like a truly fixed width to zero. So I think that&#8217;s one of the things visually that helps a lot. And then the other one was grid layouts now have fill available space, toggle. Is that correct? I think it&#8217;s just a toggle in the settings. Right. That you can toggle on and off and then you have auto fill and auto fit behavior. Okay. And this behaves exactly like CSS grid behavior.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah, you would expect. Yeah, that&#8217;s pretty nice. There was some. Some quirkiness to the grid block and the grid layouts and I&#8217;m glad that Isabella is working on that constantly to improve it and to get back to it.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Yeah, she&#8217;s doing great work. I met her live at WordCamp Asia this year and it was really pleasant because I love flexbox Grid. I always love these blocks and CSS settings and they never quite worked. How I or like went into that depth, I wish they had. And yeah, she&#8217;s. I think, like, she has the same opinions, so it was a good chat. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Another thing that is kind of cool and fun to have is that now global styles allow text shadow settings. So, yeah, there&#8217;s these options of text shadow, if you ever want to use that in like a cool, fun design or. So now you can set it in global styles, which is really cool. That wasn&#8217;t possible before at all, I believe. Right?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Right.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: It&#8217;s a new style support.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> I really like that.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah, I tested it and it&#8217;s really nice. There are some presets in there that come from core, and I still need to figure out or find out how you can switch off some of the styles and how you can add your own styles like you can do with the shadow box. The shadow box has a feature that you can switch out the core styles with your own styles or just switch them off, but you definitely would need that for the texture as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Maybe we will add that.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah, it&#8217;s not there. It&#8217;s the first version and the first version is pretty much a minimal viable kind of setup. Yeah. </p>\n\n\n\n<p class=\"wp-block-paragraph\">The next thing is again Media Editor modal. It now has some error states. You can magnify the crop to fill the canvas and the current post always includes the initial options. There are also minor fixes, but that is because it gets ready for 7.1 release. So every aspect of it is actually and comes from feedback from the call for testing. The call for testing was actually already issued in I think in May. So it&#8217;s already a month in or two months in. So there is already some feedback coming back. </p>\n\n\n\n<p class=\"wp-block-paragraph\">The data layer has a feature for the real time collaboration or many features, but one of them stands out is that you can disable collaboration per post. So if you have maybe a recipe or a book post type and you don&#8217;t want anybody to collaborate with you on that, you can switch that off. It&#8217;s probably best for very visual post types or it&#8217;s also necessary for template parts or for navigation. Those are also post types. You can control that now. </p>\n\n\n\n<p class=\"wp-block-paragraph\">So there was a for a while in the text controls there was a prop to have the next 40px default size and there was underscore. Underscore was an experimental property and that now has been made the default. So if you had a 36 before or 32 on the default size for the text box, then if you wanted to be in the same realm as WordPress itself, you had to use the underscore next 40px default size prop to have the same sizes of the controls and now those are default now. So you don&#8217;t have to do this experimental prop to use but it will change how things work. So you might want to, as a theme developer or a plugin developer, you probably want to check your plugins, your text control components, how they change behavior or at least the default layout. So that&#8217;s why I&#8217;m calling that out here in the episode. </p>\n\n\n\n<p class=\"wp-block-paragraph\">And also a similar thing is known that 23.6 Gutenberg 23.5 bumps. The minimum required version to install the Gutenberg plugin is now 6.94 versions 23.5 and newer. So if you are on 6.7 or 6.8, you are not getting the newest version of the Gutenberg plugin. So I think. Oh, there&#8217;s one more. Did I overlook something?</p>\n\n\n\n<h3 class=\"wp-block-heading\">Performance</h3>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> No, I think on performance you highlighted that blocks migrate markdown converter from showdown to marked. And what does that do?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> It actually is just performed faster. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Oh, yeah. Okay.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> And it also has a different parser, so it might have a say. It&#8217;s G. What&#8217;s it called? GTM. There is a standard for markdown that comes from GitHub and it now adheres to that standard. Yeah. So that&#8217;s updated. It&#8217;s a minimum change most people wouldn&#8217;t even need to do. But if you copy paste something from GitHub or from other Markdown editors or from your AI agent, it&#8217;s a different parsing process.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> I just researched that and it said that the previous one was like from 2018 or so and this is just like a faster newer version that we updated to. Okay, that makes sense. </p>\n\n\n\n<h3 class=\"wp-block-heading\">Experiments</h3>\n\n\n\n<p class=\"wp-block-paragraph\">And then there was one last highlighted thing on the block library unwrapping. Classic block migration notice experiment.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah, that&#8217;s part of the effort to the classic logic. But that has also been reverted so it will not announce that this is deprecated. So it&#8217;s important to know that that line item in the change log has been overwritten already with a newer version that comes to 23.6 on July 22.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Various</h3>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> And there was another small update on icons to self declare icons color on the icons block.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Oh, nice. Yeah, I overlooked that. I got lost in the changelog already. So.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> I mean there were a lot of these smaller things.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Oh yeah. So if you have an icon, it can say I&#8217;m. I&#8217;m only in blue or something like that. What does it mean, the current color?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Oh, current color. Yeah, of course. Duh. Yeah. I was still stuck on tab sync finally second the tab sync because it&#8217;s the. For stabilizing it to come into 7.1. The tabs block is still under active development until July 14, so don&#8217;t start building on it yet because there&#8217;s API cleanup and refactoring going on where the contributors try to nail down the final version before it gets into core. Yeah, that&#8217;s the end of it.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Wow.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah, we still had a lot to talk about, Ellen. Yeah. So apart from the responsive styling, are you excited about some things that come to 7.1 in the near future?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> I think for me, being like a Visual X thing builder or and working on blocks, I think responsiveness is a big one and I&#8217;m excited to see how. Yeah. How we just kind of improve things. Also, I like that we are looking more into the dashboard and finding ways to unify the experience. I think this is one of the things that always come up that it looks kind of like two different versions, partly outdated. And I think we need to move along and kind of come to maybe not make everyone happy, of course, but come to a compromise that we can all live with and then move forward. I think this would really help WordPress to kind of shine in a way that it doesn&#8217;t look outdated or not like one product. I think if we can come together and do that and push for that change, that would be really, really helpful for all of us and for everyone and for WordPress. So I&#8217;m excited to contribute and help to make this happen.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Awesome. Awesome. Yeah. Yeah. I like the new blocks that are coming. Of course. I have been a fan of blocks since the beginning of the block editor, so I like that the playlist block and the TAMS block. And finally. The table of content. There is an effort to actually have the table of content come to WordPress. Right now. It&#8217;s only available for years in the Gutenberg plugin.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> I didn&#8217;t even know. I thought it would be in.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Even small things like rotating icons and stuff like that or having them be the current color and all these grid and Flexbox things. They. We need these things. I think it&#8217;s still very, very important to have professional settings like that available.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah. And this is a visual person. You&#8217;re probably also happy that you now can have in the group block. Background gradients. Gradients. We all love gradients. I love gradients. I love gradients. Yeah. And there&#8217;s these kinds of things.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> They&#8217;re like, why aren&#8217;t they there? And so responsiveness. And I think just of kind of growing up Gutenberg and the editing experience.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Seems. And even like with AI helping on a lot of things and being able to patch CSS and stuff on onto things to make things better that we don&#8217;t have. I think it&#8217;s still important that we aim for a really high quality experience in manual editing so people find what they&#8217;re looking for and are not frustrated or get lost. I think that&#8217;s just the quality we want to stand for and have in WordPress no matter what.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> I think the standard should like, should be. We aim. Should aim for that as being just there for people, for users.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> I think we. We develop, as I say. Yeah. Are kind of really immersed in this AI grace and hype and also the possibilities and the usefulness of AI in our work. There is a danger that we forget that WordPress users that are writers or publishers actually are not using AI to do their work on WordPress. So we definitely need a delightful interface and all these small changes, quality of life changes and the big changes like the responsive editing and the dynamic galleries and whatever is going to come. The modal editor, the media editor needs to be delightful and useful for humans that are kind of having fun and producing more content for the Internet that is kind of. Yeah. Eating it whole, so to speak, with AI.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Yeah, yeah, I love that too. Delightful is a beautiful word to use. Yeah. We want to delight people using WordPress and this should be our aim. AI or not, like in whatever. We have to meet users wherever they are, however they want to use the tool. It shouldn&#8217;t be, oh, we can leave this stuff now because everyone uses AI. I think if we have a user interface, it would be delightful. If it&#8217;s not yet delightful, we have to make it delightful. And AI can only help us to do that because we can contribute faster, we can move things faster. So let&#8217;s use AI for that, to delight users to meet them wherever they are for everything we offer, and we do offer a user interface. So here we are with some work to do.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haac</em>k: I think that&#8217;s a good end of the show today. Thank you so much, Ellen, to be on the show and walk with me through those changes that are coming and if people want to reach you, how is a good way to reach out to you.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> So I am in the community Slack WordPress community Slack. I&#8217;m also on social media, not that active to be fair, but reachable anytime. I think for WordPress community, the community Slack is the best place to reach me. But if you look at my name, Ellen Bauer, you can find me online on all kinds of platforms and I&#8217;m oh, I&#8217;m actually revamping my Manu and my Little Elmo Studio blog. So there&#8217;s going to be a new design and I&#8217;m really excited to get blogging again. Also doing a lot more like a few more YouTube videos. I have some ideas for that over the summer month now. So, so wonderful. Yeah, I will share if I have some news on that. Look out for Ellen or Elmer Studio and just reach out anywhere.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Excellent.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Yes, I&#8217;m always excited to hear from you.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Wonderful. Thank you so much, Ellen.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Thank you for having me. Birget, you&#8217;re welcome to be on the show.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> It&#8217;s delightful to have you to overuse that word. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Now, dear listeners, the show notes will be published on GutenbergTimes.com podcast this is number 132, 132. And if you have questions and suggestions or news you want us to include, send them to <a href=\"http://changelogudenbergtimes.com\">changelog@gutenbergtimes.com</a> that&#8217;s <a href=\"http://changelogutenbergtimes.com\">changelog@gutenbergtimes.com</a> thank you all for listening. And until the next time, goodbye.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Bye.</p>\n\n\n\n<p class=\"wp-block-paragraph\"></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 12 Jul 2026 10:57:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Gutenberg Changelog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:116:\"Gutenberg Times: Roadmap 7.1, Gutenberg 23.5, Responsive Styling, Migration to Block themes — Weekend Edition #368\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=45946\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:119:\"https://gutenbergtimes.com/roadmap-7-1-gutenberg-23-5-responsive-styling-migration-to-block-themes-weekend-edition-368/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:24996:\"<p class=\"wp-block-paragraph\">Hi there, </p>\n\n\n\n<p class=\"wp-block-paragraph\">After a four-week break — courtesy of a sciatic nerve with strong opinions — I&#8217;m happy to be back in by office chair and in your inbox. There is plenty to catch up on.  </p>\n\n\n\n<p class=\"wp-block-paragraph\">Beyond the updates on the new WordPress and Gutenberg versions, you&#8217;ll find stories below from WordPress veterans on migrating to and working with block themes on client sites and dive into more complex theme solutions or </p>\n\n\n\n<p class=\"wp-block-paragraph\">Don&#8217;t let me keep you from your light summer reading. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Have a splendid weekend ahead! </p>\n\n\n\n<p class=\"wp-block-paragraph\">Yours, <img alt=\"💕\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f495.png\" style=\"height: 1em;\" /><br /><em>Birgit</em></p>\n\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The team around release lead Aaron Jorbin pushed <a href=\"https://wordpress.org/news/2026/07/wordpress-7-0-1-maintenance-release/\">WordPress 7.0.1 Maintenance release </a>out the door to update millions of WordPress sites. The update covers 17 Trac tickets and 14 Gutenberg PRs. The full list is available in the <a href=\"https://make.wordpress.org/core/2026/07/01/wordpress-7-0-1-rc1-is-now-available/\">RC 1 announcement post </a>from last week. </p>\n\n\n\n<p class=\"wp-block-paragraph\">In <a href=\"https://gutenbergtimes.com/wordpress-7-0-1-fixes-registration-spam-wp_kses-css-corruption-and-7-0-admin-design-glitches/\"><strong>WordPress 7.0.1 Fixes Registration Spam, wp_kses() CSS Corruption, and 7.0 Admin Design Glitches</strong>,</a> I cover the most important fixes for end users and developers of this release.  You&#8217;ll learn how the registration-spam loophole got closed, which admin design glitches were sanded off, and why developers can finally remove their <code>wp_kses()</code> CSS workarounds. Update your sites soon if auto-updates aren&#8217;t enabled. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Ryan Welcher</strong> compiled <a href=\"https://developer.wordpress.org/news/2026/07/whats-new-for-developers-july-2026/\"><strong>What&#8217;s new for developers (July 2026)</strong></a>, and it&#8217;s all about the 7.1 cycle getting real: Beta 1 lands July 15, final release August 19 at WordCamp US. You&#8217;ll want to test responsive styling, the React 19 runtime flag, and Unicode email addresses now. Also on your radar: merge proposals for Core Abilities and Guidelines, the 40px component default, icons inheriting color, and Playground&#8217;s MCP support.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<p class=\"wp-block-paragraph\"><img alt=\"🎙\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f399.png\" style=\"height: 1em;\" /> The latest episode is  <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-132/\">Gutenberg Changelog #132 – Proposals for Core, Calls for Testing, WordPress 7.1 and Gutenberg 23.4 and 23.5</a></p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-46077\" height=\"183\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/07/Screenshot-2026-07-10-at-10.56.17-edited-1.png?resize=652%2C183&#038;ssl=1\" width=\"652\" /></figure>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\n<figure class=\"wp-block-embed is-type-rich is-provider-pocket-casts wp-block-embed-pocket-casts\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div></div></div>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Berislav &#8220;Bero&#8221; Grgičak</strong> announced <a href=\"https://make.wordpress.org/core/2026/07/01/whats-new-in-gutenberg-23-5-july-1-2026/\">what&#8217;s new in Gutenberg 23.5</a>, released July 1. The headliner: you can now drag the editor canvas to any width, with the device preview dropdown and resize handles working together for responsive editing. The experimental Media editor gains a magnified crop canvas, pixel-snapping handles, and Cover block support. Also notable: text shadows in Global Styles, flip and rotate controls for the Icon block, and a minimum WordPress version bump to 6.9.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\">For the next episode of the Gutenberg Changelog, I sat down with <strong>Ellen Bauer </strong>to chat about what&#8217;s coming next for WordPress. We dug into the latest Gutenberg plugin releases (23.4 and 23.5) and the recent WordPress 7.1 update. Plus, we walked through some big merge proposal, like the Design System Theming. our excitement around responsive styling coming to WordPress. It’s a packed episode full of news you won&#8217;t want to miss! The episode will land in your favorite podcast app over the weekend.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-45996\" height=\"194\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/07/Screenshot-2026-07-10-at-10.56.17.png?resize=652%2C194&#038;ssl=1\" width=\"652\" /></figure>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<h3 class=\"wp-block-heading\" id=\"wordpress-7-1-roadmap-and-more-calls-for-testing\">WordPress 7.1 roadmap and more calls for testing</h3>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Anne McCarthy</strong> published <a href=\"https://make.wordpress.org/core/2026/06/19/roadmap-to-7-1/\">Roadmap to WordPress 7.1</a>., scheduled for August 19, 2026. Longstanding styling gaps are being tackled: responsive styling and interactive-state styling let you adjust blocks per viewport or on hover — no custom CSS required. You&#8217;ll also find new Playlist, Table of Contents, and Tabs blocks, a smarter command palette, a Design → Identity screen, the admin bar inside the editors, a media editor modal, and expanded Unicode support for email addresses.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Also mentioned Real-time collaboration, Knowledge Guidelines, React 19 upgrade, Classic block deprecation have been punted since the posts came out. Beta 1 arrives July 15 and will settle which of the other Roadmap features are in and which will be punted to a future release.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\">The latest Weekend Edition<a href=\"https://gutenbergtimes.com/calls-for-testing-gutenberg-23-3-block-mcp-weekend-edition-367/#calls-for-testing-for-wordpress-7-1\"> listed three calls for testing</a>. Meanwhile, two more came online:</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Nikunj Hatkar</strong>, this year&#8217;s team rep of the Core Test team, posted a <a href=\"https://make.wordpress.org/test/2026/07/03/call-for-testing-responsive-styling/\">call for testing responsive styling</a>. You&#8217;ll be able to style blocks differently for tablet and mobile right in the editor — no custom CSS or media queries needed. The underlying PR unifies the resizable canvas with the device-preview switcher. Fire up the linked WordPress Playground instance, walk through the four test scenarios, and share what feels intuitive or broken. Plugin and theme developers should test their canvas integrations, too.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Dennis Snell</strong> published a <a href=\"https://make.wordpress.org/core/2026/06/10/call-for-testing-unicode-email-addresses/\">call for testing Unicode email addresses</a>. With initial support merged, <code>is_email()</code> and <code>sanitize_email()</code> now accepting non-ASCII addresses like <code>grå@grå.org</code>, and validation aligns with the <a href=\"https://html.spec.whatwg.org/multipage/input.html#valid-e-mail-address\"><em>Web Hypertext Application Technology Working Group</em> (WHATWG) spec.</a> You&#8217;ll want to check your plugins and themes: the new <code>WP_Email_Address</code> class gives you structured access to local and domain parts, and a snippet lets you disable Unicode support until third-party integrations catch up.</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"three-merge-proposals\">Three Merge Proposals </h3>\n\n\n\n<p class=\"wp-block-paragraph\">Core contributors put together three merge proposal for new features to be added to Core for public comment. </p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Jorge Costa</strong> published a <strong><a href=\"https://make.wordpress.org/core/2026/07/02/merge-proposal-expanding-wordpress-core-abilities/\">merge proposal to expand WordPress Core Abilities</a> </strong>in WordPress, adding three read-only abilities covering settings, content, and users. Building on the Abilities API from 6.9, they give the AI Client real tools to call, so agents can understand your site&#8217;s configuration, posts, and people. Settings and post types opt in through a dedicated flag, and management abilities are planned for a later WordPress version. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Greg Ziółkowski</strong> published a <a href=\"https://make.wordpress.org/core/2026/06/22/merge-proposal-guidelines-built-on-knowledge/\"><strong>merge proposal for Guidelines built on Knowledge</strong></a>, a new custom post type headed for WordPress 7.1. Knowledge gives your site one shared home for standards, memories, and notes — with revisions, capabilities, and REST access built in. Guidelines is the first feature on top, letting you capture voice, tone, and per-block rules right where writing happens. Although, originally aimed at WordPress 7.1, in their l<a href=\"https://make.wordpress.org/core/2026/06/22/merge-proposal-guidelines-built-on-knowledge/#comment-49029\">atest comment, Anne McCarthy indicated</a> that it needs to simmer some more before it&#8217;s considered for inclusion in WordPress Core. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Andrew Duthie</strong> published a <a href=\"https://make.wordpress.org/core/2026/07/07/merge-proposal-design-system-theming/\"><strong>merge proposal for Design System Theming</strong></a>, bringing design tokens and a new theme component to WordPress. Built by the Gutenberg Components Team, it turns hard-coded admin styles into CSS custom properties, so your plugins and screens stay consistent and accessible. A color ramp tool generates harmonious, accessible scales from just two seed colors, and the user color scheme reaches the Site Editor — with dark mode on the horizon. </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Anne Katzeff </strong>published a tutorial <strong><a href=\"https://www.askdesign.biz/blog/2026/05/exploring-the-wordpress-cover-block-parallax-scroll/\">exploring the WordPress Cover Block for parallax scrolls</a>. </strong>You&#8217;ll learn how the Fixed Background setting turns a Cover block into a layered parallax effect — background, middle ground, and foreground text moving at different speeds. The post steps through nesting a second Cover block, switching which layer scrolls, and improving text readability with grouped backgrounds. A video tutorial rounds it out. She also demos her process in <a href=\"https://www.youtube.com/watch?v=dux016qIXSM\">this YouTube video</a>. </p>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Carrie Dils </strong>shared a case study, <a href=\"https://carriedils.com/one-header-two-themes/\"><strong>One Header, Two Themes</strong></a>, on phasing a legacy Elementor site toward Full Site Editing without a rebuild or content freeze. Using ThemeSwitcher Pro to run two themes side-by-side, she built one shared header in a plugin that both themes render. You&#8217;ll learn from five real-world snags — WooCommerce&#8217;s hooked blocks, cascade conflicts, routing gaps, query-string bypasses — and why shipping the shared layer first de-risks everything after.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Gina Lucia</strong> compared <a href=\"https://olliewp.com/wordpress-theme-vs-page-builder/\"><strong>WordPress block themes vs page builders</strong></a> on the <em>Ollie</em> blog. You&#8217;ll get a clear-eyed walkthrough of what classic themes, page builders, and block themes each handle — scope, design control, performance, lock-in, and maintenance — with side-by-side tables. Her conclusion: block themes combine sitewide design control with visual editing natively, so you rarely need a page builder anymore, though migration costs and team habits can justify keeping one.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Elliott Richmond</strong> explained <strong><a href=\"https://elliottrichmond.co.uk/why-i-spent-16-months-turning-400-holiday-cottages-into-wordpress-blocks/\">why he spent 16 months turning 400+ holiday cottages into WordPress blocks</a>.</strong> The kate &amp; tom&#8217;s site moved from ACF flexible content to a native block theme, freeing the marketing team from waiting on custom widgets. You&#8217;ll appreciate his candor: 10,590 widgets migrated via a purpose-built plugin, re-run against fresh production snapshots, with flaky conversions fixed by hand. Even untuned, PageSpeed jumped from 22 to 67.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Wes Theron</strong> published a video tutorial, <strong><a href=\"https://www.youtube.com/watch?v=OFRAPMPQMeA\">How to Create and Edit Navigation Menus in WordPress</a>,</strong> for anyone getting comfortable with block themes. In under ten minutes, you&#8217;ll learn how to edit your menu with the Navigation block, add pages, posts, categories, and custom links, and build dropdown menus. Timestamps let you jump straight to the part you need — handy if dropdowns are the only thing standing between you and a finished header.</p>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-4-3 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div>\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Henrique Iamarino</strong>  shared how the Automattic Design team <a href=\"https://automattic.design/2026/07/09/build-a-wordpress-theme-without-ever-opening-figma/\"><strong>built a WordPress theme without ever opening Figma</strong></a>. You&#8217;ll follow the making of Crafted, a production-ready theme created almost entirely in the WordPress Editor: Global Styles for typography and spacing, <a href=\"https://wordpress.org/plugins/create-block-theme/\">Create Block Theme</a> to save edits to theme files, WordPress Studio for local review, and an AI assistant for finishing-touch hover CSS. His takeaway: the Editor is now a professional design surface.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Justin Tadlock</strong> explained <a href=\"https://developer.wordpress.org/news/2026/06/dynamically-loading-template-parts-in-block-themes/\"><strong>how to dynamically load template parts in block themes</strong></a> on the Developer Blog. Instead of maintaining a pile of near-identical templates, you can hook into the <code>render_block_data</code> filter and swap a template part&#8217;s slug on the fly — say, a different sidebar per post category. His walkthrough covers early returns, fallback behavior, and file setup, and the technique works for headers, footers, and banners, too.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n<div class=\"ng-block-26b571c423f8c56d wp-block-newsletterglue-container ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div class=\"ng-block-vs ng-block-vs-1\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div><div><div class=\"ng-block-hs ng-block-hs-1\" height=\"0\" style=\"width: 0px;\"></div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 20px; padding-bottom: 20px; padding-left: 0px; padding-right: 0px; text-align: none; color: #666666; background-color: #fdfcea; border-radius: 12px;\"><div class=\"ng-block-40435fa7169d50ae wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p><strong> <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" rel=\"noreferrer noopener\" target=\"_blank\">&#8220;Keeping up with Gutenberg &#8211; Index 2026&#8221;</a> </strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2024 on. Updated by yours truly. </p></div></div></div></div>\n\n<div class=\"ng-block-ef8ee7b1635b795d wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p>The previous years are also available: <br /><strong><strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\">2020</a> | <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2021/\">2021</a></strong> | <strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2022/\">2022</a></strong></strong> | <strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2023\">2023</a></strong> | <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2024/\"><strong>2024</strong></a> | <strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2025/\">2025</a></strong></p></div></div></div></div></div><div class=\"ng-block-hs ng-block-hs-2\" height=\"0\" style=\"width: 0px;\"></div></div><div><div class=\"ng-block-vs ng-block-vs-2\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div></div></div>\n\n\n<h2 class=\"wp-block-heading\" id=\"ai-and-wordpress\">AI and WordPress</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Jeff Paul</strong> announced <strong><a href=\"https://make.wordpress.org/ai/2026/07/08/whats-new-in-ai-1-1-0/\">what&#8217;s new in AI 1.1.0</a>,</strong> the latest release of the canonical AI plugin. Two experiments headline, <code>type-ahead text</code> suggests inline ghost text as you write in the block editor, and <code>key encryption</code> secures your AI Connector API keys in the database. You&#8217;ll also find smarter content readiness checks with locale-aware counting, more control over guest comment moderation, a new <code>core/read-settings</code> Ability, and a peek at 1.2.0 plans.</p>\n\n\n<div class=\"ng-block-d4a41a81517250b0 wp-block-newsletterglue-container ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div class=\"ng-block-vs ng-block-vs-1\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div><div><div class=\"ng-block-hs ng-block-hs-1\" height=\"0\" style=\"width: 0px;\"></div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 20px; padding-bottom: 20px; padding-left: 0px; padding-right: 0px; text-align: none; color: #666666; background-color: #f8f8f8; border-radius: 8px;\"><div class=\"ng-block-e53f84447db2dc4b wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review.</p></div></div></div></div>\n\n<div class=\"ng-block-65ce02f7bfe5ba58 wp-block-newsletterglue-image ng-block size-full is-resized\" width=\"100%\"><div><div><div align=\"center\" class=\"ng-block-td\" style=\"padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;\"><a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\"><img alt=\"\" class=\"wp-image-42874 ng-image\" height=\"45\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/02/Screenshot-2025-11-15-at-12.06.44.png?resize=196%2C45&#038;ssl=1\" style=\"border-style: none; border-color: transparent;\" width=\"196\" /></a></div></div></div></div>\n\n<div class=\"ng-block-ae3ad014e8f2518e wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p>Now also available via <a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\">WordPress Playground</a>. There is no need for a test site locally or on a server. Have you been using it? <a href=\"mailto:pauli@gutenbergtimes.com\">Email me </a>with your experience.</p></div></div></div></div></div><div class=\"ng-block-hs ng-block-hs-2\" height=\"0\" style=\"width: 0px;\"></div></div><div><div class=\"ng-block-vs ng-block-vs-2\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div></div></div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-center has-small-font-size wp-block-paragraph\"><em>Questions? Suggestions? Ideas? </em><br /><em>Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or</em><br /><em> send me a message on WordPress Slack or Twitter @bph</em>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"has-text-align-center has-small-font-size wp-block-paragraph\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, <br />send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n<div class=\"ng-block-b9a9b1e40da606d4 wp-block-newsletterglue-separator ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"center\" class=\"ng-block-td\" style=\"padding-top: 20px; padding-bottom: 20px; padding-left: 20px; padding-right: 20px; color: #666666;\"><hr style=\"background-color: transparent; color: transparent; margin: 0; border: 0; border-top: 1px solid #666666; width: 560px; height: 0;\" /></div></div></div></div>\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\"><div class=\"ng-block-2843672bd680d807 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 14px; font-family: Helvetica; line-height: 0.2; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p><strong>Featured Image: </strong></p></div></div></div></div></div>\n\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 11 Jul 2026 01:37:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"Open Channels FM: The Real Challenge of Technological Solutions: Exclusion in the Age of Verification\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2556720\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"https://openchannels.fm/the-real-challenge-of-technological-solutions-exclusion-in-the-age-of-verification/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:419:\"David Snead, director of the Secure Hosting Alliance and a long-time Internet policy leader, shares his perspective on the complexities that emerge when technological solutions like age verification are implemented in the digital infrastructure space. Dave&#8217;s reflection highlights how the push for more secure, regulated environments can unintentionally create barriers for vulnerable or less tech-savvy [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 10 Jul 2026 14:34:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"Dennis Snell: See DATA, CDATA, RCDATA, and PCDATA oh my!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"https://fluffyandflakey.blog/?p=3943\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://fluffyandflakey.blog/2026/07/10/see-data-cdata-rcdata-and-pcdata-oh-my/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:30966:\"<p class=\"wp-block-paragraph\">HTML and XML are markup languages based on plaintext files. This means that any given character <em>could</em> be part of a syntax form (a tag, a comment, a character reference, etc…) <em>or</em> it could be representing itself the way it reads in the file literally.</p>\n\n\n<div class=\"wp-block-code\">\n	<div class=\"cm-editor\">\n		<div class=\"cm-scroller\">\n			\n<pre>\n<code class=\"language-html\"><div class=\"cm-line\"><span class=\"tok-punctuation\">&lt;</span><span class=\"tok-typeName\">tag</span><span class=\"tok-punctuation\">&gt;</span><span class=\"tok-string\">&amp;middot;</span> Text node<span class=\"tok-punctuation\">&lt;/</span><span class=\"tok-typeName\">tag</span><span class=\"tok-punctuation\">&gt;</span></div></code></pre>\n		</div>\n	</div>\n</div>\n\n\n<p class=\"wp-block-paragraph\">Whenever a character might be ambiguous, both languages require explicit indication of the intent of the character. In HTML this occurs via <em>escaping</em>, while XML allows escaping <em>or</em> wrapping the content in a <em>marked section</em>, specifically a <code>CDATA section</code>.</p>\n\n\n<div class=\"wp-block-code\">\n	<div class=\"cm-editor\">\n		<div class=\"cm-scroller\">\n			\n<pre>\n<code class=\"language-xml\"><div class=\"cm-line\"><span class=\"tok-string\">&amp;lt;</span>tag<span class=\"tok-string\">&amp;gt;</span></div><div class=\"cm-line\"><span class=\"tok-string2\">&lt;![CDATA[&lt;tag&gt;· Text node&lt;/tag&gt;]]&gt;</span></div></code></pre>\n		</div>\n	</div>\n</div>\n\n\n<p class=\"wp-block-paragraph\">These terms confuse me at times, especially since <code>CDATA</code> and <code>CDATA sections</code> are distinct forms of the same content, and it’s easy to conflate each term. This post is here to disambiguate the terms, their meanings, and why they exist.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://fluffyandflakey.blog/tag/wordpress/feed/#summary\">The punchline comes at the end</a>, but the story is hopefully worth the read.</p>\n\n\n\n<span id=\"more-3943\"></span>\n\n\n\n<h2 class=\"wp-block-heading\">Markup and mixed content</h2>\n\n\n\n<p class=\"wp-block-paragraph\">One of the first jobs of a parser for any plaintext-oriented format is to determine if the next input character represents real text or is part of a syntax form that carries special meaning. If it’s a syntax form we would call it <em>markup</em>, but if the characters are part of real text meant for display or rendering or reading then we call it <em>data</em>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Anything that is not syntax is data.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The interpretation of the next character depends on the region of the document in which it’s parsed. While the rules for syntax forms are complicated<sup class=\"fn\"><a href=\"https://fluffyandflakey.blog/tag/wordpress/feed/#0ba56e66-ab0f-4fbd-93d2-df22a6984fd7\" id=\"0ba56e66-ab0f-4fbd-93d2-df22a6984fd7-link\">1</a></sup>, this post will focus on the data forms.</p>\n\n\n\n<h3 class=\"wp-block-heading\">PCDATA — “parsed character data”</h3>\n\n\n\n<p class=\"is-style-plain wp-block-paragraph\"><em>May form: tags, comments, sections, character references, literal text.</em></p>\n\n\n\n<p class=\"wp-block-paragraph\">Characters in this region could be data or could form the start of a new markup element. It’s “parsed” because it needs parsing before determining what it represents.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The HTML specification renames this to <code>Data</code>, which is simpler and a bit harder to search for. In XML, however, it’s used in a document-type definition (DTD). When an element may contain content — text — its data model must include <code>#PCDATA</code>. Otherwise the only characters allowable within that element are other elements, comments, and whitespace. XML documents are required to be valid SGML documents, so its own specification adopts the terminology from SGML’s.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Those who have worked with DTDs might note that <em>elements</em> in XML may contain <code>#PCDATA</code> while <em>attributes</em> contain <code>CDATA</code> instead. First of all, the <code>#</code> is there only to make it explicit that <code>PCDATA</code> is referring to the reserved keyword, rather than a <code>&lt;pcdata&gt;</code> element. Secondly, there’s a good reason for this, which is that attributes can only contain text — they can’t contain other elements of markup. If an attribute value could contain a <code>&lt;span&gt;</code> element, for example, then the attribute value would need to be <code>#PCDATA</code> instead, but this is prevented by design.</p>\n\n\n\n<p class=\"wp-block-paragraph\">PCDATA actually contains more than just literal text and elements. In addition to comments, processing instructions, and other node-like syntax, one important feature of PCDATA is the <em>character reference</em>. These make it possible to represent characters that would conflate with syntax (such as ‘<code>&lt;</code>’ — <code>&amp;lt;</code>) or which might be cumbersome to enter on a keyboard (such as ‘§’ — <code>&amp;sect;</code>). When parsing, each character in these sequences neither creates an element nor  displays as the text itself; rather, the entire sequence is parsed and translates into the character it refers to.</p>\n\n\n\n<p class=\"wp-block-paragraph\">HTML pre-specifies <a href=\"https://github.com/w3c/html/blob/master/entities.json\">a fixed set of named character references</a>, but any Unicode code point may be referenced by its decimal or hexadecimal numeric index. While XML also allows referencing code points by their index<sup class=\"fn\"><a href=\"https://fluffyandflakey.blog/tag/wordpress/feed/#6d3de5b9-f8a6-4f46-853b-3d407731feca\" id=\"6d3de5b9-f8a6-4f46-853b-3d407731feca-link\">2</a></sup>, it only pre-specifies the five named characters which correspond to its main markup introducers: <code>&lt;</code>, <code>></code>, <code>&amp;</code>, <code>\'</code>, and <code>\"</code>. In XML, any additional named character references are created through the DTD by defining <em>entities</em>.</p>\n\n\n\n<h3 class=\"wp-block-heading\"> CDATA — “character data”</h3>\n\n\n\n<p class=\"wp-block-paragraph\"><em>May form: [character references], literal text.</em></p>\n\n\n\n<p class=\"wp-block-paragraph\">If a character isn’t markup, then it’s <em>character data</em>, which means that it’s representing its literal self or it’s part of a <em>character reference</em>. Once the parser has entered this region it will not create markup elements.</p>\n\n\n\n<p class=\"wp-block-paragraph\">CDATA is the most confusable kind of character data; this is because there are many kinds of CDATA that share the same name:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>XML attributes may contain CDATA, where character references are decoded.</li>\n\n\n\n<li>XML CDATA sections only contain CDATA, but character references are not decoded.</li>\n\n\n\n<li>HTML <em>kind of</em> has the same CDATA sections, but only in <em>foreign elements</em> (inlined SVG and MathML elements).</li>\n\n\n\n<li>SGML elements may be declared to have a CDATA content model, in which case all content until the appropriate closing tag is to be parsed as character data, where character references are not decoded.</li>\n</ul>\n\n\n\n<h4 class=\"wp-block-heading\">CDATA sections contain only literal text</h4>\n\n\n\n<p class=\"wp-block-paragraph\">Many people are familiar with <code>CDATA sections</code>, but it took me far longer to understand them than my intuition led on. They are the vestige of SGML “marked regions” which tell the parser to handle a specific range of bytes in a special way. The <code>CDATA</code> section is one of those, which tells the parser to <em>completely turn off until it reaches <code>]]&gt;</code></em>.</p>\n\n\n<div class=\"wp-block-code\">\n	<div class=\"cm-editor\">\n		<div class=\"cm-scroller\">\n			\n<pre>\n<code class=\"language-xml\"><div class=\"cm-line\"><span class=\"tok-string2\">&lt;![CDATA[literal characters only in here]]&gt;</span></div></code></pre>\n		</div>\n	</div>\n</div>\n\n\n<p class=\"wp-block-paragraph\">It had other marked sections, however, which served different purposes.</p>\n\n\n<div class=\"wp-block-code\">\n	<div class=\"cm-editor\">\n		<div class=\"cm-scroller\">\n			\n<pre>\n<code class=\"language-xml\"><div class=\"cm-line\">&lt;![IGNORE[everything in here is ignored; it doesn’t exist.]]&gt;</div><div class=\"cm-line\">&lt;![INCLUDE[in here things <span class=\"tok-punctuation\">&lt;</span><span class=\"tok-typeName\">em</span><span class=\"tok-punctuation\">&gt;</span>do<span class=\"tok-punctuation\">&lt;/</span><span class=\"tok-typeName\">em</span><span class=\"tok-punctuation\">&gt;</span> exist as normal.]]&gt;</div><div class=\"cm-line\">&lt;![RCDATA[read on to learn about RCDATA!]]&gt;</div></code></pre>\n		</div>\n	</div>\n</div>\n\n\n<p class=\"wp-block-paragraph\">The <code>IGNORE</code> and <code>INCLUDE</code> sections may seem strange, since SGML already has comments, and <code>INCLUDE</code> effectively does nothing, but the sections can be marked by replaced <em>entities</em>, making for conditional inclusion which can be overwritten via command-line arguments when invoking the SGML parser.</p>\n\n\n<div class=\"wp-block-code\">\n	<div class=\"cm-editor\">\n		<div class=\"cm-scroller\">\n			\n<pre>\n<code class=\"language-xml\"><div class=\"cm-line\">&lt;!ENTITY % review-only &quot;IGNORE&quot;&gt;</div><div class=\"cm-line\"></div><div class=\"cm-line\">...</div><div class=\"cm-line\"></div><div class=\"cm-line\">&lt;![%review-only;[</div><div class=\"cm-line\"><span class=\"tok-punctuation\">&lt;</span><span class=\"tok-typeName\">aside</span><span class=\"tok-punctuation\">&gt;</span></div><div class=\"cm-line\">Add `-Dreview-only=INCLUDE` when building drafts.</div><div class=\"cm-line\">This note won’t appear otherwise.</div><div class=\"cm-line\"><span class=\"tok-punctuation\">&lt;/</span><span class=\"tok-typeName\">aside</span><span class=\"tok-punctuation\">&gt;</span></div><div class=\"cm-line\">]]&gt;</div></code></pre>\n		</div>\n	</div>\n</div>\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://www.w3.org/XML/9712-reports.html#:~:text=XML%20will%20have%20CDATA%20marked%20sections\">XML only retained CDATA sections</a> from SGML, while HTML never included them. They are useful because they are so easy to parse. All characters inside of them are to be treated as literal text, up until the first occurrence of the terminating <code>]]&gt;</code>. Unlike elements, the marked sections do not nest.</p>\n\n\n\n<h4 class=\"wp-block-heading\">There are no CDATA sections in HTML</h4>\n\n\n\n<p class=\"wp-block-paragraph\">The Internet is full of discussions about the use of CDATA sections in HTML, but there are no such things, mostly. HTML itself is an amalgam of pure HTML and embedded SVG and MathML. Content inside of those <em>embedded</em> SVG and MathML elements is parsed differently, and within this “foreign content” there <em>are</em> <code>CDATA section</code> nodes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">When something which <em>look like a CDATA section</em> appears in an HTML document, it’s transformed into a “bogus” HTML comment and considered a snippet of malformed markup. To make things more confusing, the parsing rules differ inside an HTML document for these regions depending on whether they are found within HTML elements or foreign elements.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>When a real CDATA section appears within SVG and MathML, it parses as in XML or SGML — everything is  literal text <em>until</em> the nearest <code>]]&gt;</code>.</li>\n\n\n\n<li>When a malformed CDATA look-alike appears in an HTML element, it gets special treatment — the parser only turns off until the nearest <code>&gt;</code>. This means that these sections end even without a closing <code>]]&gt;</code>, and when they do, all of their contained content disappears from the page.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">That small difference confuses naïve parsers and is a regular source of bugs.</p>\n\n\n<div class=\"wp-block-code\">\n	<div class=\"cm-editor\">\n		<div class=\"cm-scroller\">\n			\n<pre>\n<code class=\"language-html\"><div class=\"cm-line\"><span class=\"tok-punctuation\">&lt;</span><span class=\"tok-typeName\">div</span><span class=\"tok-punctuation\">&gt;</span>&lt;![CDATA[There are no tags in here.]]&gt;<span class=\"tok-punctuation\">&lt;/</span><span class=\"tok-typeName\">div</span><span class=\"tok-punctuation\">&gt;</span></div><div class=\"cm-line\"><span class=\"tok-punctuation\">&lt;</span><span class=\"tok-typeName\">svg</span><span class=\"tok-punctuation\">&gt;</span><span class=\"tok-punctuation\">&lt;</span><span class=\"tok-typeName\">text</span><span class=\"tok-punctuation\">&gt;</span>&lt;![CDATA[<span class=\"tok-punctuation\">&lt;</span><span class=\"tok-typeName\">none</span><span class=\"tok-punctuation\">&gt;</span> here either.]]&gt;<span class=\"tok-punctuation\">&lt;/</span><span class=\"tok-typeName\">text</span><span class=\"tok-punctuation\">&gt;</span><span class=\"tok-punctuation\">&lt;/</span><span class=\"tok-typeName\">svg</span><span class=\"tok-punctuation\">&gt;</span></div><div class=\"cm-line\"><span class=\"tok-punctuation\">&lt;</span><span class=\"tok-typeName\">div</span><span class=\"tok-punctuation\">&gt;</span>&lt;![CDATA[But there <span class=\"tok-punctuation\">&lt;</span><span class=\"tok-typeName\">em</span><span class=\"tok-punctuation\">&gt;</span>are<span class=\"tok-punctuation\">&lt;/</span><span class=\"tok-typeName\">em</span><span class=\"tok-punctuation\">&gt;</span> tags in here]]&gt;<span class=\"tok-punctuation\">&lt;/</span><span class=\"tok-typeName\">div</span><span class=\"tok-punctuation\">&gt;</span></div><div class=\"cm-line\">     the section ends here ╯   ╰ start of a real end tag</div><div class=\"cm-line\"></div><div class=\"cm-line\">The following is the equivalent markup to the third line.</div><div class=\"cm-line\"><span class=\"tok-punctuation\">&lt;</span><span class=\"tok-typeName\">div</span><span class=\"tok-punctuation\">&gt;</span><span class=\"tok-comment\">&lt;!--But there &lt;em--&gt;</span>are<span class=\"tok-punctuation\">&lt;/</span><span class=\"tok-typeName tok-invalid\">em</span><span class=\"tok-punctuation\">&gt;</span> tags in here]]&gt;<span class=\"tok-punctuation\">&lt;/</span><span class=\"tok-typeName\">div</span><span class=\"tok-punctuation\">&gt;</span></div></code></pre>\n		</div>\n	</div>\n</div>\n\n\n<h4 class=\"wp-block-heading\">SGML contains CDATA regions outside of marked CDATA sections</h4>\n\n\n\n<p class=\"wp-block-paragraph\">SGML made it possible to define more kinds of content than XML does for a given element. For example, an element in SGML can be declared to have a CDATA content model, in which case the element itself behaves like a CDATA section. All characters after the opening tag are treated as literal text until the parser finds the nearest appropriate end tag<sup class=\"fn\"><a href=\"https://fluffyandflakey.blog/tag/wordpress/feed/#2d0aee27-cf77-4b19-a4c5-3b1cc4192c53\" id=\"2d0aee27-cf77-4b19-a4c5-3b1cc4192c53-link\">3</a></sup>. XML rejected this ability because it increases the complexity of the parser and requires that every document also contains a full DTD when parsing. For example, if an element were declared to have CDATA content, then <code>a &lt;at> b</code> would represent that literal string; on the other hand, if it were declared like any other normal element, it would have three children: “<code>a </code>”, the <code>&lt;at></code> opening tag, and “<code> b</code>”.</p>\n\n\n<div class=\"wp-block-code\">\n	<div class=\"cm-editor\">\n		<div class=\"cm-scroller\">\n			\n<pre>\n<code class=\"language-xml\"><div class=\"cm-line\">&lt;!ELEMENT verbatim - - CDATA&gt;</div><div class=\"cm-line\"></div><div class=\"cm-line\">...</div><div class=\"cm-line\"></div><div class=\"cm-line\"><span class=\"tok-punctuation\">&lt;</span><span class=\"tok-typeName\">verbatim</span><span class=\"tok-punctuation\">&gt;</span></div><div class=\"cm-line\">There are <span class=\"tok-punctuation\">&lt;</span><span class=\"tok-typeName\">no</span><span class=\"tok-punctuation\">&gt;</span> tags in here, because this is CDATA,</div><div class=\"cm-line\">but you wouldn’t know without reading the DTD,</div><div class=\"cm-line\">overcomplicating the demands on the parser.</div><div class=\"cm-line\"><span class=\"tok-punctuation\">&lt;/</span><span class=\"tok-typeName\">verbatim</span><span class=\"tok-punctuation\">&gt;</span></div></code></pre>\n		</div>\n	</div>\n</div>\n\n\n<p class=\"wp-block-paragraph\">These kinds of elements do exist in HTML, though a few were modified when HTML5 was standardized in 2008. Inside of the elements, the parser essentially turns off, which makes them easy to parse and can help avoid the need to extensively escape content. These elements are, of course, <code>&lt;script></code> and <code>&lt;style></code><sup class=\"fn\"><a href=\"https://fluffyandflakey.blog/tag/wordpress/feed/#68152c30-bf36-4e5b-a7df-3f0610daeadb\" id=\"68152c30-bf36-4e5b-a7df-3f0610daeadb-link\">4</a></sup>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Were it not for the CDATA declared content model, every angle bracket and ampersand would have to be escaped in included JavaScript and CSS. In XHTML this was required, because it had no CDATA declared content model (since it was XML)<sup class=\"fn\"><a href=\"https://fluffyandflakey.blog/tag/wordpress/feed/#21aeab38-6e1f-4700-a8f4-27c96ebe0c3b\" id=\"21aeab38-6e1f-4700-a8f4-27c96ebe0c3b-link\">5</a></sup>.</p>\n\n\n\n<h4 class=\"wp-block-heading\">All text in XML is CDATA</h4>\n\n\n\n<p class=\"wp-block-paragraph\">Herein lies the most-confusing aspect of discussing CDATA — XML contains CDATA sections as well as <em>CDATA</em> as normal text. After parsing there is no distinction between <code>&amp;lt;tag&amp;gt;</code> and <code>&lt;![CDATA[&lt;tag&gt;]]&gt;</code> in the parsed content.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Many XML generators (or serializers) provide two mechanisms for creating text content: one wraps text in a <code>CDATA section</code> and leaves the text as it came (apart from avoiding including the terminating sequence); the other escapes syntax characters instead. While there are times where it would be appropriate to intentionally pick one over the other, a good library design would at least offer a third mechanism (if not <em>only</em> providing this third mechanism) which simply produces <em>CDATA</em>, itself determining when to wrap and when to escape<sup class=\"fn\"><a href=\"https://fluffyandflakey.blog/tag/wordpress/feed/#6e56b2ce-8156-4bf5-a4d3-d297a401c1a3\" id=\"6e56b2ce-8156-4bf5-a4d3-d297a401c1a3-link\">6</a></sup>, and whether or not to produce chunks of wrapped text interspersed with chunks of escaped text.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The real difference between these two kinds of CDATA is purely presentational in the source document, as the XML snippet below only contains one text node, not two. <em>Creating CDATA does not imply creating a <code>CDATA section</code>!</em></p>\n\n\n<div class=\"wp-block-code\">\n	<div class=\"cm-editor\">\n		<div class=\"cm-scroller\">\n			\n<pre>\n<code class=\"language-xml\"><div class=\"cm-line\"><span class=\"tok-punctuation\">&lt;</span><span class=\"tok-typeName\">rule</span><span class=\"tok-punctuation\">&gt;</span><span class=\"tok-string2\">&lt;![CDATA[#X13&lt;d&amp;r&gt;]]&gt;</span> (<span class=\"tok-string\">&amp;pp;</span>4 <span class=\"tok-string\">&amp;ss;</span>3.11)<span class=\"tok-punctuation\">&lt;/</span><span class=\"tok-typeName\">rule</span><span class=\"tok-punctuation\">&gt;</span></div></code></pre>\n		</div>\n	</div>\n</div>\n\n\n<h3 class=\"wp-block-heading\">RCDATA — “replaceable character data”</h3>\n\n\n\n<p class=\"wp-block-paragraph\"><em>May form: character references, literal text.</em></p>\n\n\n\n<p class=\"wp-block-paragraph\">There’s one more confusing designation for characters in the HTML and XML input streams: <em>RCDATA</em>. RCDATA is almost identical to CDATA, except that in contexts where CDATA does not decode character references and entities, RCDATA <em>will</em> decode them <em>into</em> CDATA. This is confusing, because in the context of an XML attribute, the <code>CDATA</code> designation in a DTD automatically implies that character references are decoded, unlike the <code>CDATA</code> sections in <em>content</em>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">To this end there are no RCDATA attributes, since character references are always decoded inside attribute values. The RCDATA declaration is like the SGML CDATA content declaration: all characters following the opening tag for this element will be treated as text until the nearest matching closing tag (the difference being only that character references are recognized and decoded).</p>\n\n\n\n<p class=\"wp-block-paragraph\">It’s worth remembering that XML rejected the CDATA content type because of how it complicates parsing, and it also rejected the RCDATA type. On the other hand, RCDATA was incorporated into HTML, but statically so. HTML has no configurable DTD, but in its specification two elements contain RCDATA content:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>TITLE</code></li>\n\n\n\n<li><code>TEXTAREA</code></li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">While it’s easy to comprehend the way that <code>&lt;textarea></code> works, and that’s probably because we are used to entering text into one on a web page, the behavior of <code>&lt;title></code> is consistently confused in all manner of programming languages, platforms, and HTML-parsing code.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The TITLE element <em>only</em> contains character data — it cannot contain other markup. The parsing is among the easiest sections of an HTML document to parse: once the <code>&lt;title&gt;</code> opening tag is detected, the parser can capture everything until the nearest <code>&lt;/title&gt;</code> closing tag. Everything it captured is literal text, after decoding character references.</p>\n\n\n<div class=\"wp-block-code\">\n	<div class=\"cm-editor\">\n		<div class=\"cm-scroller\">\n			\n<pre>\n<code class=\"language-html\"><div class=\"cm-line\"><span class=\"tok-comment\">&lt;!-- the title is &quot;&lt;title&gt;&quot; --&gt;</span></div><div class=\"cm-line\"><span class=\"tok-punctuation\">&lt;</span><span class=\"tok-typeName\">title</span><span class=\"tok-punctuation\">&gt;</span><span class=\"tok-punctuation\">&lt;</span><span class=\"tok-typeName\">title</span><span class=\"tok-punctuation\">&gt;</span><span class=\"tok-punctuation\">&lt;/</span><span class=\"tok-typeName\">title</span><span class=\"tok-punctuation\">&gt;</span></div><div class=\"cm-line\"></div><div class=\"cm-line\"><span class=\"tok-comment\">&lt;!-- equivalent HTML --&gt;</span></div><div class=\"cm-line\"><span class=\"tok-punctuation\">&lt;</span><span class=\"tok-typeName\">title</span><span class=\"tok-punctuation\">&gt;</span><span class=\"tok-string\">&amp;lt;</span>title<span class=\"tok-string\">&amp;gt;</span><span class=\"tok-punctuation\">&lt;/</span><span class=\"tok-typeName\">title</span><span class=\"tok-punctuation\">&gt;</span></div></code></pre>\n		</div>\n	</div>\n</div>\n\n\n<p class=\"wp-block-paragraph\">This complicates content management systems like WordPress which allow posts to have HTML in their <em>post titles</em>, because a page can show richly-formatted article titles which cannot be represented in the browser tab’s label, and care must be taken to extract the plaintext content from that HTML before display in those contexts.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"summary\">Coda</h2>\n\n\n\n<p class=\"wp-block-paragraph\">HTML and XML both speak about different kinds of characters in their source documents and content models, which traces from the complicated ways that SGML documents could be constructed. SGML’s complexity almost always stems from the central idea that computers should do extra work to remove the hassle for humans to enter structured content in plaintext documents.</p>\n\n\n\n<p class=\"wp-block-paragraph\">HTML, inspired by SGML, adopted some of the names and mechanisms for parsing those regions of text in distinct ways, but codified a single parsing standard independent of SGML. When XML was later developed, it was meant to form a simplified subset of SGML. This subset flipped the tradeoffs, leaning on humans performing extra work to remove the hassle for computers to parse structure in plaintext documents. For these text forms, this meant rejecting a few of the constructs while retaining others.</p>\n\n\n\n<p class=\"wp-block-paragraph\">This is also another demonstration of how <em>balanced tags are not enough</em> to have well-behaved HTML with a naïve parser. A well-formed XML document <a href=\"https://www.ch.imperial.ac.uk/rzepa/talks/pmr11/xml-dev/9708/0152.html\">may be parsed with a terse PERL script and regular expression</a>, but HTML relies heavily on the context in which characters are found. Any HTML parser <em>must</em> know the special rules for each kind of element’s content model.</p>\n\n\n\n<h3 class=\"wp-block-heading\">In summary</h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>When it’s unclear whether a character forms text or markup, that is PCDATA. Once parsed, there is no PCDATA anymore; it’s either a form of DATA or MARKUP.</li>\n\n\n\n<li>All text nodes in HTML are “DATA.”</li>\n\n\n\n<li>“CDATA” just means “character data” and means that after parsing, the content is text. It does not indicate whether character references are to be decoded or not; that comes from the region in the document, based on its context.</li>\n\n\n\n<li>There are no CDATA sections in HTML<sup class=\"fn\"><a href=\"https://fluffyandflakey.blog/tag/wordpress/feed/#31e75dae-1847-44df-92e1-8ae5756eeec6\" id=\"31e75dae-1847-44df-92e1-8ae5756eeec6-link\">7</a></sup>.</li>\n\n\n\n<li>All text nodes in XML are CDATA, but only after being parsed.</li>\n\n\n\n<li>CDATA sections offer a convenient way to avoid escaping, but are indistinguishable from the equivalent escaped text.</li>\n\n\n\n<li>HTML contains two special RCDATA elements which <em>only</em> and <em>always</em> contain a single text node child: <code>&lt;title&gt;</code> and <code>&lt;textarea&gt;</code>. Everything until the closing tag will be parsed as text, even if it looks like markup.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">This post is already long and still over-simplifies the picture. SGML is a rich and robust specification and includes <code>NDATA</code> and <code>SDATA</code>, HTML includes a <em>latching</em> <code>PLAINTEXT</code> parsing mode in which <em>the rest of the entire document is parsed as literal character data</em>, and there are other surprising goodies in how entities interact with the character mode.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Thanks for making it through to the end, or jumping directly here if you couldn’t wait.</p>\n\n\n<ol class=\"wp-block-footnotes\"><li id=\"0ba56e66-ab0f-4fbd-93d2-df22a6984fd7\">As an example, each part of a tag — its name, attribute names, attribute values — carries its own parsing rules. The same is true for comments, DOCTYPE declarations, and every other syntax form. <a href=\"https://fluffyandflakey.blog/tag/wordpress/feed/#0ba56e66-ab0f-4fbd-93d2-df22a6984fd7-link\"><img alt=\"↩\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/21a9.png\" style=\"height: 1em;\" />︎</a></li><li id=\"6d3de5b9-f8a6-4f46-853b-3d407731feca\">XML only allows character references to the characters in its “character set,” which is <em>almost</em> all Unicode code points, but excludes some control characters and U+FFFE and U+FFFF. <a href=\"https://fluffyandflakey.blog/tag/wordpress/feed/#6d3de5b9-f8a6-4f46-853b-3d407731feca-link\"><img alt=\"↩\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/21a9.png\" style=\"height: 1em;\" />︎</a></li><li id=\"2d0aee27-cf77-4b19-a4c5-3b1cc4192c53\">Because SGML was designed to minimize the amount of necessary syntax, it’s not necessary to have a full end tag for an open element, but that’s a simple-enough model to understand the concept. <a href=\"https://fluffyandflakey.blog/tag/wordpress/feed/#2d0aee27-cf77-4b19-a4c5-3b1cc4192c53-link\"><img alt=\"↩\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/21a9.png\" style=\"height: 1em;\" />︎</a></li><li id=\"68152c30-bf36-4e5b-a7df-3f0610daeadb\">The <code>&lt;style&gt;</code> element is straightforward, but <a href=\"https://sirre.al/2025/08/06/safe-json-in-script-tags-how-not-to-break-a-site/\">the <code>&lt;script&gt;</code> element has its own complicated modification</a> of the CDATA content model. It’s mostly CDATA, but makes it possible to escape the closing tag so that very old pages won’t break. HTML also applies this parsing mode for the <code>&lt;iframe&gt;</code>, <code>&lt;noembed&gt;</code>, <code>&lt;noframes&gt;</code>, and <code>&lt;noscript&gt;</code> elements (as well as for the deprecated <code>&lt;xmp&gt;</code> element), but these nominally should have no content inside of them (or shouldn’t be used); applying the CDATA content model prevents creating other elements as their children. <a href=\"https://fluffyandflakey.blog/tag/wordpress/feed/#68152c30-bf36-4e5b-a7df-3f0610daeadb-link\"><img alt=\"↩\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/21a9.png\" style=\"height: 1em;\" />︎</a></li><li id=\"21aeab38-6e1f-4700-a8f4-27c96ebe0c3b\">Frustratingly, in XHTML one <em>must</em> escape JavaScript and CSS in the page to avoid parsing failure, while in HTML one <em>must not</em>. This alone makes for a complicated stage in any reliable HTML/XHTML converter. <a href=\"https://fluffyandflakey.blog/tag/wordpress/feed/#21aeab38-6e1f-4700-a8f4-27c96ebe0c3b-link\"><img alt=\"↩\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/21a9.png\" style=\"height: 1em;\" />︎</a></li><li id=\"6e56b2ce-8156-4bf5-a4d3-d297a401c1a3\">Wrapping a language like HTML inside a CDATA section is a convenient way to represent the HTML visually and retain the ability to easily modify it, but entities present a problem. The serializer must either pre-translate the entity into its resolved character content, losing the macro-like behavior and its name; or leave the entity in place, thus nullifying it because it will not be recognized as an entity on parse. However, in such a situation, a serializer is free to terminate the CDATA section, append the entity, and open a new one to continue. <a href=\"https://fluffyandflakey.blog/tag/wordpress/feed/#6e56b2ce-8156-4bf5-a4d3-d297a401c1a3-link\"><img alt=\"↩\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/21a9.png\" style=\"height: 1em;\" />︎</a></li><li id=\"31e75dae-1847-44df-92e1-8ae5756eeec6\">As mentioned in the discussion about CDATA, embedded SVG and MathML elements <em>can</em> contain CDATA sections, but these are not technically HTML elements. <a href=\"https://fluffyandflakey.blog/tag/wordpress/feed/#31e75dae-1847-44df-92e1-8ae5756eeec6-link\"><img alt=\"↩\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/21a9.png\" style=\"height: 1em;\" />︎</a></li></ol>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 10 Jul 2026 11:07:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Dennis Snell\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"Gutenberg Times: WordPress 7.0.1 Fixes Registration Spam, wp_kses() CSS Corruption, and 7.0 Admin Design Glitches\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=45920\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:120:\"https://gutenbergtimes.com/wordpress-7-0-1-fixes-registration-spam-wp_kses-css-corruption-and-7-0-admin-design-glitches/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7735:\"<p class=\"wp-block-paragraph\">WordPress 7.0.1 is now available. As the first maintenance release of the 7.0 cycle, it&#8217;s strictly a bug-fix release: every included ticket addresses either a regression introduced during 7.0 development or an issue intentionally deferred at the end of the cycle.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The release ships fixes for 17 core Trac tickets and 14 Gutenberg PRs. Because this is a maintenance release, sites with automatic background updates enabled will update to 7.0.1 automatically — everyone else should update as soon as possible. Here&#8217;s what stands out for each audience.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Kudos to release lead Aaron Jorbin and his team for pushing this release over the finish line and getting it into hands of WordPress users quickly. </p>\n\n\n\n<h2 class=\"wp-block-heading\">The most important fixes for end users</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Registration page spam is shut down (<a href=\"https://core.trac.wordpress.org/ticket/63085\">#63085</a>).</strong> The account registration page could be abused to send &#8220;Login details&#8221; spam emails from your site. This is arguably the most impactful fix in the release for anyone running a site with open registration — it protects both your users&#8217; inboxes and your domain&#8217;s email reputation.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>The 7.0 admin reskin gets its rough edges sanded off.</strong> WordPress 7.0&#8217;s refreshed admin design shipped with a handful of visual glitches that this release cleans up:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Form elements are now standardized in the mobile viewport (<a href=\"https://core.trac.wordpress.org/ticket/64999\">#64999</a>)</li>\n\n\n\n<li>The image editor&#8217;s scale and crop inputs no longer mismatch in size, and the info icon uses the new color scheme (<a href=\"https://core.trac.wordpress.org/ticket/64937\">#64937</a>, <a href=\"https://core.trac.wordpress.org/ticket/65428\">#65428</a>)</li>\n\n\n\n<li>The publish settings panel no longer crowds its primary action buttons together (<a href=\"https://core.trac.wordpress.org/ticket/65286\">#65286</a>)</li>\n\n\n\n<li>The Media Library&#8217;s loading spinner is properly aligned in the modal filter toolbar, and the search bar no longer jumps position after a search (<a href=\"https://core.trac.wordpress.org/ticket/65275\">#65275</a>, <a href=\"https://core.trac.wordpress.org/ticket/65296\">#65296</a>)</li>\n\n\n\n<li>A &#8220;black flash&#8221; that briefly appeared on wp-admin pages before the interface finished loading is gone (Gutenberg <a href=\"https://github.com/WordPress/gutenberg/pull/78493\">#78493</a>)</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Emoji behave correctly again.</strong> Two related fixes: the emoji detection script is once more printed in the admin (<a href=\"https://core.trac.wordpress.org/ticket/65310\">#65310</a>), and certain characters are no longer incorrectly replaced by Twemoji images (<a href=\"https://core.trac.wordpress.org/ticket/64318\">#64318</a>).</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Accessibility improvements to the new revisions experience.</strong> The Visual History / Revisions feature introduced in 7.0 receives several accessibility fixes: focus now moves to the revisions slider when entering revisions mode, and changed blocks are marked with a CSS outline as a secondary, non-color indicator — important for users with low vision or color blindness (<a href=\"https://core.trac.wordpress.org/ticket/65122\">#65122</a>, Gutenberg <a href=\"https://github.com/WordPress/gutenberg/pull/77530\">#77530</a>, <a href=\"https://github.com/WordPress/gutenberg/pull/78393\">#78393</a>, <a href=\"https://github.com/WordPress/gutenberg/pull/79691\">#79691</a>).</p>\n\n\n\n<h2 class=\"wp-block-heading\">The most important fixes for developers</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong><code>wp_kses()</code> no longer corrupts valid CSS (<a href=\"https://core.trac.wordpress.org/ticket/65270\">#65270</a>).</strong> Since 7.0 RC4, <code>wp_kses()</code> could mangle legitimate <code>background-image: url(…)</code> declarations into a broken <code>style=\")\"</code> attribute. If your theme or plugin outputs inline background images through KSES-filtered content, 7.0.1 restores expected behavior — any workarounds you shipped can now be removed.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong><code>global-styles-inline-css</code> can be dequeued again (<a href=\"https://core.trac.wordpress.org/ticket/65336\">#65336</a>).</strong> Since 7.0, developers were unable to remove the global styles inline stylesheet. If your build pipeline or performance optimization strips this and re-serves it another way, that control is back.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>PHP 8.5 compatibility fix in <code>wp_get_attachment_image_src()</code> (<a href=\"https://core.trac.wordpress.org/ticket/64742\">#64742</a>).</strong> An incorrect array access triggered issues under PHP 8.5. If you&#8217;re testing sites on newer PHP versions, this removes one blocker.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>A removed Navigation function returns as a deprecated shim (Gutenberg <a href=\"https://github.com/WordPress/gutenberg/pull/78484\">#78484</a>).</strong> <code>block_core_navigation_submenu_render_submenu_icon()</code> was removed in 7.0, breaking themes and plugins that called it directly. It&#8217;s restored as a deprecated shim — but treat this as your migration notice, not a reprieve. Update any code that references it.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Editor state management fixes reduce false &#8220;unsaved changes&#8221; warnings.</strong> Two Gutenberg fixes matter here: </p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>controlled/mode block changes are now marked non-persistent (<a href=\"https://github.com/WordPress/gutenberg/pull/79350\">#79350</a>), and </li>\n\n\n\n<li>related navigation entities are no longer dirtied during passive renders (<a href=\"https://github.com/WordPress/gutenberg/pull/79000\">#79000</a>). </li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">Together these should mean fewer spurious dirty states and a cleaner undo history — a quality-of-life improvement if you build with template parts and navigation blocks.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Block Visibility: &#8220;hide everywhere&#8221; keeps working after a block opts out of visibility support (<a href=\"https://core.trac.wordpress.org/ticket/65389\">#65389</a>).</strong> If you register blocks that disable visibility support, previously hidden instances now stay hidden as expected.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How to update</h2>\n\n\n\n<p class=\"wp-block-paragraph\">You can update directly from <strong>Dashboard → Updates</strong> in your site&#8217;s admin, run <code>wp core update</code> with WP-CLI, or download WordPress 7.0.1 from WordPress.org and install it manually. Sites that support automatic background updates for minor releases will begin updating on their own shortly.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The full ticket list is available in the<a href=\"https://make.wordpress.org/core/2026/07/01/wordpress-7-0-1-rc1-is-now-available/\"> release candidate announcement</a>, Trac report 4, and the 7.0.x editor tasks board on GitHub.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What&#8217;s next: WordPress 7.1</h2>\n\n\n\n<p class=\"wp-block-paragraph\">With 7.0.1 out the door, attention turns to the next major release: WordPress 7.1 is scheduled for August 19, 2026. To see what&#8217;s planned for the release, check out the <a href=\"https://make.wordpress.org/core/2026/06/19/roadmap-to-7-1/\">Roadmap to 7.1</a> on the Make WordPress Core blog.</p>\n\n\n\n<p class=\"wp-block-paragraph\"></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 10 Jul 2026 09:34:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"WordPress.org blog: WordPress 7.0.1 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=21005\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2026/07/wordpress-7-0-1-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8685:\"<p class=\"wp-block-paragraph\"><strong>WordPress 7.0.1 is now available!</strong></p>\n\n\n\n<p class=\"wp-block-paragraph\">This minor release includes fixes for 31 bugs <a href=\"https://core.trac.wordpress.org/query?resolution=fixed&amp;milestone=7.0.1&amp;group=component&amp;col=id&amp;col=summary&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=status&amp;col=priority&amp;order=priority\">throughout Core</a> and the <a href=\"https://core.trac.wordpress.org/changeset/62610\">Block Editor</a>, addressing issues affecting multiple areas of WordPress including the block editor, admin ui, and media. For a full list of bug fixes, please refer to the <a href=\"https://make.wordpress.org/core/2026/07/01/wordpress-7-0-1-rc1-is-now-available/\">release candidate announcement.</a></p>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.0.1 is a short-cycle maintenance release. The next major version of WordPress will be 7.1; it is scheduled for release on 19 August 2026 at <a href=\"https://us.wordcamp.org/2026/\">WordCamp US</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you have sites that support automatic background updates, the update process will begin automatically.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You can <a href=\"https://wordpress.org/wordpress-7.0.1.zip\">download WordPress 7.0.1 from WordPress.org</a>, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”. For more information on this release, please <a href=\"https://wordpress.org/support/wordpress-version/version-7-0-1\">visit the HelpHub site</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you to these WordPress contributors</h2>\n\n\n\n<p class=\"wp-block-paragraph\">This release was led by <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/masteradhoc/\">Brian Haas</a>, <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a> and <a href=\"https://profiles.wordpress.org/estelaris/\">Estela Rueda</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.0.1 would not have been possible without the contributions of the following people. Their asynchronous coordination to deliver maintenance fixes into a stable release is a testament to the power and capability of the WordPress community.</p>\n\n\n\n<p class=\"is-style-wporg-props-long wp-block-paragraph\"><a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/abduremon\">Abdur Rahman Emon</a>, <a href=\"https://profiles.wordpress.org/abhishekfdd\">Abhishek Kumar</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/zieladam\">Adam Zieliński</a>, <a href=\"https://profiles.wordpress.org/iamadisingh\">Aditya Singh</a>, <a href=\"https://profiles.wordpress.org/wildworks\">Aki Hamano</a>, <a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andraganescu\">Andrei Draganescu</a>, <a href=\"https://profiles.wordpress.org/andrewserong\">Andrew Serong</a>, <a href=\"https://profiles.wordpress.org/annezazu\">annezazu</a>, <a href=\"https://profiles.wordpress.org/scruffian\">Ben Dwyer</a>, <a href=\"https://profiles.wordpress.org/bacoords\">Brian Coords</a>, <a href=\"https://profiles.wordpress.org/masteradhoc\">Brian Haas</a>, <a href=\"https://profiles.wordpress.org/cbravobernal\">Carlos Bravo</a>, <a href=\"https://profiles.wordpress.org/cogdesign\">cogdesign</a>, <a href=\"https://profiles.wordpress.org/danluu\">Dan Luu</a>, <a href=\"https://profiles.wordpress.org/talldanwp\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/darshitrajyaguru97\">Darshit Rajyaguru</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/dmsnell\">Dennis Snell</a>, <a href=\"https://profiles.wordpress.org/dhruvang21\">Dhruvang21</a>, <a href=\"https://profiles.wordpress.org/ellatrix\">Ella Van Durpe</a>, <a href=\"https://profiles.wordpress.org/r1k0\">Erick Wambua</a>, <a href=\"https://profiles.wordpress.org/ecairol\">Esteban</a>, <a href=\"https://profiles.wordpress.org/estelaris\">Estela Rueda</a>, <a href=\"https://profiles.wordpress.org/mamaduka\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/gziolo\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/abcd95\">Himanshu Pathak</a>, <a href=\"https://profiles.wordpress.org/hbhalodia\">Hit Bhalodia</a>, <a href=\"https://profiles.wordpress.org/huzaifaalmesbah\">Huzaifa Al Mesbah</a>, <a href=\"https://profiles.wordpress.org/iflairwebtechnologies\">iflairwebtechnologies</a>, <a href=\"https://profiles.wordpress.org/jamesbregenzer\">James</a>, <a href=\"https://profiles.wordpress.org/jsnajdr\">Jarda Snajdr</a>, <a href=\"https://profiles.wordpress.org/audrasjb\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/joedolson\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joen\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/jonsurrell\">Jon Surrell</a>, <a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/karthikeya01\">Karthikeya Bethu</a>, <a href=\"https://profiles.wordpress.org/khokansardar\">Khokan Sardar</a>, <a href=\"https://profiles.wordpress.org/rlucian\">Lucian R.</a>, <a href=\"https://profiles.wordpress.org/luismulinari\">luismulinari</a>, <a href=\"https://profiles.wordpress.org/dervishov\">Mahammad Darvishov</a>, <a href=\"https://profiles.wordpress.org/manhar\">Manhar Barot</a>, <a href=\"https://profiles.wordpress.org/mciampini\">Marco Ciampini</a>, <a href=\"https://profiles.wordpress.org/tyxla\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/muryam\">Maryam Sultana</a>, <a href=\"https://profiles.wordpress.org/masum52\">Masum</a>, <a href=\"https://profiles.wordpress.org/mcsf\">Miguel Fonseca</a>, <a href=\"https://profiles.wordpress.org/369work\">Miroku</a>, <a href=\"https://profiles.wordpress.org/mohamedahamed\">Mohammed Noumaan Ahamed</a>, <a href=\"https://profiles.wordpress.org/mukesh27\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/mustafabharmal\">Mustafa Bharmal</a>, <a href=\"https://profiles.wordpress.org/ntsekouras\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/noruzzaman\">Noruzzaman</a>, <a href=\"https://profiles.wordpress.org/ozgursar\">Ozgur Sar</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/presskopp\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/ekla\">Rahul Kumar</a>, <a href=\"https://profiles.wordpress.org/ramonopoly\">ramonopoly</a>, <a href=\"https://profiles.wordpress.org/youknowriad\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/rishabhwp\">Rishabh Gupta</a>, <a href=\"https://profiles.wordpress.org/roshniahuja14\">Roshni Ahuja</a>, <a href=\"https://profiles.wordpress.org/sainathpoojary\">Sainath Poojary</a>, <a href=\"https://profiles.wordpress.org/sakshamsharma5\">Saksham Sharma</a>, <a href=\"https://profiles.wordpress.org/andrewssanya\">SAndrew</a>, <a href=\"https://profiles.wordpress.org/coffee2code\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/siliconforks\">siliconforks</a>, <a href=\"https://profiles.wordpress.org/sabernhardt\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/swanandm\">Swanand M</a>, <a href=\"https://profiles.wordpress.org/inc2734\">Takashi Kitajima</a>, <a href=\"https://profiles.wordpress.org/edent\">Terence Eden</a>, <a href=\"https://profiles.wordpress.org/threadi\">threadi</a>, <a href=\"https://profiles.wordpress.org/tusharaddweb\">Tushar Patel</a>, <a href=\"https://profiles.wordpress.org/umesh.nevase\">Umesh Nevase</a>, <a href=\"https://profiles.wordpress.org/webmandesign\">WebMan Design | Oliver Juhas</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/yogeshbhutkar\">Yogesh Bhutkar</a>, <a href=\"https://profiles.wordpress.org/yusufmudagal\">Yusuf Mudagal</a> </p>\n\n\n\n<h2 class=\"wp-block-heading\">How to contribute</h2>\n\n\n\n<p class=\"wp-block-paragraph\">To get involved in WordPress core development, head over to Trac, <a href=\"https://core.trac.wordpress.org/report/6\">choose a ticket</a>, and join the conversation in the <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> channel. Need help? Check out the <a href=\"https://make.wordpress.org/core/handbook/\">Core Contributor Handbook</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Props to </em><a class=\"mention\" href=\"https://profiles.wordpress.org/jorbin/\"><span class=\"mentions-prefix\">@</span>jorbin</a><em> for proofreading.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 09 Jul 2026 17:33:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Estela Rueda\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"Open Channels FM: The Paradox of Empowerment in a Disruptive Era\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2556703\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://openchannels.fm/the-paradox-of-empowerment-in-a-disruptive-era/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:158:\"Tech feels wild and unpredictable, yet super empowering. Success now hinges on broad awareness and curiosity, not just deep specialization. Embrace the chaos.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 09 Jul 2026 15:24:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"Jonathan Desrosiers: 13 Years Contributing to WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://jonathandesrosiers.com/?p=12208\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://jonathandesrosiers.com/2026/07/13-years-contributing-to-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:13569:\"<p class=\"wp-block-paragraph\">Thirteen years ago today, I received <a href=\"https://core.trac.wordpress.org/changeset/24588\">my very first props for contributing to WordPress Core</a>. If my WordPress contribution journey were a person, it would now be a teenager. It&#8217;s pretty wild to think about, but I&#8217;ve now been contributing to the WordPress project in some way for a third of my life!</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-what-is-a-prop\">What is a &#8220;prop&#8221;?</h2>\n\n\n\n<p class=\"wp-block-paragraph\">In the WordPress open source project, community participants receive credit for contributing to a given change or deliverable by receiving “props.”</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">Props should be given to all those who contributed to the final commit, whether through patches, refreshed patches, code suggested otherwise, design, writing, user testing, or other significant investments of time and effort. Usernames are parsed for the credits list and WordPress.org profiles.</p>\n\n\n\n<p class=\"is-style-text-subtitle is-style-text-subtitle--1 wp-block-paragraph\"><a href=\"https://make.wordpress.org/core/handbook/best-practices/commit-messages/#props\">WordPress Core Handbook</a></p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">The names of all the contributors who helped make a specific release possible are collected in the weeks leading up and added to the Credits API, which powers the Credits page in the WordPress dashboard.</p>\n\n\n\n<p class=\"wp-block-paragraph\">To date, I have been listed on the Credits page for 24 consecutive releases starting with 4.7, and 29 of the 35 releases overall since my first credited contribution in <a href=\"https://wordpress.org/news/2013/08/oscar/\">WordPress 3.6 “Oscar”,</a> alongside 224 other contributors.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Every year is a bit different than the last, but I can confidently say that this past year has been significantly different. What it means to develop software or contribute to open source is changing rapidly with advanced AI innovations seemingly every day combined with these tools being accessible to more people than ever before. But throughout all this, one truth holds strong: open source software is more important than ever.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-looking-back\">Looking Back</h2>\n\n\n\n<p class=\"wp-block-paragraph\">It seemed only fitting for me to instruct AI to analyze my contribution activity over the last 365 days to try and find anything interesting!</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-prompt\">Prompt</h3>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">Today is the 13th Anniversary of my first credited contribution to the WordPress project. I try to write a blog post each year to mark the occasion.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I’m looking for ideas for this years edition. Please go and read all of my past posts (accessible here at this category feed https://jonathandesrosiers.com/category/contributing-anniversaries/feed) and give me 10-12 ideas for what to focus on this year. You can also look through the other content on my site for other ideas.</p>\n\n\n\n<p class=\"wp-block-paragraph\">After you do that, I want you to look at the git history for the <code>wordpress-develop</code> and <code>gutenberg</code> repositories between July 8, 2025 and yesterday (July 7, 2026). I want you to parse the logs to summarize my activity and find some particular ways to analyze the data that are interesting.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Be creative! These posts are the most fun when I am able to find some unique insight into a year&#8217;s worth of contributions.</p>\n</blockquote>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-results\">Results</h3>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-your-year-13-in-numbers-jul-8-2025-jul-7-2026\">Your year 13 in numbers (Jul 8 2025 → Jul 7 2026)</h4>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Metric</th><th>Value</th></tr></thead><tbody><tr><td>Core commits authored &amp; committed</td><td><strong>119</strong> (~7% of all 1,707 core commits this cycle)</td></tr><tr><td>Additional commits crediting you (props received)</td><td><strong>97</strong> → ~<strong>216</strong> credited touch points in core alone</td></tr><tr><td>Lines changed</td><td><strong>+41,746 / −21,940</strong> across 656 file-changes</td></tr><tr><td>Unique Trac tickets</td><td><strong>69</strong></td></tr><tr><td>Gutenberg PRs authored</td><td><strong>24</strong> (+108 co-authored/credited)</td></tr><tr><td>Reverts you committed</td><td>6</td></tr></tbody></table></figure>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>The headline:</strong> <strong>80 of your 119 core commits (67%) are &#8220;Build/Test Tools.&#8221;</strong> Add Tests + General and it&#8217;s ~80%. You spent year 13 as the <strong>plumber of WordPress</strong> — CI, build pipeline, dependency stewardship, release infrastructure.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-the-most-interesting-angles-the-data-surfaced\">The most interesting angles the data surfaced</h2>\n\n\n\n<ol class=\"wp-block-list\">\n<li class=\"\"><strong>The nocturnal committer.</strong> ~50 of your commits land between <strong>midnight and 4am</strong>. Tuesday (37) and Thursday (31) are your peak days; Saturday is nearly dead (3).</li>\n\n\n\n<li class=\"\"><strong>The month that didn&#8217;t exist.</strong> <strong>January 2026: zero commits.</strong> March 2026: <strong>40</strong>. Your cadence is a heartbeat synced to the 6.9 and 7.0 release cycles, not the calendar.</li>\n\n\n\n<li class=\"\"><strong>The June 30th ritual.</strong> You bumped Gutenberg&#8217;s pinned hash <strong>seven times in a single day</strong> (v22.8.0 → v23.4.0) — a whole quarter of catching-up compressed into one sitting.</li>\n\n\n\n<li class=\"\"><strong>Supply-chain quiet work.</strong> Pinning full-length action SHAs, replacing abandoned third-party actions, migrating release logic to a GitHub App, ca-bundle updates — you spent the year hardening the software supply chain nobody thanks you for.</li>\n\n\n\n<li class=\"\"><strong>Keeping the ancient libraries breathing.</strong> lodash, underscore, backbone, getID3, Twemoji — you&#8217;re the caretaker of WordPress&#8217;s legacy vendored code.</li>\n\n\n\n<li class=\"\"><strong>Future-proofing the matrix.</strong> MySQL 9.5/9.6/9.7, MariaDB 12.1, PHP 8.5 (HEIF/HEIC) — you test tomorrow&#8217;s platforms today.</li>\n\n\n\n<li class=\"\"><strong>A first, quietly historic commit:</strong> <em>&#8220;Include example for disclosing AI usage&#8221;</em> — you helped write core&#8217;s early AI-disclosure norms.</li>\n</ol>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-10-12-ideas-for-the-year-13-post\">10–12 ideas for the year-13 post</h4>\n\n\n\n<ol class=\"wp-block-list\">\n<li class=\"\"><strong>&#8220;The Plumber&#8217;s Year: 67% of My Commits Were Infrastructure.&#8221;</strong> Own the unglamorous. A love letter to build/test/CI work — the contributions that never show up in a release announcement but without which nothing ships. This is your strongest, most authentic angle.</li>\n\n\n\n<li class=\"\"><strong>&#8220;Confessions of a Nocturnal Committer.&#8221;</strong> Fun, human, data-driven: your midnight-to-4am commit cluster, Tuesday/Thursday peaks, the dead January. Chart your year as a heartbeat and reflect on what it says about maintainer rhythms (and sustainability/burnout).</li>\n\n\n\n<li class=\"\"><strong>&#8220;216 Times.&#8221;</strong> Companion to your 2024 props post, flipped: this year you <em>received</em> credit ~216 times in core (119 committed + 97 propped). Explore the two halves of a committer&#8217;s fingerprint — the work you land yourself vs. the work you shepherd for others.</li>\n\n\n\n<li class=\"\"><strong>&#8220;The Boring Commits That Keep 40% of the Web Safe.&#8221;</strong> The supply-chain security angle: pinned SHAs, abandoned-action replacement, the GitHub App migration, ca-bundle. Frame maintenance-as-security — timely and underappreciated.</li>\n\n\n\n<li class=\"\"><strong>&#8220;I Test the Future So You Don&#8217;t Break in It.&#8221;</strong> MySQL 9.7, MariaDB 12.1, PHP 8.5 — a piece on being the person who runs tomorrow&#8217;s platforms against today&#8217;s code, and why the test matrix is a form of care.</li>\n\n\n\n<li class=\"\"><strong>&#8220;The Commit I&#8217;m Proudest Of Was One Line About AI.&#8221;</strong> Use <em>&#8220;Include example for disclosing AI usage&#8221;</em> as a springboard into how WordPress (and you) navigated AI&#8217;s arrival in the contribution workflow in 2025–26. Very of-the-moment.</li>\n\n\n\n<li class=\"\"><strong>&#8220;Anatomy of a Revert.&#8221;</strong> Six times this year you reverted your own or others&#8217; work. A candid, senior-contributor essay on why reverting is a feature not a failure — iteration, humility, and trunk stability.</li>\n\n\n\n<li class=\"\"><strong>&#8220;A Year in Dependencies.&#8221;</strong> The stewardship story — lodash/underscore/backbone/getID3/Twemoji. What it means to be the caretaker of code written a decade ago that you can&#8217;t just delete. Legacy as responsibility.</li>\n\n\n\n<li class=\"\"><strong>&#8220;Who I Built With.&#8221;</strong> Refresh your collaborator lens for year 13: westonruter (24), jorbin (22), johnbillion (15), peterwilsoncc (14), wildworks (13)… Name the people behind the props lines and tell a story or two about the work you shared.</li>\n\n\n\n<li class=\"\"><strong>&#8220;The Shape of a Release Cycle, Drawn in Commits.&#8221;</strong> Overlay your monthly commit counts on the 6.9 and 7.0 timelines — the March spike, the December bundled-themes push, the quiet stretches. Show readers what a maintainer&#8217;s year <em>looks like</em> mapped to what shipped.</li>\n\n\n\n<li class=\"\"><strong>&#8220;Same Job, New Tools: Automating Myself Out of the Loop.&#8221;</strong> Your Gutenberg PRs are almost all release automation — GitHub App auth, GHCR publishing, reproducible builds, Dependabot. A reflective piece on spending your labor building the machine that does the labor, and what that means for the next generation of contributors.</li>\n</ol>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\"></blockquote>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"wp-block-paragraph\">I haven&#8217;t validated any of these numbers, but they do seem relatively accurate at first glance. I had ChatGPT create an embroidered patch that reflects the summary above.</p>\n\n\n\n<figure class=\"wp-block-image size-large is-resized wp-lightbox-container\"><img alt=\"\" class=\"wp-image-12221 not-transparent\" height=\"1024\" src=\"https://jonathandesrosiers.com/wp-content/uploads/2026/07/plumber-of-wordpress-1024x1024.jpg\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n\n\n\n<p class=\"wp-block-paragraph\">And some of those writing suggestions are pretty good ideas! I&#8217;m out of time for today, so I&#8217;ll file these in the backlog for another day. But here&#8217;s to another year of helping the world find their voice to share their stories using WordPress. <img alt=\"🍻\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f37b.png\" style=\"height: 1em;\" /></p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-past-milestones\">Past Milestones</h2>\n\n\n\n<p class=\"wp-block-paragraph\">&#8220;Props&#8221; Anniversaries: <a href=\"https://jonathandesrosiers.com/2023/07/10-years-of-contributing-to-wordpress/\">Ten</a>, <a href=\"https://jonathandesrosiers.com/2024/07/11-years-contributing-to-wordpress/\">Eleven</a>, <a href=\"https://jonathandesrosiers.com/2025/07/12-years-contributing-to-wordpress/\">Twelve</a> (<a href=\"https://jonathandesrosiers.com/category/contributing-anniversaries/\">archive</a>).</p>\n\n\n\n<p class=\"wp-block-paragraph\">Commit-iversaries: <a href=\"https://jonathandesrosiers.com/2020/11/two-years-my-wordpress-commit-iversary/\">Two</a>, <a href=\"https://jonathandesrosiers.com/2023/11/five-years-my-wordpress-commit-iversary/\">Five</a>, <a href=\"https://jonathandesrosiers.com/2024/11/six-years-a-committer-my-wordpress-commit-iversary/\">Six</a>, <a href=\"https://jonathandesrosiers.com/2025/11/seven-years-a-committer-my-wordpress-commit-iversary/\">Seven</a> (<a href=\"https://jonathandesrosiers.com/category/commit-iversaries/\">archive</a>).</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"has-text-align-right has-small-font-size wp-block-paragraph\"><em>Featured image credit: <a href=\"https://creativecommons.org/publicdomain/zero/1.0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/72361fea8c/\">photo</a> by <a href=\"https://wordpress.org/photos/author/westguard/\">Mark Westguard</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.</em></p>\n\n\n\n<p class=\"wp-block-paragraph\"></p>\n<p>The post <a href=\"https://jonathandesrosiers.com/2026/07/13-years-contributing-to-wordpress/\">13 Years Contributing to WordPress</a> appeared first on <a href=\"https://jonathandesrosiers.com\">Jonathan Desrosiers</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 09 Jul 2026 03:39:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Jonathan Desrosiers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Matt: Code for the People\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=153500\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://ma.tt/2026/07/people-code/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4081:\"<figure class=\"wp-block-image size-full\"><a href=\"https://codeforthepeople.com/\"><img alt=\"\" class=\"wp-image-153503\" height=\"326\" src=\"https://i0.wp.com/ma.tt/files/2026/07/cftp-matt.jpeg?resize=604%2C326&#038;quality=89&#038;ssl=1\" width=\"604\" /></a></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Lights! Camera! Action!</p>\n\n\n\n<p class=\"wp-block-paragraph\">Todd Spangler at Variety writes: <a href=\"https://variety.com/2026/digital/news/automattic-code-for-the-people-1236802508/\">Automattic’s ‘Code for the People’ Documentary Is a Rallying Cry for Users to Fight for the Open Internet</a>, from the NYC premiere last week.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I&#8217;m looking forward to the <a href=\"https://luma.com/r8wbww10\">San Francisco premiere of the documentary</a>, and then tomorrow everyone <a href=\"https://codeforthepeople.com/\">can stream it for free on codeforthepeople.com</a>! Appearances by <a href=\"https://nomad.blog/\">Anne McCarthy</a>, <a href=\"https://beau.blog/\">Beau Lebens</a>, <a href=\"https://eric.blog/\">Eric Binnion</a>, <a href=\"https://iandanielstewart.com/\">Ian Stewart</a>, <a href=\"https://marjorie.blog\">Marjorie Asturias</a>, <a href=\"https://mary.blog/\">Mary Hubbard</a>, <a href=\"https://matiasventura.com/\">Matías Ventura</a>, Matthew Miller, <a href=\"https://paolo.blog/\">Paolo Belcastro</a>, and <a href=\"https://paulmaiorana.com/\">Paul Maiorana</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>We need to tell the story of Open Source in as many ways and places as possible. It&#8217;s never been more critical. </strong></p>\n\n\n\n<p class=\"wp-block-paragraph\">Film is new to us, and it&#8217;s funny how quickly things change: There&#8217;s a segment with a few &#8220;OpenAI not open&#8221; sound bites, but to their credit, they <a href=\"https://openai.com/open-models/\">have been releasing open-weight models (Safeguard is particularly interesting)</a>. That said, the <a href=\"https://artificialanalysis.ai/leaderboards/models?weights=open\">top open-weight models are all from China</a>, save for <a href=\"https://www.nvidia.com/en-us/ai-data-science/foundation-models/nemotron/\">Nvidia&#8217;s Nemotron</a>, in ~12th place. </p>\n\n\n\n<p class=\"wp-block-paragraph\">When I went to the first WordCamps <a href=\"https://ma.tt/2008/09/first-day-in-beijing/\">in Beijing</a> and <a href=\"https://ma.tt/2008/09/shanghai-wordcamp/\">Shanghai</a> in 2009, it was a very different time. They were the biggest in the world at the time! I don&#8217;t think you could <a href=\"https://ma.tt/2008/09/first-day-in-beijing/#jp-carousel-7712\">take photos in Tiananmen Square as freely as I did then</a>; now to visit I think you need an appointment, ID checks, and security checks. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Even during WordCamp, it felt like the freedom of Open Source was in high demand, but it also created a lot of fear. I found out later that one of the student volunteers who helped their professor organize everything had been taken in for hours of questioning following the event.</p>\n\n\n\n<p class=\"wp-block-paragraph\">On that trip, I saw how fine-grained the Great Firewall could be when individual posts (IIRC, about bad milk from a factory harming babies) wouldn&#8217;t load, but the rest of the site would.  WordPress.com had been totally blocked, <a href=\"https://web.archive.org/web/20090601162213/http://www.google.com/hostednews/afp/article/ALeqM5igVn4hcj6ZNWlawSvzLvgEMkZmkQ\">taking about a quarter of our traffic at the time</a>, but behind the Firewall, Open Source continued to thrive and grow, and now the frontier open models are being driven by China in a way I never would have predicted!</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Once you&#8217;ve had a taste of freedom, it&#8217;s hard to go back.</strong></p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Update: You can now watch the entire thing online:</em></p>\n\n\n\n<figure class=\"wp-block-embed alignwide is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 08 Jul 2026 23:16:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:123:\"WPTavern: #224 – David Snead on Building Trust and Collaboration in the Hosting Industry With the Secure Hosting Alliance\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=206201\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:137:\"https://wptavern.com/podcast/224-david-snead-on-building-trust-and-collaboration-in-the-hosting-industry-with-the-secure-hosting-alliance\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:37674:\"<details>Transcript<div>\n<p class=\"wp-block-paragraph\">[00:00:19] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox Podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, building trust and collaboration in the hosting industry with the Secure Hosting Alliance.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to wptavern.com/feed/podcast, and you can copy that URL into most podcast players.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you, and hopefully get you, or your idea, featured on the show. Head to wptavern.com/contact/jukebox, and use the form there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So on the podcast today, we have David Snead. David has been involved in the hosting industry since 1999, starting out as legal counsel for one of the earliest shared hosting companies, and going on to work with over 50 others. He helped found the i2Coalition, serve as in-house counsel for cPanel and WebPros, and now leads the Secure Hosting Alliance.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;re listening to this podcast, I&#8217;m sure that many of you will have worked closely with hosting companies. Perhaps you run an agency, or business, that depends on the reliability, ethics, and security of hosting providers. David is here to talk about cross-industry collaboration in the hosting world, specifically around improving security, professionalism, and communication between hosts.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The conversation focused on why, and how, the Internet Infrastructure Forum, or IIF, is building a framework for real-time intelligence sharing and abuse reporting, aiming to help the entire ecosystem detect and prevent attacks faster than adversaries can adapt.</p>\n\n\n\n<p class=\"wp-block-paragraph\">David talks about the challenges hosting companies face, especially smaller ones, in keeping up with security, and how this evolving project hopes to ease this by sharing actionable, non-proprietary abuse information across registrars, hosting providers, DNS services, and more.</p>\n\n\n\n<p class=\"wp-block-paragraph\">He discusses the growth of both the Secure Hosting Alliance and the IIF, the business case for collaboration, and the nuances of legal and technical information sharing across borders.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;re in hosting, run a web agency, or just want to know how the backbone of the web is working to stay more secure and connected, this episode is for you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;re interested in finding out more, you can find all of the links in the show notes by heading to wptavern.com/podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so, without further delay, I bring you David Snead.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I am joined on the podcast by David Snead. Hello David.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:20] <strong>David Snead:</strong> Hello.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:21] <strong>Nathan Wrigley:</strong> Very nice to have you with us. David&#8217;s got a really interesting background, and a really interesting, I&#8217;m going to use the word project. I don&#8217;t know if that&#8217;s the right word. It feels like it&#8217;s got more solidity and it&#8217;s got a lot more history than that. It&#8217;s something which is, I think going, but we&#8217;ll find out a little bit more about it. It&#8217;s all about the hosting industry and trying to get hosts to, I guess communicate with each other in ways going forwards.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:44] <strong>David Snead:</strong> That is a part of it. There are really two goals and one is to level up the ethics and professionalism in the hosting industry. And the second is to facilitate more comradery and interaction among hosts. Something that folks felt occurred in the early 2000s, and with all the consolidation that occurred went away. And so that&#8217;s something that we&#8217;re also trying to facilitate.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:04:16] <strong>Nathan Wrigley:</strong> Okay. So given that we&#8217;re going to be talking about hosting, I guess it&#8217;s a good idea to paint your credentials and find out a little bit more about you. So a short opportunity to just tell us a little about you and your background in WordPress and hosting specifically, I suppose.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:04:29] <strong>David Snead:</strong> Sure. So I have been working in the hosting industry since 1999. As I often say, I was working in the hosting industry when hosting was cool. It is not so cool anymore. In fact most people don&#8217;t really pay attention to it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You know, and I started as a lawyer for a hosting company, and I was in-house counsel for a company that actually owned a hosting company and was one of the earliest hosting companies that specialised in shared hosting. And so I was their general counsel. And for some reason it stuck, and I&#8217;ve just kind of turned it into a career.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So after that I had a private practise as a lawyer and I worked with probably 50 different hosting companies, mostly writing policies that nobody ever reads, which makes me super fun at parties.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And then from there, my friend Christian Dawson and I formed the i2Coalition as a response to some legislation in the US that would&#8217;ve been kind of the death nail for internet providers. So we started the i2Coalition. I then went in-house for cPanel and worked at cPanel and WebPros for 10 years, and then started the Secure Hosting Alliance.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:05:52] <strong>Nathan Wrigley:</strong> Okay. So you&#8217;ve got all all the history. That&#8217;s pretty good. You know, if we&#8217;re going to talk about hosting.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:05:57] <strong>David Snead:</strong> All the hosting history in one person. That&#8217;s kind of a very scary idea, no?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:06:02] <strong>Nathan Wrigley:</strong> But that&#8217;s excellent. So do you still offer counsel? Is that still, so you haven&#8217;t sort of sidestepped and do half of the week on a sort of more technical basis? It&#8217;s still the legal side that you&#8217;re involved in.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:06:13] <strong>David Snead:</strong> I do. Right now I&#8217;m doing mostly M&amp;A work for, it&#8217;s weird. So I don&#8217;t know if anybody has ever said this to you before, but web hosting is kind of like the Hotel California. It&#8217;s like, once you start in the web hosting industry, you never leave. And so I have all these clients from 15 years ago who are now running like little baby hosts, and they&#8217;re talking to bigger hosts and they want to get acquired. So I&#8217;m doing some of that now. I am not writing any of the policies that nobody ever reads because that was just, I did that for too long.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:06:51] <strong>Nathan Wrigley:</strong> There were too many moments parties.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:06:53] <strong>David Snead:</strong> Yes, exactly. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:06:55] <strong>Nathan Wrigley:</strong> Okay, so I&#8217;m going to read into the record the title and the blurb that went with the presentation that you are doing or done.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:07:02] <strong>David Snead:</strong> I did it yesterday.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:07:03] <strong>Nathan Wrigley:</strong> Okay, we&#8217;ll get into that in a moment. So the title is coordinating the fight, cross industry collaboration, and the blurb goes as follows. WordPress hosting threats cross company lines. When one provider falls victim, the entire ecosystem suffers. This session explores how the Internet Infrastructure Forum, or IFF, enables hosting providers, registrars and registries to coordinate abuse response through real time intelligence sharing. Learn how operational collaboration helps responsible operators detect and stop attacks faster than adversaries can adapt. And why working together produces results no single provider could achieve alone.</p>\n\n\n\n<p class=\"wp-block-paragraph\">When I read that, immediately was, yeah, that&#8217;s a really sensible idea. Why are we separately, as hosting companies, I say we, I mean the hosting companies. Why are they all trying to do the same work over and over again, separately? When presumably this aspect of the work, the security bit is something they all have in common.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:08:05] <strong>David Snead:</strong> Right? So that&#8217;s the fundamental question, right? So the IIF is a voluntary organisation that is made up of everyone in the infrastructure stack. So from registrars, registries, DNS providers, hosting providers, cloud providers, everyone in the stack. So it is facilitated by the Internet and Jurisdiction Foundation. They&#8217;re based in Paris, and they&#8217;re the actually the secretariat for it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And what it&#8217;s designed to do is create a common way for everyone who&#8217;s in the infrastructure stack to share information about abuse and abuse issues. And it&#8217;s one of the fundamental problems that you referred to is everybody is operating in a silo, right? And that&#8217;s mostly because that&#8217;s the way the internet is architected, right?</p>\n\n\n\n<p class=\"wp-block-paragraph\">So the internet is architected, so it&#8217;s distributed, right? Registrars and registries basically do their own thing with domain names. They might have a small hosting component or maybe a cloud component, but by and large, all they do is domain names.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Hosting providers probably resell domain names, but they&#8217;re not part of that industry. And so how do they all coordinate? And that&#8217;s what the IIF is trying to facilitate, is more information sharing among the participants.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:09:39] <strong>Nathan Wrigley:</strong> Well I imagine some of the hosting companies are probably fairly good. You know, they&#8217;ve got a giant customer base. Let&#8217;s imagine hosting company X over there, they&#8217;ve got millions of customers. They&#8217;ve got a huge budget that they can put over to, let&#8217;s say, security things. Well that&#8217;s all well and good, brilliant. But then there are other companies who are much scrappier. You know, they maybe have only a few thousand customers. And so their budget for the exact same work is going to be reduced.</p>\n\n\n\n<p class=\"wp-block-paragraph\">How will this work? Is it going to be like a subscription service basically? Will you have a membership, which is in some way equal to the number of clients that you&#8217;ve got? Will there be some expectation that, okay, we&#8217;ll look at your revenue, your membership will be equivalent to a percentage of your revenue? How will that all work?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:10:20] <strong>David Snead:</strong> We don&#8217;t know. This is a very early stage project. Right now we are in a prototype phase where we have just figured out what information folks should submit to the secretariat.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So the way it works is, you submit the information that you collect for a particular abuse issue to the secretariat, who then enriches it with all the other information that&#8217;s been submitted and sends it to the right person.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So a great example is, let&#8217;s say a registrar reported a phishing domain. They turn off the phishing domain and they have maybe a timestamp, an IP address where it was submitted from. They submit that to the secretariat, who then finds the hosting company who is providing the services for the hosting and says, this came in about this particular site. Can you take action on that? So that&#8217;s the way it works.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Right now it&#8217;s very early stage. It&#8217;s in the first phase of a test, and we&#8217;re going to look at whether the way we&#8217;ve architected it, or the way the group has architected it, actually makes sense.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:11:39] <strong>Nathan Wrigley:</strong> Is this going to be then a sort of slow on ramp whereby you bring a few companies in at the beginning, hopefully. And then one or two more and iron out the wrinkles, and then some more and some more? Because I imagine, if you just threw the switch, everybody&#8217;s in, a lot could go wrong at that point. And I&#8217;m guessing there&#8217;s going to be more of a slow on ramp.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:12:00] <strong>David Snead:</strong> So you&#8217;ve pointed out my particular frustration with the IIF, and the reason that the secretariat is moving slowly, right? So fortunately, or unfortunately, based on my cultural background, I&#8217;m just sitting here going, this needs to move faster. We need to have everybody involved, we need to have all the hosts involved, we need to have all the registrars and registries. And other folks who are a little bit more skilled in this type of work say, no, we need to figure out what we&#8217;re doing and that requires a small number of people.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The phase that we&#8217;re in right now is looking for more folks who are interested in sitting at the table and being part of the discussion. Particularly in the hosting industry and in the web design and marketing industry. Those are folks who don&#8217;t generally participate in these kind of industry led collaboration exercises. And that&#8217;s the reason that I&#8217;m at WordCamp, is to talk to web designers, marketing agencies about why they should participate in something like this.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:13:13] <strong>Nathan Wrigley:</strong> So this really isn&#8217;t bound in any way to WordPress, is it? It just so happens that WordPress has a significant chunk of the internet, so this is a good place to start. But if you happen to be a, I don&#8217;t know, Drupal user, or you&#8217;re just into writing PHP code or whatever it may be, this is still applicable. There&#8217;s no real WordPress layer to this. This is just a good place for you to come because, well, there&#8217;s probably, what, 30 hosts, 100 yards away from us out there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:13:37] <strong>David Snead:</strong> I know. And I haven&#8217;t seen all of them yet.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:13:39] <strong>Nathan Wrigley:</strong> Yeah, there&#8217;s work to do. But agnostic to any platform, basically.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:13:42] <strong>David Snead:</strong> It is completely platform agnostic, yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:13:43] <strong>Nathan Wrigley:</strong> Okay. Okay, that&#8217;s interesting. But WordPress is a, is certainly a good place to start.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Now, I&#8217;m imagining, if I was a hosting company and I was the chief executive, I definitely have some questions for you in terms of, okay, we&#8217;re going to share our valuable intel with you, what are you going to do with that? How can we trust you? How do we know that the sharing is going to be done effectively and what have you?</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I guess really what I&#8217;m getting to is, what is the assurances or checks and balances that you, in the end, will hope to offer the host? That you can assure them that, look, if you hand us this body of work, you don&#8217;t need to think about it again. You can trust us to do it honourably, effectively, collaboratively. You get where going.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:14:26] <strong>David Snead:</strong> Yeah, yeah. And I suspect that you wanted to be a lawyer at some time, because that&#8217;s one of the issues that we&#8217;re facing. Information that can be shared freely, as an example, in the United States, might not be capable of being shared so freely in the European Union, or in Brazil, or in India or someplace like that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So one of the things that&#8217;s being done, not by me, but by another group, another working group that&#8217;s part of this, is analysing the legal issues around information sharing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The information that&#8217;s being shared, to answer the proprietary and confidentiality question, is not proprietary or confidential information. So it&#8217;s things like timestamps, domain names, IP addresses for the initial abuse submission. Things like that that really don&#8217;t indicate some sort of company confidential information. And it&#8217;s further abstracted into xarf, which is a language that&#8217;s used for abuse reporting, that we all can share. And so I think that the only thing that would be of concern is whether that information is personal information that&#8217;s subject to jurisdictional restrictions around the world.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:15:48] <strong>Nathan Wrigley:</strong> Would the idea be that this organisation would do the remedial work? So is there any notion that, let&#8217;s say for example, some sort of security problem was discovered by hosting company A over there, and they share that intel with you. Maybe the question is kind of asking, will you then appoint people to figure out what the patch is for that? Or is your idea just to, oh, red flag, we&#8217;ve got this problem, now you all know about it. Is it just information sharing as opposed to fixes?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:16:17] <strong>David Snead:</strong> Yeah, it&#8217;s the latter. So the thing that we&#8217;re solving for right now, so there&#8217;s just one issue that, one abuse issue, that we&#8217;re testing out and it&#8217;s issues related to fake shops. And so the fake shop issue is the test abuse issue for the project, and where folks are sharing information. It&#8217;s a particular problem right now with credentials harvesting. And so that&#8217;s what we&#8217;re trying to look at.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:16:43] <strong>Nathan Wrigley:</strong> And how has the conversations that you&#8217;ve had thus far, how have they gone? Has this been warmly received or are you facing a little bit of pushback?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:16:50] <strong>David Snead:</strong> So, look, I&#8217;ll be very direct with you. If something isn&#8217;t just an immediate threat to them, it&#8217;s very difficult to conceptualise why you should participate. And I am pretty used to answering that question simply based on the political work that I do with the i2Coalition. But once you talk about, so let&#8217;s use fake shops as an example. Fake shops, and you&#8217;re providing services to fake shops, actually has an impact on your bottom line.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So if you are providing, let&#8217;s say, payment processing to an entity that is running a fake shop, it very easily can make your credit card processing charges higher. It ends up eating bandwidth. It will tax your abuse resources.</p>\n\n\n\n<p class=\"wp-block-paragraph\">One of the things that you referred to initially is, you know, larger hosts have a lot of money. I wouldn&#8217;t say they have a lot of money, but they have more bandwidth to handle a vast fire hose of abuse issues. Most smaller hosting companies might only get five or six abuse issues in a month. But if you have a fake shop, that&#8217;s going to generate a huge amount of abuse, and it&#8217;s taking away resources that you can use to actually grow your business. So that argument actually is relatively persuasive in getting folks to pay attention.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I find that the business argument around abuse is a much more compelling discussion than kind of moral persuasion. I don&#8217;t think moral persuasion works in the context of a community that is trying very hard just to keep their heads above water.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:18:42] <strong>Nathan Wrigley:</strong> It feels to me from what you&#8217;ve just said, and I could be reading too much between the lines, but it feels to me as if a good target audience would be smaller hosts to begin with, simply because they&#8217;re probably going to be more receptive because they have less bandwidth themselves. And so would welcome anything that can make the burden of sharing this information easier. So 10 of the small hosts combined is, well, it&#8217;s much bigger than each of them individually would be, whereas I suppose you&#8217;ll have to get a critical mass of them on board until maybe some of the bigger hosts start to look at you with favourable eyes, let&#8217;s say that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:19:15] <strong>David Snead:</strong> Well, so we have some pretty large hosting companies who are participating. So as an example, both GoDaddy and Newfold are participating. But we also have smaller hosts. But I agree with you, the information that&#8217;s being provided, particularly since it is actionable, realistic information that can be adapted for bespoke systems, is invaluable, right?</p>\n\n\n\n<p class=\"wp-block-paragraph\">So if you only get five or six abuse complaints and you get an abuse complaint, and you can go to the secretariat and say, we got a complaint about this domain, and the secretariat says, here&#8217;s what the registrar did. Here&#8217;s what Cloudflare did. Here&#8217;s the information they provided us. And you can use that to make a decision on how to address that problem. It saved you hours and hours and hours of research time.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:09] <strong>Nathan Wrigley:</strong> Technically speaking, what would the conduit of information both toward you and away from you look like? So if I&#8217;m hosting company X, how are you imagining that I will supply you with that information? But also, if I&#8217;m just looking for information from you on a daily, weekly basis, whatever it may be, how do I receive that? Is this like a, I don&#8217;t know, a website or an API or?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:33] <strong>David Snead:</strong> It&#8217;s an API. So it&#8217;s a file. It&#8217;s just a general file download.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:37] <strong>Nathan Wrigley:</strong> Right, okay. So it&#8217;s readily available 24/7?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:40] <strong>David Snead:</strong> Right. That&#8217;s the goal. Right now it&#8217;s not, but the goal is to kind of figure out a way to make something like that possible.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:47] <strong>Nathan Wrigley:</strong> Yeah, okay. I also suppose that the hosting companies, whilst this is good for their business if they can minimise costs and hand a lot of this work over to you, there&#8217;s a part of them which would also probably like to put some sort of badge on their website to say, this is what we&#8217;re doing. We&#8217;re part of this alliance, for want of a better word. Is that something that you are looking to develop as well, you know, some sort of credentialing system to demonstrate that you&#8217;re in this?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:21:12] <strong>David Snead:</strong> So that&#8217;s not something that the IIF is working on. It&#8217;s something that the Secure Hosting Alliance does. The Secure Hosting Alliance has a trust seal that we give to hosts who fulfil our Trust Seal Certification provisions. But that&#8217;s not something that the IIF does.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Talking about like why, other than business reasons, folks should participate in this, one of the things that is going on that I would suggest that most hosts know about, is there&#8217;s a little bit of a moral panic going on in the world about what contents you have. And regulation is actually a very real thing for the hosting industry, who has not ever been regulated. This is the time where you can say, hey, this is what we&#8217;re doing, right? We&#8217;re dealing with issues. This way a trust seal is the same thing, right? It&#8217;s something that you can say, we are actually taking steps to make the internet a better place.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:22:18] <strong>Nathan Wrigley:</strong> I think if you are a general agency owner or, I don&#8217;t know, just a freelancer, hosting is one of those things that you, once you&#8217;ve done it once, you&#8217;re in it for the long haul until something goes wrong. But you&#8217;re also browsing around for any tiny indication of why is this host slightly different? You know, what is it that they&#8217;re doing that, I don&#8217;t know, is faster? What is it that they&#8217;re doing that&#8217;s more secure? So it feels to me if you had a credentialing system and I began to hear about it and see it pop up again and again, it would be one of the metrics which I would weigh up when looking at hosting.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:22:51] <strong>David Snead:</strong> I would think so. One of the things that a trust seal does is it indicates that there&#8217;s been some vetting of the host. That someone has determined the things that are important to the hosting industry and are important to the web design industry. The agency industry are also important to the host.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Great example of that is one of the provisions of the Secure Hosting Alliances&#8217; Trust Seal Certification is that a contract is presented to the customer before they sign up, which is super customer friendly.</p>\n\n\n\n<p class=\"wp-block-paragraph\">One of the things as a lawyer that you hear about all the time when people are dissatisfied with their services is, yeah, well, I never saw that contract. Or it was just a hyperlink in an email that I got. That&#8217;s one of the differentiators for a Trust Seal certified host is that the contract is actually presented to them, to the customer beforehand.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:23:57] <strong>Nathan Wrigley:</strong> So in terms of the WordPress crowd, is this a thing that you are pitching only to hosts? Like when you step out of here, are you trying to have conversations only with hosts? Or is there some bit of the WordPress community, the freelance, the agency owners? Are you trying to communicate with them just to scope out what they need?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:24:15] <strong>David Snead:</strong> So for both the Secure Hosting Alliance and for the IIF, it is that. I really enjoy talking to agencies and developers about whether this is important to them, or why it might be important to them.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:24:31] <strong>Nathan Wrigley:</strong> In terms of how long this project&#8217;s been going, I&#8217;ve only heard of it because of your participation here, but I don&#8217;t know if you&#8217;ve been banging this gong for a decade or, I mean you&#8217;ve been in the industry for long enough to have been banging it for decades. Is this a new initiative or is this something which has a long and storied history?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:24:49] <strong>David Snead:</strong> So the Secure Hosting Alliance has only been active for a year, a little bit over a year. I&#8217;ve been talking about abuse for a long time, but the Secure Hosting Alliance has only been around for a year.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:25:01] <strong>Nathan Wrigley:</strong> And have you, in that year, got any intuitions that you&#8217;ll be here for another year? Is it basically going in the right direction?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:25:09] <strong>David Snead:</strong> It is going in the right direction. So we started out with two or three charter members. We now have 25 hosting members. We have three security vendors who are members as well. We have, I think, 17 Trust Seal Certified members, and we&#8217;re launching in 2027 a trust seal for security vendors who provide services to hosting companies.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:25:40] <strong>Nathan Wrigley:</strong> I know that several owners of hosting companies listen to this podcast. They may very well be the people that you&#8217;ve spoken to already, but if they are not, and they are people who would like to investigate this further, I suppose the thing that&#8217;s going to be in their head is, okay, Nathan and David, you&#8217;ve explained what I&#8217;ll get out of it, what do I need to put into it? So is this an annual financial commitment? How does it all work from that point of view?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:02] <strong>David Snead:</strong> Yeah, so you become a member of the i2Coalition. And so the Secure Hosting Alliance is a working group of the i2Coalition. So you would be a general member and you would participate in the Secure Hosting Alliances&#8217; working groups. You also have the ability to participate in the i2Coalition as a whole, which is a much larger trade association that represents almost everyone in the internet infrastructure vertical. Mostly doing policy work, primarily in the US and the EU. Although there&#8217;s, we&#8217;re doing some work in India right now as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:40] <strong>Nathan Wrigley:</strong> And does membership allow you to steer the future of the project? I know that lots of chefs in the kitchen results in terrible food, but that, I fear, is something that could happen. You&#8217;ve got 87 members, 260 members. And then the 260 members all start to bicker and, you know, we want this, no. You see how it goes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:59] <strong>David Snead:</strong> I do.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:59] <strong>Nathan Wrigley:</strong> What&#8217;s the position there? You know, is there sort of gated levels of membership? How are you organising all of that?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:27:04] <strong>David Snead:</strong> There are not. The membership is based on self-reported revenue. The membership is not horrifically expensive from my perspective. And I think that that, most of our members would say that it is, it&#8217;s actually relatively affordable, particularly for the small to medium sized hosts. And registrars or design agencies, anyone who&#8217;s participating.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The question about, who&#8217;s running the show, comes up quite a bit. We haven&#8217;t really faced that issue, particularly in the Secure Hosting Alliance. Folks seem to get along. But the organisation runs on the idea of rough consensus. And so decisions end up not being controlled by one member or not. Some of the i2Coalition has some very large companies who everybody knows about, who get along with startups, and folks against whom they compete directly. And policies still get made. The organisation still moves forward.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:28:11] <strong>Nathan Wrigley:</strong> Yeah, I guess you&#8217;re in a space where, obviously all of these hosting companies commercially are vying for everybody else&#8217;s business. But in this particular situation, that is not the case. Nobody&#8217;s vying for their websites to be less secure. They all want the same level of security. So at least in that sense, you would hope that consensus could be maintained even if, commercially, the two companies that are in the room, the 10 companies that are in the room might be commercially at loggerheads with each other. At least on this they could agree. That would be the hope, I suppose, anyway.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:28:47] <strong>David Snead:</strong> It seems to be, not only the hope, but the actual way that things work. You ask about how compromise is reached. What comes to mind is I have a much different concept of privacy than, particularly when I was at WebPros, than other folks in the i2Coalition had. And another company just called me up and we worked through our disagreements about how privacy should be handled within the i2Coalition and were able to move forward.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The industry I&#8217;ve found to be hugely collaborative, particularly the hosting industry. Everybody knows what their competitor is doing. But when it comes to addressing an issue like, how are we going to deal with abuse as a community? Folks come together. CEOs of hosting companies while they compete tend to be relatively good friends.</p>\n\n\n\n<p class=\"wp-block-paragraph\">As I said at the very beginning, it really is like the Hotel California, right? You come in as a CEO of a hosting company, you grow it and you sell it to another company. All of a sudden you&#8217;re at the bottom again with a server in your grandma&#8217;s basement, you know, trying to start again.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:30:08] <strong>Nathan Wrigley:</strong> It&#8217;s a really curious effort. I suppose really at the bottom of this entire podcast is your endeavour to be heard and to reach out and get some conversations going. So with that in mind, where do people find the information about this? So maybe there&#8217;s a website that we could mention. But also, is there a specific place where you hang out? Is there a place where you would like to be contacted most?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:30:33] <strong>David Snead:</strong> Sure. So our website is hostingsecurity.net. I&#8217;m not too afraid of getting too much spam. So folks can email me at snead@i2coalition.com And the two is the numeral two. So it&#8217;s snead@i2coalition.com. And I&#8217;m happy to answer questions.</p>\n\n\n\n<p class=\"wp-block-paragraph\">In terms of hanging out, I am at most industry conferences in the hosting industry. In the WordPress industry, I&#8217;ll be at WordCamp US. We also participate very heavily in ICANN. So there is an i2Coalition member at every single ICANN meeting.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:31:12] <strong>Nathan Wrigley:</strong> So if you go to wptavern.com and you search for the episode with David Snead, S-N-E-A-D, you&#8217;ll be able to find those details. I&#8217;ll put everything into the show notes. So anything that I missed? Was there a particular focus that we didn&#8217;t touch?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:31:26] <strong>David Snead:</strong> No, this is actually one of the most thorough podcasts I&#8217;ve been on recently.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:31:31] <strong>Nathan Wrigley:</strong> That&#8217;s love to hear it. Well, David Snead, thank you very much for joining me today.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:31:35] <strong>David Snead:</strong> Glad to be here. Thanks for having me.</p>\n</div></details>\n\n\n\n<p class=\"wp-block-paragraph\">On the podcast today we have David Snead.</p>\n\n\n\n<p class=\"wp-block-paragraph\">David has been involved in the hosting industry since 1999, starting out as legal counsel for one of the earliest shared hosting companies and going on to work with over 50 others. He helped found the i2Coalition, serve as in-house counsel for cPanel and WebPros, and now leads the Secure Hosting Alliance.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’re listening to this podcast, I’m sure that many of you will have worked closely with hosting companies. Perhaps you run an agency or business that depends on the reliability, ethics, and security of hosting providers. David is here to talk about cross-industry collaboration in the hosting world, specifically around improving security, professionalism, and communication between hosts.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The conversation focused on why and how the Internet Infrastructure Forum (IIF) is building a framework for real-time intelligence sharing and abuse reporting, aiming to help the entire ecosystem detect and prevent attacks faster than adversaries can adapt.</p>\n\n\n\n<p class=\"wp-block-paragraph\">David talks about the challenges hosting companies face, especially smaller ones, in keeping up with security, and how this evolving project hopes to ease this by sharing actionable, non-proprietary abuse information across registrars, hosting providers, DNS services, and more. He discusses the growth of both the Secure Hosting Alliance and the IIF, the business case for collaboration, and the nuances of legal and technical information sharing across borders.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’re in hosting, run a web agency, or just want to know how the backbone of the web is working to stay more secure and connected, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://i2coalition.com\">i2coalition website</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://hostingsecurity.net\">Secure Hosting Alliance website</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 08 Jul 2026 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:118:\"HeroPress: “Listen… the birds are already singing” – “Послухай… пташки заспівали”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=8704\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:146:\"https://heropress.com/essays/listen-the-birds-are-already-singing/#utm_source=rss&utm_medium=rss&utm_campaign=listen-the-birds-are-already-singing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:37329:\"<img alt=\"Pull Quote: WordCamp Europe has become one of the few places where [Ukranians] can reassemble in person. WordCamp Europe став одним із небагатьох місць, де [українці] можуть знову зібратися разом наживо.\" class=\"attachment-large size-large wp-post-image\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/3026/07/volodymyr_banner.webp\" width=\"1024\" /><p class=\"wp-block-paragraph\"><a href=\"https://heropress.com/feed/#ukranian\">Це есе також доступно українською</a>.</p>\n\n\n\n<figure class=\"wp-block-audio\"><audio controls=\"controls\" src=\"https://heropress.com/wp-content/uploads/3026/07/volodomyr_english_recording.mp3\"></audio><figcaption class=\"wp-element-caption\">Listen to Volodymyr read his own story aloud.</figcaption></figure>\n\n\n\n<p class=\"wp-block-paragraph\">&#8220;Listen&#8230; the birds are already singing,&#8221; said Danylo — a Ukrainian I&#8217;d met at a previous WordCamp — as we were wrapping up the last hour of the WCEU afterparty in Krakow. &#8220;It&#8217;s time for us to go.&#8221; He started singing &#8220;Hei! Hei! Hei, sokoly! Omynaite hory, lisy, doly.&#8221; I started singing with him. The Polish guys next to us continued singing in Polish &#8220;Dzwoń, dzwoń, dzwoń dzwoneczku, Mój stepowy skowroneczku.&#8221; Some people behind us joined the choir. That was &#8220;Hey Sokoly&#8221; — a Ukrainian-Polish folk song — carrying us out of Bastion III, a 19th-century Austrian fortress on the edge of Krakow&#8217;s Old Town, as the night turned to morning.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But to explain how I ended up there, I need to go back to where it all began.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https://heropress.com/wp-content/uploads/3026/07/krakow_castle2.webp\"><img alt=\"Krakow Castle in morning light\" class=\"wp-image-8713\" height=\"1606\" src=\"https://heropress.com/wp-content/uploads/3026/07/krakow_castle2.webp\" width=\"1402\" /></a><figcaption class=\"wp-element-caption\">The view of the Krakow castle, taken on the morning after the after-party, around the time when birds were singing. Photo by Volodymyr Melnychenko.</figcaption></figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-mykolaiv\">Mykolaiv</h2>\n\n\n\n<p class=\"wp-block-paragraph\">It all started in Mykolaiv, the city of shipbuilders and brides, where I spent my childhood. I graduated from two universities I had been attending simultaneously and started looking for a job during a gap year. I planned to find work to earn some money for further education while preparing for the entrance exams to one of the Finnish universities. Mykolaiv didn&#8217;t provide good opportunities for graduates unless you had very good connections, but I managed to find a job at an &#8220;IT&#8221; company. In 2011, the term &#8220;IT&#8221; didn&#8217;t mean much to me, but they required English, which was my major, so I thought — why not. The work wasn&#8217;t particularly difficult: I had to pretend to be &#8220;Bob&#8221; from the United States, helping customers who had purchased physical products by tracking their orders and walking them through setup instructions. I was fired after a month and a half. Maybe I underperformed, or maybe somebody just didn&#8217;t like me — either way, it&#8217;s water under the bridge.<br /><br />The first job I&#8217;d gotten entirely on my own, the first paycheck that proved I could be independent, and the first time being fired — all of it hit me at once. The last part was devastating, made worse by comments like &#8220;it was too good to be true,&#8221; &#8220;we told you they&#8217;d trick you,&#8221; and &#8220;look at so-and-so, doing such-and-such and earning properly.&#8221; It was hard to sit with feeling like a failure. But somewhere in that difficulty, I got tougher — and more determined to prove everyone wrong.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-templatemonster\">TemplateMonster</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The first job was a failure, but it gave me one clear answer: I needed to stay in IT. The next job was TemplateMonster.com — well known in certain circles. It was the complete opposite of what I&#8217;d experienced before. In 2012 they were selling templates for the most popular CMS platforms of the time: WordPress, Joomla, Drupal, and various e-commerce solutions. The onboarding alone took two months, which tells you something about how seriously they took their people — staff rarely left, and when they did, it was for personal reasons, not because they were pushed out.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><br />My job was to help customers with their templates: installation, editing, customization. Difficult, but genuinely interesting — I liked it. This was the first time I encountered WordPress. I worked six nights a week, and Sundays were the strangest — your day off, but your body had adjusted to night shifts and refused to cooperate. None of that bothered me much. Being able to build sites and make things look exactly right was addictive. I overworked, learned constantly, pestered developers with questions, all just to quench my thirst for knowledge. It ended quickly: I got accepted into three master&#8217;s programs in Finland, chose one, and left for Central Finland.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-helsinki\">Helsinki</h2>\n\n\n\n<figure class=\"wp-block-image alignright size-large is-resized\"><a href=\"https://heropress.com/wp-content/uploads/3026/07/image3.webp\"><img alt=\"Closeup of a glass of orange juice with croissants next to it, and a projection screen in the background.\" class=\"wp-image-8715\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/3026/07/image3-1024x1024.webp\" style=\"width: 400px;\" width=\"1024\" /></a><figcaption class=\"wp-element-caption\">Morning “Weekly” at booncon PIXELS, my first workplace in Helsinki. Photo by Volodymyr Melnychenko.</figcaption></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Studying in Finland was genuinely different from anything I&#8217;d known in Ukraine — in the best possible way. Once the mandatory courses were done, I started looking for work. It was harder than I expected: a year of passive searching, then six months of applying every day. Eventually, I landed at a Helsinki-based agency building WordPress websites — which is still what I do today. A friendly team, around ten people — I&#8217;m still close with many of them. We built sites of varying complexity during the day and spent evenings playing board games, swapping stories, and throwing the occasional party.</p>\n\n\n\n<p class=\"wp-block-paragraph\">That&#8217;s also where I attended my first WordPress event: WordCamp Helsinki 2017, a two-day conference. It didn&#8217;t blow me away, but it opened something. When you work in a small agency, you live inside your own bubble — and then suddenly a whole other world appears. You see the other side of WordPress: the community, the people pushing it forward, the people wrestling with the same problems you are and finding creative ways through.<br /><br />That first local WordCamp was enough to make us want to go further. In 2019 the team went to Berlin for WCEU — my first trip abroad outside of the Finland-Ukraine route I knew well. We spent a few days exploring the city and attending the event. WordCamp Europe is a different scale entirely: thousands of attendees, hundreds of volunteers making it happen. Standing in that crowd, I knew I wanted to be part of it — not just as a visitor. And then corona happened.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-porto\">Porto</h2>\n\n\n\n<figure class=\"wp-block-image alignright size-large is-resized\"><a href=\"https://heropress.com/wp-content/uploads/3026/07/image1.webp\"><img alt=\"Volodymyr leaning on a handrail with Krakow in the background.\" class=\"wp-image-8718\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/3026/07/image1-768x1024.webp\" style=\"width: 400px;\" width=\"768\" /></a><figcaption class=\"wp-element-caption\">Me, standing on the roof the Super Bock Arena, where the WCEU 2022 took place. Photo by Oleksandr Misyats.</figcaption></figure>\n\n\n\n<p class=\"wp-block-paragraph\">WCEU 2020 and 2021 were online, and I felt they were missing the whole point — thousands of people in one place, feeding off each other&#8217;s energy. So when Porto was announced for 2022, I started packing. This time, I joined as a volunteer, to see WordCamp from the inside. It was the right call. It was also a difficult time for Ukrainians — the full-scale invasion was by then well into its second year, and everyone was finding their own way to cope. For me, this event became a source of strength. I connected with the Ukrainian community, had real conversations with speakers, and came away feeling like I&#8217;d experienced what WCEU is actually for.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><br />That trip also clarified something I&#8217;d been circling around for a while. I&#8217;ve always loved traveling, but there was a barrier that had nothing to do with visas or money — though those were factors too. It was a justification problem. Coming from a culture where time should be spent purposefully, traveling for its own sake felt hard to defend. A work conference, though? Completely justifiable. Nobody asks how much fun you had. I&#8217;ve been to Germany, Portugal, Italy, Switzerland, and Poland this way. Spain is next.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Attending WordCamps is one thing. Building a similar event is another.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wp-suomi\">WP Suomi</h2>\n\n\n\n<p class=\"wp-block-paragraph\">In 2025 I became the lead organizer of <a href=\"https://wpsuomi.fi/\">WP Suomi</a> — the first independent Finnish WordPress event, held in Helsinki. The months before October 10th were intensive in ways I hadn&#8217;t anticipated: budgets, logistics, gifts, merch, catering, venue coordination, a hundred small details that needed to be right simultaneously. I remember waking up at midnight worrying that I hadn&#8217;t ordered something in time and it wouldn&#8217;t arrive before the event. Most of the work that goes into an event like this is invisible to the people attending. They see the schedule, the food, the afterparty. They don&#8217;t see the half a year of pieces being polished before the puzzle comes together.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://heropress.com/wp-content/uploads/3026/07/image5.webp\"><img alt=\"Banner for WP Suomi\" class=\"wp-image-8721\" height=\"576\" src=\"https://heropress.com/wp-content/uploads/3026/07/image5-1024x576.webp\" width=\"1024\" /></a><figcaption class=\"wp-element-caption\">WP Suomi hall screen graphics. Graphics by Sergei Shchegrinets.</figcaption></figure>\n\n\n\n<p class=\"wp-block-paragraph\">On the day of the event, there was nothing left to worry about. Whatever needed doing had been done — if something had been missed in the preparation, it would show up now and there would be little we could do about it. So why worry? The time for that was the preparation, not the day itself. The team — experienced, reliable, no hand-holding required — knew exactly what they were there for.<br /><br />Around 300 people attended WP Suomi. Forty filled out our feedback form afterward, giving an overall score of 4.47 out of 5. But the number mattered less than what people wrote: networking, atmosphere, meeting old friends and new ones, a community that welcomes everyone openly. Reading that, I recognized the same feeling I&#8217;d had at WordCamp Helsinki 2017 — something new, interesting, and full of possibility.<br /><br />Organizing WP Suomi gave me a clearer understanding of what goes into making these events happen. Having been a volunteer at WCEU and then a lead organizer at WP Suomi, I arrived in Krakow with a slightly different perspective — a better sense of what the people around me were going through. This year I&#8217;m back on the WP Suomi organizing team as speakers coordinator — a different role, another angle.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://heropress.com/wp-content/uploads/3026/07/image2.webp\"><img alt=\"Milania Cap near a presentation podium.\" class=\"wp-image-8723\" height=\"683\" src=\"https://heropress.com/wp-content/uploads/3026/07/image2-1024x683.webp\" width=\"1024\" /></a><figcaption class=\"wp-element-caption\">Milana Cap is ready to show some magic with HTML API. She is one of two people who convinced Vladimir to become the lead organizer of WP Suomi ‘25. Photo by Asanka Hettiarachchi.</figcaption></figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-krakow\">Krakow</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamps have changed for me over the years — less about the sessions on stage, more about what happens between them. As an organizer, you miss most of the talks anyway, pulled in ten directions at once. But real life happens in the corridors, and at the parties in the evenings. </p>\n\n\n\n<p class=\"wp-block-paragraph\">This matters especially for the Ukrainian community. The war has scattered us across Europe — different countries, different companies, different lives. WordCamp Europe has become one of the few places where we reassemble in person: to share what the year brought, to meet people we only knew online, to see the community still growing despite everything. Many couldn&#8217;t make it to Krakow, some would not be able to visit these events anymore. For those of us who could, the room carried extra weight. </p>\n\n\n\n<p class=\"wp-block-paragraph\">That&#8217;s what Danylo and I were singing about at dawn outside Bastion III, even if neither of us said it out loud. I hope to do that someday in the afterparties in Helsinki and Kyiv — whenever that becomes possible again.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://heropress.com/wp-content/uploads/3026/07/image4.webp\"><img alt=\"Ukrainian team at WordCamp Torino 2024.\" class=\"wp-image-8725\" height=\"684\" src=\"https://heropress.com/wp-content/uploads/3026/07/image4-1024x684.webp\" width=\"1024\" /></a><figcaption class=\"wp-element-caption\">Ukrainian team at WordCamp Torino 2024. More and more Ukrainians visit this event every year despite the war. Photo by Maksym Kaharlytskyi. </figcaption></figure>\n\n\n\n<div class=\"wp-block-group has-background is-vertical is-nowrap is-layout-flex wp-container-core-group-is-layout-ff19e26b wp-block-group-is-layout-flex\" id=\"desktop\">\n<h2 class=\"kt-adv-heading8704_097876-99 wp-block-kadence-advancedheading\" id=\"work-environment\">Volodymyr&#8217;s Work Environment</h2>\n\n\n\n<p class=\"wp-block-paragraph\">We asked Volodymyr for a view into his development life and this is what he sent!</p>\n\n\n	<div class=\"hotspots-image-container\">\n		<img alt=\"Volodymyr’s Desk\" class=\"hotspots-image skip-lazy\" height=\"1890\" src=\"https://heropress.com/wp-content/uploads/2026/07/img_5363.webp\" width=\"2560\" />\n	</div>\n\n\n\n\n<p class=\"has--font-size wp-block-paragraph\">HeroPress would like to thank <a href=\"https://wpdrawattention.com/\">Draw Attention</a> for their donation of the plugin to make this interactive image!</p>\n</div>\n\n\n\n<h1 class=\"wp-block-heading\" id=\"ukranian\">“Послухай… пташки заспівали”</h1>\n\n\n\n<figure class=\"wp-block-audio\"><audio controls=\"controls\" src=\"https://heropress.com/wp-content/uploads/3026/07/volodomyr_ukrainian_recording.mp3\"></audio><figcaption class=\"wp-element-caption\">Слухайте власну історію Володимира вголос.</figcaption></figure>\n\n\n\n<p class=\"wp-block-paragraph\">«Послухай… пташки заспівали», — сказав Данило, українець, з яким я познайомився на попередньому WordCamp — ми якраз протеревенили останню годину afterparty WCEU у Кракові. «Значить нам теж час іти». І тут він від душі почав співати «Гей, гей, гей, соколи, оминайте гори, ліси, доли». Я підхопив пісню разом із ним. Поляки, що ішли поруч продовжили польською: «Dzwoń, dzwoń, dzwoń dzwoneczku, mój stepowy skowroneczku». Хтось позаду теж приєднався до хору. Це була «Гей, соколи» — українсько-польська народна пісня — під акомпанемент якої нас виносив натовп із Бастіону III, австрійської фортеці XIX століття на околиці краківського Старого міста, саме тоді, коли вже ніч переходила у ранок.<br /><br />Щоб пояснити, як я там опинився, доведеться повернутися до самого початку цієї історії.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://heropress.com/wp-content/uploads/2026/07/krakow_castle2.webp\"><img alt=\"\" class=\"wp-image-8748\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/2026/07/krakow_castle2-894x1024.webp\" width=\"894\" /></a><figcaption class=\"wp-element-caption\">Вид на Краківський замок, фото зроблене зранку після вечірки, приблизно в той час коли “вже заспівали пташки”. Фото зроблене Володимиром Мельниченко. </figcaption></figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-миколаїв\">Миколаїв</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Ця історія бере свій початок у Миколаєві – місті суднобудівельників і наречених, де я виріс. Здобув освіту у двох університетах, де навчався одночасно і почав шукати роботу під час року перерви перед продовженням навчання. Я планував знайти собі роботу, щоб заробити грошенят для продовження навчання, готуючись до вступу в один із фінських університетів. У Миколаєві було важко знайти якісь серйозні перспективи для випускника, хіба що в тебе є зв&#8217;язки, але я примудрився знайти роботу в &#8220;IT&#8221; компанії. У 2011 термін &#8220;АйТі” нічого мені не говорив, але там потрібна була англійська, яка була моїм основним предметом в університеті, тому я подумав, а чом би й ні? Робота не була важкою: треба було казати, що я “Боб” із США і допомагати клієнтам, які купували фізичні продукти, відслідковувати їх замовлення і давати інструкції, як використовувати оте, що вони поназамовляли. Мене звільнили через півтора місяці. Можливо, я щось не так робив, можливо, просто не вдався обличчям — у будь-якому випадку, що було, то загуло.  </p>\n\n\n\n<p class=\"wp-block-paragraph\"><br />На цю роботу я влаштувався самостійно, без будь-якої підтримки, перша заробітна плата була символом моєї незалежності, і перше звільнення — це був бурхливий вир емоцій. Але остання частина просто вибила землю з-під моїх ніг, гірше тільки зробили коментарі на кшталт: “це було занадто добре, щоб бути правдою”, “та ми тобі казали, що там надурять”, і “подивись на нього — він робить те та й се, ще й добре заробляє”. Дуже важко було бути вдома і відчувати себе невдахою. Але це відчуття зробило набагато більше ніж будь-яка ефемерна підтримка — воно мене загартувало і пробудило палке бажання довести, що всі помилялися щодо мене.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-templatemonster-0\">TemplateMonster</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Хоч перша робота виявилась провалом, вона дала мені чітке розуміння, що треба продовжувати шукати роботу в IT. Наступну роботу я знайшов у TemplateMonster.com — добре відому у певних колах. Вона була повною протилежністю моєму минулому досвіду. У 2012 році вони продавали шаблони для більшості популярних CMS-ок того часу: WordPress, Joomla, Drupal, і для різних рішень електронної комерції. Лише ознайомлення з роботою і навчання зайняло два місяці, що промовисто свідчить про те, наскільки серйозно компанія сприймала своїх людей — майже ніколи не звільняли, а якщо люди й ішли з роботи, то з власних причин.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><br />Моїм завданням було допомагати клієнтам із шаблонами, які вони придбали: встановлення, налаштування, редагування. Було доволі складно, але дуже цікаво — мені подобалося. Тоді я вперше познайомився із WordPress. Я працював шість ночей на тиждень, а неділі були найважчими, бо тіло звикало до активності вночі і відмовлялося спати. Хоча такий графік мене не дуже турбував. Можливість створювати будь-які сайти і кастомізувати їх саме під себе — оце було до дідька захопливо. Я багато перепрацьовував, вивчав щось нове, заколупував розробників питаннями, щоб хоч трохи вгамувати жагу до знань. Але усе закінчилося несподівано швидко: я отримав три листи про зарахування на магістратуру у Фінляндії, вибрав один університет і поїхав до Центральної Фінляндії.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-гельсінкі\">Гельсінкі</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Система навчання у Фінляндії побудована зовсім по-іншому — і, на мою думку, на краще. Коли я закінчив основні курси моєї спеціальності, я почав шукати роботу. Завдання було не з легких: рік я шукав пасивно, де-не-де подаючи заявки на роботу, і ще пів року я зайнявся цим активно, відгукуючись на декілька вакансій щодня. Зрештою, доля занесла мене у Гельсінське агентство, що розробляло сайти на WordPress — цим я займаюся і сьогодні. У нас була дуже дружня команда, приблизно з десяти людей, з більшістю з них я досі дружу. Ми будували сайти дуже різного рівня складності, удень, вечорами грали в настолки, ділились історіями зі свого життя і влаштовували грандіозні вечірки.</p>\n\n\n\n<figure class=\"wp-block-image alignright size-large is-resized\"><a href=\"https://heropress.com/wp-content/uploads/2026/07/image3.webp\"><img alt=\"\" class=\"wp-image-8751\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/2026/07/image3-1024x1024.webp\" style=\"width: 400px;\" width=\"1024\" /></a><figcaption class=\"wp-element-caption\">Вранішній “Weekly” у booncon PIXELS, моєму першому агентстві у Гельсінкі. Фото зроблене Володимиром Мельниченко. </figcaption></figure>\n\n\n\n<p class=\"wp-block-paragraph\">З цією командою я вперше відвідав подію WordPress: WordCamp Helsinki 2017 — дводенну конференцію. Я не був вражений наповал, але вона відкрила мої очі на дещо. Коли ти працюєш у маленькому агентстві, і живеш у своїй бульбашці, а тут неочікувано відкривається цілий всесвіт. Ти бачиш іншу сторону WordPress — спільноту, людей, які рухають увесь проект вперед, людей, які стикаються з тими самими проблемами, які знаходять творчі способи ці проблеми вирішити. </p>\n\n\n\n<p class=\"wp-block-paragraph\"><br />Того першого місцевого WordCamp’у було достатньо, щоб нам захотілося рухатися далі. У 2019 році наша команда поїхала до Берліна на WordCamp Europe — це була моя перша закордонна поїздка за межі звичного для мене маршруту між Фінляндією та Україною. Ми провели кілька днів, досліджуючи місто й відвідуючи конференцію. Масштаб відчувався зовсім по-іншому: тисячі учасників і сотні волонтерів, які усе організовують. Стоячи серед цього натовпу, я зрозумів, що хочу бути частиною цього, і не просто як відвідувач.</p>\n\n\n\n<p class=\"wp-block-paragraph\">А потім почалася пандемія коронавірусу.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-порто\">Порто</h2>\n\n\n\n<figure class=\"wp-block-image alignright size-large is-resized\"><a href=\"https://heropress.com/wp-content/uploads/2026/07/image1.webp\"><img alt=\"\" class=\"wp-image-8754\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/2026/07/image1-768x1024.webp\" style=\"width: 400px;\" width=\"768\" /></a><figcaption class=\"wp-element-caption\">Я, стою на даху Super Bock Arena, де проводився WCEU 2022. Фото зроблене Олександром Місяц</figcaption></figure>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamp Europe 2020 і 2021 років проходили онлайн, і мені здавалося, що вони втратили найголовніше — тисячі людей, зібраних в одному місці, які заряджають одне одного своєю енергією. Тож коли оголосили, що WCEU 2022 відбудеться в Порту, я почав збирати валізу. Цього разу я приєднався до команди волонтерів, щоб побачити WordCamp зсередини. І це було правильне рішення. Для українців це був непростий час — повномасштабне вторгнення вже тривало, і кожен шукав свій спосіб впоратися з новою реальністю. Для мене цей захід став джерелом сили. Я ближче познайомився з українською спільнотою, жваво дискутував зі спікерами й повернувся з відчуттям, що нарешті зрозумів, нашо той WordCamp.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Та поїздка також допомогла мені усвідомити дещо, над чим я давно розмірковував. Я завжди любив подорожувати, але існував бар&#8217;єр, який не мав стосунку ні до віз, ні до грошей — хоча й вони теж відігравали свою роль. Проблема була в тому, як виправдати саму подорож. Я виріс у культурі, де час потрібно витрачати з користю, тому подорожувати просто заради подорожі здавалося чимось, що важко пояснити. А ось робоча конференція — зовсім інша справа. Це цілком виправдана причина. Ніхто не питає, скільки задоволення ти на ній отримав. Саме так я побував у Німеччині, Португалії, Італії, Швейцарії та Польщі. Наступна — Іспанія.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Відвідувати WordCamp — це одне. Створювати подібний захід — зовсім інше.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wp-suomi-0\">WP Suomi</h2>\n\n\n\n<p class=\"wp-block-paragraph\">У 2025 році я став головним організатором <a href=\"https://wpsuomi.fi/\">WP Suomi</a> — першого незалежного фінського заходу, присвяченого WordPress, що відбувся в Гельсінкі. Місяці, які передували 10 жовтня, виявилися набагато напруженішими, ніж я очікував. Бюджет, логістика, подарунки, мерч, кейтеринг, координація локації — і сотні дрібниць, які мали зійтися в потрібний момент. Пам&#8217;ятаю, як прокидався посеред ночі з думкою, що не встиг замовити щось вчасно і воно не приїде до початку події. Більшість роботи, яка стоїть за такими заходами, залишається непомітною для учасників. Вони бачать програму, їжу, афтепаті. Але не бачать тих пів року, протягом яких окремі деталі поступово складаються в єдину картину.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://heropress.com/wp-content/uploads/2026/07/image5.webp\"><img alt=\"\" class=\"wp-image-8758\" height=\"576\" src=\"https://heropress.com/wp-content/uploads/2026/07/image5-1024x576.webp\" width=\"1024\" /></a><figcaption class=\"wp-element-caption\">Графіка WP Suomi на великому екрані у холі місця проведення. Графіка створена Сергієм Шенгрінцем</figcaption></figure>\n\n\n\n<p class=\"wp-block-paragraph\">WP Suomi відвідали близько 300 людей. Після заходу сорок учасників заповнили форму зворотного зв&#8217;язку, оцінивши його в середньому на 4,47 із 5. Але для мене важливішою була не сама оцінка, а те, що люди писали: нетворкінг, атмосфера, зустрічі зі старими друзями й нові знайомства, спільнота, яка відкрито приймає кожного. Читаючи ці відгуки, я згадав себе і те саме відчуття, яке пережив на WordCamp Helsinki 2017, — це щось нове, захопливе й сповнене можливостей.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><br />Організація WP Suomi допомогла мені значно краще зрозуміти, що стоїть за проведенням таких заходів. Після досвіду волонтера на WCEU, а згодом і головного організатора WP Suomi, я приїхав до Кракова вже з іншим поглядом — набагато краще розуміючи, через що проходять люди, які працюють поруч. Цього року я знову в команді організаторів WP Suomi, але вже в ролі координатора спікерів. Інша відповідальність, інший погляд.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://heropress.com/wp-content/uploads/2026/07/image2.webp\"><img alt=\"\" class=\"wp-image-8760\" height=\"683\" src=\"https://heropress.com/wp-content/uploads/2026/07/image2-1024x683.webp\" width=\"1024\" /></a><figcaption class=\"wp-element-caption\">Milana Cap готова показати магію з HTML API. Вона одна із двох людей, винних у тому, що я став головним організатором WP Suomi ‘25. Фото зроблене Asanka Hettiarachchi.</figcaption></figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-краків\">Краків</h2>\n\n\n\n<p class=\"wp-block-paragraph\">За ці роки WordCamp для мене змінився. Тепер він менше про доповіді на сцені й більше про те, що відбувається між ними. Як організатор, ти все одно пропускаєш більшість виступів, адже тебе одночасно тягнуть у десять різних боків. Але справжнє життя вирує в коридорах і на вечірках після завершення основних сесій.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Особливо важливо це для української спільноти. Війна розкидала нас по всій Європі — різні країни, різні компанії, різні життя. WordCamp Europe став одним із небагатьох місць, де ми можемо знову зустрітися наживо: поділитися тим, що приніс цей рік, побачитися з людьми, яких досі знали лише онлайн, і переконатися, що наша спільнота продовжує зростати попри все. Багато хто не зміг приїхати до Кракова, на жаль дехто вже ніколи не зможе побувати на цих заходах. Для тих із нас, кому це вдалося, ці зустрічі мають особливе значення.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Саме про це ми з Данилом співали на світанку біля Bastion III, хоча ніхто з нас не сказав цього вголос. Сподіваюся, колись мені ще доведеться робити це на афтепаті в Гельсінкі та Києві — щойно це знову стане можливим.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://heropress.com/wp-content/uploads/2026/07/image4.webp\"><img alt=\"\" class=\"wp-image-8761\" height=\"684\" src=\"https://heropress.com/wp-content/uploads/2026/07/image4-1024x684.webp\" width=\"1024\" /></a><figcaption class=\"wp-element-caption\">Українська команда на WordCamp Europe Torino 2024. Все більше і більше українців приїжджає на цей захід незважаючи на війну. Фото зроблене Максимом Кагарлицьким. </figcaption></figure>\n<p>The post <a href=\"https://heropress.com/essays/listen-the-birds-are-already-singing/\">“Listen&#8230; the birds are already singing” &#8211; “Послухай… пташки заспівали”</a> appeared first on <a href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 08 Jul 2026 05:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Volodymyr Melnychenko\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"BuddyPress: BuddyPress 14.5, 12.7, 11.6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=339549\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://buddypress.org/2026/07/buddypress-14-5-0-and-12-7-0/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2951:\"<p class=\"wp-block-paragraph\">BuddyPress <a href=\"https://downloads.wordpress.org/plugin/buddypress.14.5.0.zip\">14.5.0</a>, <a href=\"https://downloads.wordpress.org/plugin/buddypress.12.7.0.zip\">12.7.0</a>, and <a href=\"https://downloads.wordpress.org/plugin/buddypress.11.6.0.zip\">11.6.0 </a>are now available.</p>\n\n\n\n<p class=\"wp-block-paragraph\">These are security and maintenance releases that include two security fixes, along with a number of compatibility improvements, bug fixes, and code modernization updates. We strongly recommend updating your sites as soon as possible.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Highlights</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Two security issues:\n<ul class=\"wp-block-list\">\n<li>Prevent user ID spoofing in the Messages REST API endpoint via improved validation.</li>\n\n\n\n<li>Restrict Component management to Users with the appropriate Capabilities.</li>\n</ul>\n</li>\n\n\n\n<li>Improves compatibility with WordPress 6.9, including support for block style loading optimizations and replacement of deprecated WordPress APIs where appropriate.</li>\n\n\n\n<li>Includes numerous bug fixes across BuddyPress, including BP Nouveau, Groups, Friends, Activity, Administration, and several PHP 8.x compatibility improvements.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Download</h2>\n\n\n\n<p class=\"wp-block-paragraph\">You can update automatically from your WordPress Dashboard, or download BuddyPress 14.5.0 directly:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://wordpress.org/plugins/buddypress/\">https://wordpress.org/plugins/buddypress/</a></li>\n\n\n\n<li><a href=\"https://buddypress.org/download/\">https://buddypress.org/download/</a></li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">For the complete list of changes included in this release, see the changelog:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://codex.buddypress.org/releases/version-14-5-0/\">https://codex.buddypress.org/releases/version-14-5-0/</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"block-8935e1e5-ef63-42ee-8c08-67fad827159a\">Many thanks to our 14.5.0 contributors </h2>\n\n\n\n<p class=\"wp-block-paragraph\">Thanks to everyone who contributed patches, testing, reviews, bug reports, and responsible security disclosures that helped make this release possible.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Contributors include: emaralive, vapvarun, westonruter, joelkarunungan, nikunj8866, shawfactor, r-a-y, t.schwarz, dcavins, noruzzaman, rollybueno, potcus, pratiklondhe, yatesa01, bhargavbhandari90, amitraj2203, GaryJ., espellcaste, needle, and johnjamesjacoby.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Security issues were responsibly disclosed via the <a href=\"https://hackerone.com/wordpress\">WordPress Bounty Program over at HackerOne</a> and through the <a href=\"https://make.wordpress.org/plugins/\">WordPress Plugins Team.</a> If you were not properly attributed for your contribution here, leave a comment and we&#8217;ll get you added.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 07 Jul 2026 17:57:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"John James Jacoby\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"Open Channels FM: Signal – Issue 16\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2556589\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://openchannels.fm/signal-issue-16/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:172:\"Insights into the DevRel role\'s importance, explore endless API possibilities, and consider the balance of digital freedom, cost, and usability in today’s tech landscape.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 07 Jul 2026 13:04:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Matt: USA 250\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=153462\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://ma.tt/2026/07/usa-250/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2410:\"<p class=\"wp-block-paragraph\">This auspicious 250th Independence Day, I find myself thinking of what <a href=\"https://om.co/2013/08/13/iamerican/\">Om wrote in iAMerican when he became a US citizen in 2013</a>.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">On a globe, America is a landmass, a country. In an immigrant’s heart it is a belief that future is almost always better. It may not be perfect and it is certainly not equal, but it still is one of a kind — the only place where an absolute stranger with a funny name and a funny accent with no friends or contacts can show up, work hard and actually get to do what he was destined to do. [&#8230;]</p>\n\n\n\n<p class=\"wp-block-paragraph\">In most places in the world, outsiders like me don’t have that chance. That simple truth is what makes America so special. A chance – to be somebody even if you are nobody. America is a state of mind and I have opted-in!</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">I feel lucky to have been born here, and if I hadn&#8217;t been, I think I would have gotten here as fast as I could. I&#8217;m grateful to the public schools that educated me, the <a href=\"https://ma.tt/about/#teachers\">teachers</a> who pushed me, the internet that freed my mind, and the culture of risk and innovation in technology that <a href=\"https://ma.tt/2006/04/a-little-funding/\">invested a million dollars</a> in a 21-year-old dropout kid trying to <a href=\"https://automattic.com/\">build a company</a> around (but not replacing) <a href=\"https://wordpress.org/\">an Open Source project</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It&#8217;s not unimaginable that these things could have happened someplace else, but it would have been a long shot.</p>\n\n\n\n<p class=\"wp-block-paragraph\">On the lighter side, <a href=\"https://www.youtube.com/watch?v=JYqfVE-fykk\">SNL&#8217;s Washington&#8217;s Dream skit is one of their best ever</a>, <a href=\"https://www.youtube.com/watch?v=Q3RjZY-rSsc\">Google has a pretty funny commercial reimagining the Declaration being written</a>, and <a href=\"https://www.youtube.com/watch?v=ezs9h7Td8Zg\">another famous Matthew (McConaughey) gives a great 2-minute speech</a>. &#8220;We need skeptics. Yes, we do. We do not need cynics. One cares enough to question, which we should, and the other one&#8217;s already quit.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 05 Jul 2026 06:59:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"Open Channels FM: Open Source as Foundation, Not Final Answer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2556361\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://openchannels.fm/open-source-as-foundation-not-final-answer/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:175:\"In ecommerce, it’s not just about the tech but how it helps merchants grow. Open source can offer control and adaptability, especially with platforms like Woo and WordPress.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Jul 2026 09:59:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:120:\"WPTavern: #223 – Ivana Ćirković on How WordPress Credits Bridges Education and Industry in the WordPress Ecosystem\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=206102\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:130:\"https://wptavern.com/podcast/223-ivana-cirkovic-on-how-wordpress-credits-bridges-education-and-industry-in-the-wordpress-ecosystem\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:38278:\"<details>Transcript<div>\n<p class=\"wp-block-paragraph\">[00:00:19] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox Podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Jukebox is a podcast which is dedicated to all things WordPress, the people, the events, the plugins, the blocks, the themes, and in this case how WordPress Credits bridges education and industry in the WordPress ecosystem.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to wptavern.com/feed/podcast, and you can copy that URL into most podcast players.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you and hopefully get you, or your idea, featured on the show. Head to wptavern.com/contact/jukebox and use the form there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So on the podcast today we have Ivana Ćirković. Ivana is a digital marketer with 18 years of experience working both in and out of the tech industry, and currently leads marketing at WPBakery. She&#8217;s an active participant in WordPress events, having attended, and spoken at, numerous local and international word camps over the years.</p>\n\n\n\n<p class=\"wp-block-paragraph\">In this episode, our focus is on the WordPress Credits initiative. We learn how this program, launched by the WordPress Foundation, connects students with real world opportunities to contribute to the WordPress ecosystem, earn certifications, and increase their competitiveness in the job market.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Ivana discusses her own experience as a WP Credits mentor, working with students as they learn about digital marketing, remote work, and other open source contributions. We explore, how universities can modernise their curriculums, and real world value for students by participating in the initiative, and how businesses can get involved, not just to support the community, but to help shape and discover future talent.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The program&#8217;s evolving structure also gets attention, and we learn how students are guided through hands-on activities such as translation or documentation, and how their progress is tracked publicly via profiles on wordpress.org. Ivana shares the opportunities and challenges for both educators and businesses with thoughts on accountability, mentorship, and the need to bring new faces into the WordPress community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;re interested in the future of WordPress, education, or bridging the gap between academia and industry, this episode is for you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;d like to find out more, you can find all of the links in the show notes by heading to wptavern.com/podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so without further delay, I bring you Ivana Ćirković.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I am joined on the podcast by Ivana Ćirković. Did I get that right?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:14] <strong>Ivana Ćirković:</strong> Yes. Excellent.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:16] <strong>Nathan Wrigley:</strong> Thank you. This is my first interview at WordCamp Europe 2026. I&#8217;m guessing because we&#8217;re on the first day of the event and it&#8217;s quite early in the morning, it&#8217;s 10 in the morning, I&#8217;m guessing you cannot have done your presentation yet?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:30] <strong>Ivana Ćirković:</strong> Not yet. Tomorrow.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:32] <strong>Nathan Wrigley:</strong> Do you get nervous with these kind of things?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:34] <strong>Ivana Ćirković:</strong> I get nervous all the time. I&#8217;ve been doing this for 12 years, it never gets easier. It is what it is.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:39] <strong>Nathan Wrigley:</strong> Well, the presentation that you are doing is going to be the focus of what we&#8217;re talking about today. So do you just want to tell us a little bit about the topic that you&#8217;re talking about, but also just give us a bit of a general bio about who you are and what you do. So just tell us about you and about your presentation basically.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:56] <strong>Ivana Ćirković:</strong> Okay. First thing first, I would like to introduce my presentation, or the talk, that is build up around WordPress Credits initiative, which is something that WordPress has rolled out late last year in December. And I applied to be a mentor to support students into their entering into WordPress. Got accepted, did my courses, passed them and started working with students on their, first entering the WordPress society, how everything works, contributing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And out of all of this, I came up with the idea of sharing the story about WordPress Credits. What it is, why it is important, not just for the WordPress community, but also for universities all around the world for businesses to support, because there is an angle and huge opportunity for them too. And hopefully inspire people to join and become part of it more.</p>\n\n\n\n<p class=\"wp-block-paragraph\">As far as I&#8217;m concerned, my name is  Ivana Ćirković and I am a digital marketer for 18 years. I&#8217;ve been working inside tech organisations, tech industry, but also outside of it. So I&#8217;m the multiverse. And lately, for past couple of years, I&#8217;ve been working in WPBakery, in marketing their product, and talking to people, sharing knowledge of what we do, how we do it, and so on. In the meantime I am attending many, many WordCamps, local and international ones, giving lectures, giving talks about digital marketing and all things related.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:05:39] <strong>Nathan Wrigley:</strong> So are you here at this event, not just to give your presentation, are you also here on behalf of WPBakery to represent them and the products that they have as well?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:05:47] <strong>Ivana Ćirković:</strong> Yes, we are sponsors. I am speaker, I was table lead for marketing on Contributors Day. So we are wide into the ecosystem.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:05:56] <strong>Nathan Wrigley:</strong> I have to say, having only been in this event space for about an hour, I&#8217;m actually deeply impressed by this particular event. It really is a gigantic venue. It&#8217;s so pleasurable as well to see the WordPress community in such large numbers here. And so we&#8217;re looking forward to a really good event.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Okay, let&#8217;s kick off with the topic at hand then. So it occurs to me that many people listening, whilst they&#8217;re using WordPress and they&#8217;re kind of, I don&#8217;t know, they&#8217;re building websites for people, and they&#8217;ve got products and plugins and they&#8217;re just general users. It may be that the community piece, and the educational piece, is nothing that they&#8217;ve heard of before. So would you just tell us a little bit about what WP Credits is as far as you&#8217;re concerned, just to give us that broad background of what it is?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:06:40] <strong>Ivana Ćirković:</strong> Okay. So WP Credits program is initially made to bring new young people into the WordPress, to broaden the ecosystem with the new fresh blood, new contributors. And to do so, WordPress Foundation initiated this program to connect with universities all across the world. To connect students to some programs, to learn about WordPress through contribution. For that, they will get graded and get certification, which in the end will help them be more marketable, and have more modern knowledge of what is needed in today&#8217;s job market, and to be more competitive and more appealing to potential employers.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So by doing so, WordPress Credits aims to broaden the ecosystem, to strengthen the WordPress community, and WordPress itself. But also to put new generations in more marketable place, and to help them get more profitable jobs.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:07:45] <strong>Nathan Wrigley:</strong> Thank you. That was a really nice summary. In terms of your personal commitment to it and what have you, how did you fall into it as a thing that you were doing? And is this something that you get sponsored for from WPBakery, or is it personal and simply a sort of philanthropic thing that you are doing on the side?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:08:01] <strong>Ivana Ćirković:</strong> Yeah, so basically, I&#8217;ve been doing education my whole professional life. So it&#8217;s something that comes natural to me. In my local country, in Serbia, I do informal education for high schoolers and primary school&#8217;s children about digital marketing, digital literacy. This is like very natural to me. I&#8217;m being sponsored by WPBakery to do so.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And the program works like, initiative needs people, needs more mentors to get involved. More than it needs like product and businesses to support with their products. So if there are businesses who are maybe interested in support through their product, know that you need to put your people first to actually get involved and contribute, and then you can offer products as the side piece, so to say.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:08:52] <strong>Nathan Wrigley:</strong> So yeah, it seems that you&#8217;ve got a lifelong interest in education as well. Okay, that gives me some sort of hook there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Okay, if I was to say WP Credits to the people outside, the people who already knew about it, I think would probably peg it as entirely educational in nature, just an education initiative. But curiously, your presentation, the notes that went with that and the blurb that went on the WordCamp Europe website, you kind of make the point that it&#8217;s much bigger than that, and you get into businesses and the students themselves and universities.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So the students in universities bit, well, that&#8217;s the education piece. But the business bit, what&#8217;s going on there? Because I definitely hadn&#8217;t drawn that intuition. I thought education from top to bottom. But business, okay, where does that fit in?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:09:37] <strong>Ivana Ćirković:</strong> I will get the hot insights from the talk. So basically, there is more than what meets the eye, so to speak. Businesses have unique opportunity to shape people they want to employ by getting involved as mentors. They also get the chance to see firsthand how those young minds work in real environments, in real contribution. And they get the chance to pick and choose who they want to employ by seeing them work on some real things. Whether it&#8217;s documentation, whether it&#8217;s translation or programming, developing something, AI.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We need more people who know what they do, although they are young. By having students in this program, they are working on not fictional things, but actual things that really contribute to community and businesses as a whole. By supporting this initiative, businesses then in relations to that can get more insights into who they want to employ. So on top of that, they are building the better market for themselves as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:10:42] <strong>Nathan Wrigley:</strong> I guess the student university piece is fairly obvious. You know, WP Credits and the people working on that project communicate with universities, they&#8217;re probably easy to find. You know, if you go to a phone directory for example, they&#8217;ll all be there. And it&#8217;s an easy thing to do. You phone up the university and see if there&#8217;s interest. And I know that some universities have taken up the WP Credits program. And it seems to be, as far as I can work out, it seems to be working very successfully.</p>\n\n\n\n<p class=\"wp-block-paragraph\">How are you going to make the connection with businesses? Because that seems like a much more scattered, I don&#8217;t know if you&#8217;re going to be working with big businesses, you know, huge companies or if it&#8217;s going to be kind of more the businesses on the street, the smaller businesses, that kind of thing. So, I&#8217;ll just sort of hand it over at that point.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:11:23] <strong>Ivana Ćirković:</strong> So basically, web agencies, businesses around WordPress, we know they have an issue with new employees onboarding last, let&#8217;s say three to six months. That cost time and money and other people who are teaching them what needs to be done and how.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Then we have WordPress Credit students who are already doing that junior type of work within contribution. They&#8217;re already onboarded through using Slack, knowing how to do remote work, what needs to be done. So businesses supporting WordPress Credits initiative can choose those students and spend less time and money and energy in onboarding them because they already went through that by doing WordPress Credits program.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:12:10] <strong>Nathan Wrigley:</strong> Yeah, I guess if you are a small web agency, it&#8217;s highly likely that you won&#8217;t necessarily have an induction program finely tuned, so that the young people that are coming through have this sort of specialised system where they can get some accreditation. It&#8217;s probably more, okay, I&#8217;m going to assign you to John this week and then next week you&#8217;re going to go over to Susan and follow what they&#8217;re doing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So is there a sort of structured program that, let&#8217;s say a web agency based in London could drop into and receive documentation about? Where are we at with that whole process for the busineses?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:12:44] <strong>Ivana Ćirković:</strong> Yeah, so since this initiative is still fairly new and we already have just one generation of students that are passed the program, this is something in development. So at the moment, we still don&#8217;t have like a specific structure that is based just for agencies and businesses in general, but it is something that we are considering and working towards too. So definitely.</p>\n\n\n\n<p class=\"wp-block-paragraph\">On the other hand, the upper management organisational team might not be aware to the fullest what am I about to talk. So it might come as a surprise to them, but also it is something in the works as well. So give us some time and we will come up with something.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:13:26] <strong>Nathan Wrigley:</strong> Yeah, it feels like that would be something really credible. Because if you&#8217;re a small business owner, the last thing you want to be doing is kind of wasting time. And onboarding somebody might be something that you&#8217;d have to divert weeks into, you know, syphoning employees off, writing documentation, SOPs, those kind of things. And if you could just pick something up off the shelf that was tried and tested over many years, that would actually be really handy. So good luck. I hope that that initiative comes off.</p>\n\n\n\n<p class=\"wp-block-paragraph\">In terms of students, if you were a student, let&#8217;s say you are at a university, or you are looking for work, what would you say would be some of the top line items that you would mention as to why WP Credits is worth looking at? Because, you know, if I&#8217;m at a university, there&#8217;s probably a thousand different things that I could be doing. WP Credits would be in competition with all of those. Why do you think it&#8217;s something that young people should be taking care of to look at?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:14:17] <strong>Ivana Ćirković:</strong> Yeah, I would think differently, in that sense. Universities curriculums are outdated comparing to the industry that we are living and working in. So WordPress Credits gives something that is in trend. That is happening now that people are using and working now. So students who choose to go to this program are gaining the most efficient and not outdated curriculum, and things that are being worked on in this moment.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And this is bigger than WordPress. It is initially for WordPress, but the knowledge students get, nobody can take that away. They learn to be outspoken. They learn to use all the necessary remote work tools that is applicable in all the industry.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So we are really encouraging them to be very marketable employees and people who have portfolios, whether they choose that category that brings them portfolio. That is very transparent throughout whatever they do. Because on wordpress.org, every contribution is noted. So they&#8217;re building their own business brand by doing WordPress Credits. And in that way they are more marketable and can get more business opportunities.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:15:42] <strong>Nathan Wrigley:</strong> I didn&#8217;t realise that the wordpress.org profile, is it the profile that you mean?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:15:47] <strong>Ivana Ćirković:</strong> Yes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:15:47] <strong>Nathan Wrigley:</strong> Each time you participate in one of these credit programs, that will be a badge, for want of a better word, that you can display and it will be freely available for the public. And presumably that will be difficult to acquire. That&#8217;s the wrong word. What I mean is, it won&#8217;t be simple to acquire. You will genuinely have had to.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:16:07] <strong>Ivana Ćirković:</strong> Yes, you need to do the work. Let&#8217;s say students are interested in translation. So they go to Polyglots team and they get assigned to a mentor who is on weekly basis working with them on onboarding, helping them how to navigate through wordpress.org website, translation, what needs to be done. And basically, for that student, they need to translate to have approved translation, 150 strings approved.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So that doesn&#8217;t mean, okay, I will translate 150 words. No, no. You might need to translate 500 words out of which 150 is approved. And this is the bare minimum you need to do in order to get that badge that you contributed. Because that contribution, each contribution needs to be something very specific and tailored to help other people. That is very open and helpful.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:17:00] <strong>Nathan Wrigley:</strong> So you mentioned translations there, which obviously is just one of multiple things that you could do, and we could list them all out, but we won&#8217;t. How is that curriculum, I&#8217;m doing air quotes, how is that curriculum decided upon? In other words, how do you decide, okay, I&#8217;m going to do a bit of translation, I&#8217;m going to do a bit of work on Core, I&#8217;m going to work for the Plugin Review Team? How is that decided? And, how is it decided by the institution, I guess that that&#8217;s going to equal something which our university will stamp as part of your degree, let&#8217;s say?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:17:33] <strong>Ivana Ćirković:</strong> Yeah. So basically, that is all arranged between the foundation and universities. You won&#8217;t get IT students doing marketing if that&#8217;s not their preferable choice. So students opt in. They&#8217;re given the whole like curriculum, categories of things they can contribute to. And the one they choose, this is the one they stick to throughout all the programs.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So you cannot switch in between like translation and documentation, or plugins, or WP-CLI whatever. The whole program stick to one chosen category. And that is all aligned with the, let&#8217;s say, topic of university. So IT is preferable for IT related contributions. Communications are also more favourable towards translation community, marketing. So it&#8217;s aligned that way.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:18:23] <strong>Nathan Wrigley:</strong> So flipping that round, so we&#8217;ve been talking about it from the point of view of the students. Now let&#8217;s just flip it around to the point of view of the university. I guess the same thing applies. They would have to communicate with the Foundation and say, okay, these are the kind of things that we wish our students to do. These particular strands, we will, you know, if they do 500 translation strings, that will count as something. I guess there&#8217;s got to be some interface between the Foundation and each university to establish what a credit equals.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:18:50] <strong>Ivana Ćirković:</strong> Yeah, common ground as to how WordPress Credits adds to the official curriculum of the university. And the thing that university get out of it, they are in position to offer modern, in trend, teachings, and that makes them more appealing to next generation of students. Because the more their existing students who are in the WordPress Credits program are succeeding, the more desirable the university gets to newer generations because they don&#8217;t teach outdated curriculums. They&#8217;re aligning to what is now efficient and needed in the job market.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:19:30] <strong>Nathan Wrigley:</strong> I suppose also as well, when I was at university, there was a choice of about, I don&#8217;t know, four things to do each year. Something like that. You could do this or this or this. And you had to pick one of them and that was your pathway. This feels much more wide open because knowing the WordPress ecosystem, I know that there&#8217;s dozens, maybe multiple dozens of different things that you could be involved in.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So that&#8217;s quite appealing as well, isn&#8217;t it? You know, you can just take a little nibble of this one thing, and another nibble of this. And so there&#8217;s potentially multiple dozens of different pathways that you could pick. And whilst you say that, once you&#8217;ve decided you&#8217;ve got to stick to that, well, that&#8217;s fair enough, but the fact that you&#8217;ve got so many different ways that you could choose. That to me as a university student would&#8217;ve been really appealing. The fact that there&#8217;s so many different things that you could do.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:15] <strong>Ivana Ćirković:</strong> Yeah. And once they got in, the overall input that we get from students that, first they don&#8217;t know that something like this exists. And once they go deep and start work, it&#8217;s like, wow. The whole mind just shifts, and they are amazed by all the possibilities that they can do within WordPress that isn&#8217;t talked about.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:36] <strong>Nathan Wrigley:</strong> Yeah. And I presume they get to do it in the way that the WordPress community works, which is remotely distributed and when you wish to do it. So long as I, you make the end of the university period of whatever a semester is or something, so long as you make the deadline, you can do it at night or in the early morning or.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:57] <strong>Ivana Ćirković:</strong> Exactly. So they are training to be like workers as we all are today, that are not restrained with some deadlines or by official university rules. They&#8217;re accountable for the final output. How will they come to that output? It&#8217;s entirely up to them because, yes, they are young but they&#8217;re not so young that they cannot be held accountable for their actions. So they need to do the work. We got weekly mentorships and assessments. So it&#8217;s a fun ride.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:21:31] <strong>Nathan Wrigley:</strong> So just touching on that, the sort of ongoing support that every student needs, because with the best rule in the world, there&#8217;s a proportion of students who will leave everything to the last minute. I&#8217;m looking at myself in the mirror when I say that. So that ongoing support, it&#8217;s a weekly sort of huddle. And is that like a one-to-one thing or is it a one to many thing?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:21:50] <strong>Ivana Ćirković:</strong> Yeah, so depending on the number of students, if a mentor has a one or two students, it can be one-to-one. If there are more like five or six, it&#8217;s better to have a group meeting on a weekly basis, and then Slack chats in between if anything is more needed than that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So basically we go through what they did last week, are there any setbacks or they need additional help, or do they need information from other parts of the team? Are they interested in something else? So we are really trying to get them involved in a way that matters to them.</p>\n\n\n\n<p class=\"wp-block-paragraph\">One of the things that each student needs to do, no matter section they chose, is to create a blog and to have weekly blog posts. So we discuss about that. What interests them. Whether they want to be something personal like, or professional like. So it&#8217;s very interesting to see how they think and how they express themself and how they build their online persona.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:22:55] <strong>Nathan Wrigley:</strong> Do those huddles take place on a, let&#8217;s say university by university basis? So for example, when you join and you mentor students, are they from the entire WP Campus project, or are you doing it from the university of this town and the university of that town?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:23:13] <strong>Ivana Ćirković:</strong> No, it&#8217;s mixed and matched.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:23:14] <strong>Nathan Wrigley:</strong> So, okay, well that&#8217;s a real strength as well it feels, because presumably then you&#8217;re on a call with people potentially from all over the world. Certainly people that you may not have encountered before. And those sort of serendipitous chance encounters can sometimes be some of the more meaningful ones. You know, work comes out of those things, and meetups come out of those things, and unexpected things come out of those things. So that must be really nice as well, watching those kind of things happen.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:23:42] <strong>Ivana Ćirković:</strong> Yeah, it&#8217;s like nothing I experienced before. And just to have the privilege to talk and work with those people, you never know what can come up out of them, and out of our connections. And I get inspired every time we have chats and they make me want to be a better educator.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:24:03] <strong>Nathan Wrigley:</strong> Oh, that&#8217;s interesting.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:24:04] <strong>Ivana Ćirković:</strong> So, yeah, that&#8217;s my take out of all this.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:24:06] <strong>Nathan Wrigley:</strong> Yeah. Okay, so there&#8217;s actually some psychological benefit for you as well. You get a real nice feeling of it. Okay, that&#8217;s really good.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So with the best will in the world, a university, every year there&#8217;s a cohort of children, young adults, whatever it may be, whichever institution it is, and a proportion of them will work diligently and hard and they will succeed. And some others maybe not so much.</p>\n\n\n\n<p class=\"wp-block-paragraph\">How does that work? How do you ensure that everybody gets through it? And I don&#8217;t know if there&#8217;s enough data to answer this question. Again, I&#8217;m doing air quotes, how is the pass rate? Do most people that embark on this get through the necessary things? Or is there a fair bit of, I don&#8217;t know, discipline, for want of a better word, that needs to be applied and cajoling people to get through it?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:24:46] <strong>Ivana Ćirković:</strong> Yeah, so I touched base on the accountability. So we have not strict rules, but recommendations. Weekly mentor chats, async communication through Slack. They all have weekly tasks that needed to be done. So if a student don&#8217;t answer the message or come to weekly mentor call three times, they are no longer WordPress Credit students. And that is the accountability.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You need to show yourself that you are willing to do the work. So if you don&#8217;t care, we won&#8217;t force you to do that if you don&#8217;t want to. We will set reminders, we will call back, we will reach out. But if you are no show, no tell anything for three times, then evidently you are not for that. You don&#8217;t wish to be there, and we won&#8217;t force you to be there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:25:40] <strong>Nathan Wrigley:</strong> And then in some way, are you required then to report that back to the institution and sort of say, okay, we&#8217;ve reached the end of the road here, and then it&#8217;s for them to figure out how that impacts. And presumably the students can.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:25:53] <strong>Ivana Ćirković:</strong> Their grades, yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:25:53] <strong>Nathan Wrigley:</strong> Yeah, their grades what have you, okay. Touching back on the sort of business side, because we&#8217;ve dwelled a lot with students and universities and we&#8217;re going to stay with students, because that&#8217;s really the underpinning of the whole thing. How has the business side of things, is it taking off? You were describing that it&#8217;s kind of like a new thing. Have you got any sort of success stories or anecdotal evidence that people do in fact want this?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:15] <strong>Ivana Ćirković:</strong> Yeah, so it&#8217;s still fairly new, so we don&#8217;t have those anecdotes yet. One of the reasons why I&#8217;m here at the WordCamp Europe is to find out and to get new perspective from businesses to like reach out to them to see what they think about the program. Would they want to be evolved. And how to give tips, maybe how we can improve. So stay tuned for more.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:38] <strong>Nathan Wrigley:</strong> Yeah. And it is interesting, when you walk around an event like this, I don&#8217;t have the exact numbers, but the demographic is definitely skewing older. There&#8217;s not so many 18 year olds. And if this community wishes to carry on, at some point the age demographic will get to retirement age.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:57] <strong>Ivana Ćirković:</strong> Yeah. Just last night we were talking. I&#8217;ve been in the community for 11 years. And for 11 years all the same faces are here. And we really need new faces. But to get new faces, WordPress Credits is one part of the solution. But then again, we need to meet young people where they are. And they are not on the conferences, they are not on websites, they don&#8217;t use websites, they don&#8217;t care about websites. They are on very specific social media channels. And if we want to get fresh, new, young blood, we need to go there and to present what we do in a way that matters to those kids.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:27:35] <strong>Nathan Wrigley:</strong> In terms of success, if you were to, I don&#8217;t know, let&#8217;s imagine that we could cast our minds forwards five years, let&#8217;s go for that. What would you like to have happened with WP Credits? Would you like, for example, to see a bunch of 20 somethings wandering around in an event like this? Does it matter that they&#8217;re involved in the community and doing WordPress events and contributing to Core and those kind of things? Or is success just more broadly, people are using WordPress? You know, it&#8217;s still a project. What&#8217;s your take on, what does success look like in five years?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:28:08] <strong>Ivana Ćirković:</strong> For me, I would like to see more young people involved. Yes, we will always have users because in its core, WordPress is a very useful tool. And I&#8217;m happy to stumble upon that tool many, many years ago to use it both personally and professionally. But I really want to see young people involved in a way that we were involved 10, 15 years ago, and to see what can happen with WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I strongly believe it&#8217;ll be transformed, not with AI or all other flashy trends. WordPress has always been about people. And we need new people, we need young people to get it where it needs to be.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We are getting older and don&#8217;t have strengths or stamina to do so for how many long years. By having new kids, fresh perspectives, I&#8217;m really excited to see what they can come up with next.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:29:08] <strong>Nathan Wrigley:</strong> Yeah, it&#8217;s kind of handing over the baton in a way, isn&#8217;t it? Seeing what the future holds. Yeah, I definitely have concerns that the age demographic is skewing. And no matter what has happened in the past, I don&#8217;t see it being backfilled with younger people moment.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But I think that&#8217;s largely because we just assumed that that age demographic would fill itself, because we were excited about it, so the younger generation will be excited about it. Well it turns out the world moved on. And TikTok came along, and YouTube became a massive thing and mobile phones and all the different platforms became a thing. And so the attention was put elsewhere by many young people.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so I suppose we needed to come up with a system where we are, in a sense, just putting it in front of their face and saying, look, it&#8217;s here. You know, you&#8217;re a university student, you are somebody looking for work in a small business. Here&#8217;s a credible way of getting involved in something which potentially could change your life. That seems like the most credible way of doing it at the moment. And I guess we&#8217;ll just have to see what the next five years brings.</p>\n\n\n\n<p class=\"wp-block-paragraph\">In which case, is there anything that you felt you wanted to touch on that you wanted to get out of this chat before we finished?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:30:15] <strong>Ivana Ćirković:</strong> No, I think you did it masterfully. And we touched base on everything that needed to be said.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:30:20] <strong>Nathan Wrigley:</strong> Perfect. In that case, I will say Ivana, thank you for chatting to me today. Fingers crossed that your presentation goes well tomorrow, and that you pack the place out, and that by this time next week, you are extremely busy with the WP Credits program. Thanks for chatting to me.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:30:34] <strong>Ivana Ćirković:</strong> Thank you. Thank you for inviting me.</p>\n</div></details>\n\n\n\n<p class=\"wp-block-paragraph\">So on the podcast today we have Ivana Ćirković.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Ivana is a digital marketer with 18 years of experience working both in and out of the tech industry, and currently leads marketing at WPBakery. She’s an active participant in WordPress events, having attended and spoken at numerous local and international WordCamps over the years.</p>\n\n\n\n<p class=\"wp-block-paragraph\">In this episode, our focus is on the WordPress Credits initiative. We learn how this program, launched by the WordPress Foundation, connects students with real-world opportunities to contribute to the WordPress ecosystem, earn certifications, and increase their competitiveness on the job market.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Ivana discusses her own experience as a WP Credits mentor, working with students as they learn about digital marketing, remote work, and open source contributions. We explore how universities can modernise their curriculums and add real-world value for students by participating in the initiative, and how businesses can get involved, not just to support the community, but to help shape and discover future talent.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The program’s evolving structure also gets attention, and we learn how students are guided through hands-on activities such as translation or documentation, and how their progress is tracked publicly via profiles on WordPress.org. Ivana shares the opportunities and challenges for both educators and businesses, with thoughts on accountability, mentorship, and the need to bring new faces into the WordPress community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’re interested in the future of WordPress, education, or bridging the gap between academia and industry, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://learn.wordpress.org/course/wordpress-credits/\">WordPress Credits</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://wpbakery.com\">WPBakery</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://europe.wordcamp.org/2026/session/what-it-really-means-to-be-a-part-of-the-wp-credits-program/\">What it (really) means to be a part of the WP Credits program?</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 01 Jul 2026 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"Open Channels FM: Signal – Issue 15\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2556251\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://openchannels.fm/signal-issue-15/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:140:\"Insights on community support, decision-making, starting new projects, and the importance of agency reputation in hosting. Engage and share!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 01 Jul 2026 13:11:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"Aaron D. Campbell: Open Source Support Can’t Depend on Charity\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://aarondcampbell.com/?p=2933\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://aarondcampbell.com/2026/06/open-source-support-cant-depend-on-charity/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:470:\"<p>Companies depend on open source software. Supporting the projects that support your business shouldn\'t be treated as charity; it should be part of sustaining the infrastructure, ecosystem, and user trust your products rely on.</p>\n<p>The post <a href=\"https://aarondcampbell.com/2026/06/open-source-support-cant-depend-on-charity/\">Open Source Support Can&#8217;t Depend on Charity</a> appeared first on <a href=\"https://aarondcampbell.com\">Aaron D. Campbell</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 30 Jun 2026 13:19:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Aaron D. Campbell\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"Open Channels FM: Thoughts on the Human Side of AI Acceleration\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2555792\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://openchannels.fm/thoughts-on-the-human-side-of-ai-acceleration/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:155:\"AI is evolving super fast, boosting productivity but also causing burnout and a loss of human touch. We need to balance tech with authentic human insights.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 30 Jun 2026 11:06:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"Open Channels FM: Aligning WooCommerce Marketing Strategies for Community Success\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2556016\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://openchannels.fm/aligning-woocommerce-marketing-strategies-for-community-success/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:185:\"In this episode we’re chatting about a topic that matters to everyone in the WooCommerce world and beyond: how OSS communities can come together to market themselves more effectively.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 30 Jun 2026 09:08:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"WordPress.org blog: The First AI Leaders Graduates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=20951\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2026/06/ai-leaders-graduates/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4846:\"<p class=\"wp-block-paragraph\">On June 23, around 40 students from the University of Illinois Chicago (UIC), Louisiana Tech University, and the University of Louisiana at Lafayette were celebrated in Chicago as the first cohort to receive the AI Leaders Micro-Credential through <a href=\"https://ai-leaders.org/\">AI Leaders</a>, the nation&#8217;s first workforce-focused AI literacy course tied to a recognized credential. Each of them earned it by building real projects, applying generative AI to genuine work, and contributing to the open source software that powers more than 40% of the web. Students who completed the course also earned $1,000, made possible by a donation from Automattic and UIC. This celebration was the moment the program had been building toward since it was <a href=\"https://wordpress.org/news/2026/02/ai-leaders-credential/\">first announced in February</a>.</p>\n\n\n\n<div class=\"wp-block-group has-background is-layout-constrained wp-container-core-group-is-layout-2431c55b wp-block-group-is-layout-constrained\">\n<p class=\"has-text-align-center has-white-color has-text-color has-link-color has-normal-font-size wp-elements-2 wp-block-paragraph\"><strong>Explore the project portfolios built by this year’s AI Leaders</strong></p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https://aileaderswp.blog/\"><img alt=\"\" class=\"wp-image-20975\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/aileaderswpblog-scaled.png?ssl=1\" /></a></figure>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-3e41869c wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-align-center wp-element-button\" href=\"https://aileaderswp.blog/\"><strong>AI Leaders · Class of 2026</strong></a></div>\n</div>\n</div>\n\n\n\n<p class=\"wp-block-paragraph\">When the pilot launched, the goal was to test whether open source learning could connect directly to job pathways rather than stopping at a certificate. What makes this program distinct is that it is built on open source from the ground up: students learn on WordPress, contribute to it, and use generative AI the way the WordPress ecosystem uses it every day, leaving with a credential that employers can verify and a community that continues long after the course ends.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The pilot reflects a shared belief that AI and open source skills should be within reach regardless of where someone lives or what they can afford.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">WordPress was built to expand access to publishing and participation on the open web.</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">The program is a collaboration with distinct roles for each partner. It is funded through the <a href=\"https://osf.it.uic.edu/\">UIC Tech Solutions Open Source Fund</a>, with support from the <a href=\"https://www.uic.edu/\">University of Illinois Chicago</a> and <a href=\"https://automattic.com/?p=867048\">Automattic</a>, while the WordPress project and the <a href=\"https://wordpressfoundation.org/\">WordPress Foundation</a> contribute to the development of the curriculum itself.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What Comes Next</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The first cohort was just the beginning. The gathering in Chicago brought this group together with employers and agencies, and further job placements are already in motion. </p>\n\n\n\n<div class=\"wp-block-group has-off-white-2-background-color has-background is-layout-constrained wp-container-core-group-is-layout-2431c55b wp-block-group-is-layout-constrained\">\n<p class=\"has-text-align-center wp-block-paragraph\">The next round of AI Leaders is on the horizon. Subscribe for updates to be the first to hear when the next cohort opens and how to take part.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-3e41869c wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://ai-leaders.org/#apply\"><strong>Subscribe for AI Leaders Updates</strong></a></div>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-dark-strokes-grey-color has-alpha-channel-opacity has-dark-strokes-grey-background-color has-background\" />\n\n\n\n<p class=\"wp-block-paragraph\"><em>WordPress offers a wide range of educational opportunities for people at every stage, from first steps to advanced contribution. Explore workshops, lesson plans, and community-created resources designed to help you build practical skills while connecting with others who are learning and contributing at <a href=\"https://wordpress.org/education/\">WordPress.org/education/</a>.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 29 Jun 2026 20:29:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mary Hubbard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"Open Channels FM: Six Months In: What Open Channels FM Has Been Talking About in 2026\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2555969\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://openchannels.fm/six-months-in-what-open-channels-fm-has-been-talking-about-in-2026/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:197:\"In the first half of 2026, conversations on AI\'s impact, WordPress 7.0 launch, and the importance of the open web emerged. Key themes included rethinking work, community, and embracing uncertainty.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 29 Jun 2026 07:31:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt: Om Links\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=153359\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://ma.tt/2026/06/om-links/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6357:\"<p class=\"wp-block-paragraph\">There has been a lot of excitement about the OmFest idea. If you&#8217;d like to attend or contribute, <a href=\"https://docs.google.com/forms/d/e/1FAIpQLScyY9c5MowPFW6BmIitqaaF3T-ykM_d8eD2pq2XqwSt7N50zg/viewform?usp=header\" rel=\"noopener\" target=\"_blank\">please fill out this form as soon as possible</a> so we can gauge the type of venue we need.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Update: <a href=\"https://thankyouom.com/\">ThankYouOm.com from Michael Galpert pulls together all the tweets, Instagram posts, and blog posts into a beautiful site</a>.</strong></p>\n\n\n\n<p class=\"wp-block-paragraph\">It&#8217;s truly a testament to how Om lived life to see the outpouring of remembrances <a href=\"https://om.co/2026/06/24/1966-2026/\">in comments on the post</a> and <a href=\"https://www.techmeme.com/260625/p50#a260625p50\">around the web on Techmeme</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I do wish he had been more public earlier in his health journey. You never know what you&#8217;ll learn. I&#8217;ll take that as a lesson for myself if I&#8217;m ever in a similar situation.</p>\n\n\n\n<p class=\"wp-block-paragraph\">There have been some great long-form writings about Om:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://daringfireball.net/2026/06/om\">John Gruber ties together Apple, the Yankees, and luggage</a>. &#8220;<em>He not busy being born is busy dying</em>, wrote Dylan. Om Malik wasn’t busy dying even when he was dying.&#8221;</li>\n\n\n\n<li><a href=\"https://brian.blog/om/\">Brian Sirgutz, Curiosity and the Art of Being Seen. On Professor Om &amp; the Malik School for Gifted Omies, Derek Jeter and Truth in Legacy</a>.</li>\n\n\n\n<li><a href=\"https://www.hodinkee.com/articles/in-loving-memory-of-om-malik-friend-writer-venture-capitalist-and-ever-the-believer\">Ben Clymer on Hodinkee</a>. &#8220;Om changed my life. He did it in many ways, often slowly and with subtlety, always with kindness and eminent belief in me.&#8221;</li>\n\n\n\n<li><a href=\"https://staceyoniot.com/thank-you-om-malik/\">Stacey Higginbotham</a> from the original GigaOM.</li>\n\n\n\n<li><a href=\"https://mathewingram.com/work/2026/06/25/om-malik-1966-2026/\">Mathew Ingram</a>.</li>\n\n\n\n<li><a href=\"https://www.nytimes.com/2026/06/26/technology/om-malik-dead.html\">The New York Times did an obituary</a>.</li>\n\n\n\n<li><a href=\"https://runtimewire.com/article/om-malik-taught-silicon-valley-to-read-itself\">Ryan Merket on RuntimeWire</a>.</li>\n\n\n\n<li>Om introduced <a href=\"https://krutal.blog/2026/06/26/om/\">Krutal Desai as his son</a>. &#8220;He had a rare gift of seeing 20 steps ahead while explaining things with remarkable simplicity. He gave wisdom freely, never seeking credit, only wanting to help others succeed.&#8221;</li>\n\n\n\n<li><a href=\"https://susanhobbs.blog/2026/06/27/the-gravity-of-om/\">Susan Hobbs</a>. &#8220;He was a teddy bear to those fortunate enough to know him. [&#8230;] Om created gravity. He was someone you wanted to be around.&#8221;</li>\n\n\n\n<li><a href=\"https://founderthings.substack.com/p/interview-om-malik\">Helena Price shares her thoughts and an old interview of Om</a>. &#8220;If you believe and you can’t seem to do anything other than think about something, you’ve just got to keep doing it. I think the universe has to follow. What’s the point of living if you don’t chase what’s important to you?&#8221;</li>\n\n\n\n<li><a href=\"https://pradeep.md/2026/06/25/om.html\">Pradeep Elankumaran</a>.</li>\n\n\n\n<li><a href=\"https://blog.naveen.com/2026/06/om-2/\">Naveen Selvadurai</a>.</li>\n\n\n\n<li><a href=\"https://explorers.com/my-friend-om/\">Christopher Michel</a>.</li>\n\n\n\n<li><a href=\"https://x.com/jgheller/status/2070267958891524448\">Jonathan Gheller</a>.</li>\n\n\n\n<li><a href=\"https://x.com/mamoonha/status/2070255545643364515\">Mamoon Hamid</a>.</li>\n\n\n\n<li><a href=\"https://boingboing.net/2026/06/25/om-malik-1966-2026.html\">Rob Beschizza on Boing Boing</a>.</li>\n\n\n\n<li><a href=\"https://www.airsugar.com/p/om-malik-1966-to-2026\">Brian Sugar</a>.</li>\n\n\n\n<li><a href=\"https://hugo.blog/2026/06/25/r-i-p-om-malik-%f0%9f%96%a4/\">Hugo Barra</a> on how Om got him to write.</li>\n\n\n\n<li><a href=\"https://everwas.com/2026/06/om/\">Ian Kennedy</a>, also with some great quotes.</li>\n\n\n\n<li><a href=\"https://toni.org/2026/06/25/om-malik/\">Toni Schneider</a>. &#8220;Om was a wonderful person, artistic soul, and original thinker. He was always curious, generous, and warm-hearted.&#8221;</li>\n\n\n\n<li><a href=\"https://seanbonner.com/2026/06/29/death-and-what-we-leave-behind/\">Sean Bonner</a>. &#8220;[H]is feedback and criticism could be sharp – but it was always with the hope that things could be better.&#8221;</li>\n\n\n\n<li><a href=\"https://battellemedia.com/archives/2026/06/remembering-om-malik\">John Battelle</a>. &#8220;Om quickly decided his integrity was more important than the ad dollars he was making with Federated&#8221;</li>\n\n\n\n<li><a href=\"https://winnielim.org/journal/om/\">Winnie Lim</a>. &#8220;Om was one of the very few people in this world I can have an intense conversation about form and content with.&#8221;</li>\n\n\n\n<li><a href=\"https://glass.photo/highlights/remembering-om\">Glass.photo</a>. &#8220;It’s not lost on us that <a href=\"https://glass.photo/om\">Om’s photography</a>, often taken in frozen lands in or around the arctic circle, was the polar opposite of his personality.&#8221;</li>\n\n\n\n<li><a href=\"https://spyglass.org/om/\">M.G. Siegler</a>. &#8220;The true natural born blogger.&#8221;</li>\n\n\n\n<li><a href=\"https://outsidewithacamera.substack.com/p/om-malik-the-path-of-the-one\">Rod Clark, The Path of the One</a>.</li>\n\n\n\n<li><a href=\"https://www.facebook.com/dina.kaplan/posts/pfbid02tiAYzbwam4qZGrtSYquvMUujBFjMzkf8EJFmiUhJHXFt9TYEHmWRrskXagwuxXcsl\">Dina Kaplan</a>, &#8220;Om &#8211; I say as tears come to my eyes &#8211; wanted nothing but to be kind. To be supportive. And to be a friend.&#8221;</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">I know I&#8217;m missing a ton, I&#8217;ll update the above. I also added a <a href=\"https://ma.tt/2026/06/om-forever/\">few more vignettes and pictures to the last post</a>.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-153374\" height=\"453\" src=\"https://i0.wp.com/ma.tt/files/2026/06/IMG_0420-1024x768.jpg?resize=604%2C453&#038;quality=89&#038;ssl=1\" width=\"604\" /></figure>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 27 Jun 2026 16:34:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"Open Channels FM: Why “It’s Dead” Says More About You Than the Tool\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2555736\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://openchannels.fm/pop-the-email-is-dead-bubble/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:143:\"Email isn’t dead. Sure, email marketing might not work for everyone, but it’s still crucial for many businesses and personal communication.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 26 Jun 2026 09:08:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Matt: All Roads Lead to Om\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=153320\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://ma.tt/2026/06/om-forever/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7253:\"<p class=\"wp-block-paragraph\">Yesterday, my best friend and brother from another mother, Om Malik, <a href=\"https://om.co/2026/06/24/1966-2026/\">passed away</a>. </p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">They say that blood is thicker than water, and what we had was way thicker than blood. — Bob Weir</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">Om&#8217;s request was for a small family prayer ceremony. In mourning, that will be all there is. In celebration and tribute, I love that everyone is <a href=\"https://www.techmeme.com/260625/p50#a260625p50\">sharing their Om stories online</a>, like the <a href=\"https://explorers.com/my-friend-om/\">writing and photography Christopher Michel shared</a>, which very much embody the OG spirit of blogging that Om pioneered.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\">A Renaissance Man</h2>\n\n\n\n<p class=\"wp-block-paragraph\">I knew Om contained multitudes, but sitting by his side these last few weeks, I&#8217;ve been amazed to learn how many deep and completely separate communities he was part of. He meant so much to so many, in so many different ways.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Om loved putting on a good conference, and I&#8217;d like to celebrate his life with an awesome event on September 29, 2026 (his 60th) in San Francisco, like an <strong>OmFest</strong>. (Update: <a href=\"https://docs.google.com/forms/d/e/1FAIpQLScyY9c5MowPFW6BmIitqaaF3T-ykM_d8eD2pq2XqwSt7N50zg/viewform?usp=header\">Sign up here</a>!) I&#8217;ll find a space where every community from the many facets of Om can come together. In the spirit of Open Source and co-creation, we can have some booths, flash talks, a gallery of his photography, pen showcase, and whatever other fun ideas people want to contribute. I can&#8217;t wait for the beautiful collision of his tech / journalism / Indian party planner / pen / coffee / shoes / photography circles, and probably some niches I couldn&#8217;t even imagine.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\">A Few Vignettes</h2>\n\n\n\n<p class=\"wp-block-paragraph\">I have so much to say about Om, but right now I&#8217;m working on <a href=\"https://om.co/2026/06/24/1966-2026/\">moderating comments</a> and keeping his website tip-top, so here are a few snippets:</p>\n\n\n\n<p class=\"wp-block-paragraph\">Fundamentally, Om was a lover of humanity. He became a fast &#8220;regular&#8221; everywhere he went. He wouldn&#8217;t just buy coffee, he would also learn the name and story of every barista, the dogs and people in South Park. His deep curiosity and respect weren&#8217;t just for the fine and famous. It extended to every soul that crossed his path. His encyclopedic knowledge and photographic memory created connections not just in San Francisco, but all around the world wherever we traveled. (I need to pull the stats, but we went to five continents together, including Antarctica.)</p>\n\n\n\n<p class=\"wp-block-paragraph\">He loved people and their stories. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"wp-block-paragraph\">Om and I were an odd couple. We met online through forums and email because Om was one of the earliest adopters of WordPress. We finally met in person in 2004 when I was 20 and he was 38. He connected me to the first investors I ever spoke to, Phil Black, who formed True Ventures, and Tony Conrad, and introduced me to Toni Schneider, my business soul mate, who became like a co-founder as the CEO of Automattic in our first 8 years.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And of course on the internet. I don&#8217;t know how we would count, but I would guess Om read at least 1 or 2% of the whole thing.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"wp-block-paragraph\">Om was a voracious learner. I was there when he first used chopsticks, and only a few months later, he knew every sushi restaurant in San Francisco and exactly what he liked at each.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"wp-block-paragraph\">Om is probably in the top ten in the world for finding things incredibly early. That&#8217;s why he has the best usernames! How does one guy get the @om username on WordPress.com in 2005 (user ID 719), <a href=\"https://x.com/om\">Twitter in 2006</a>, <a href=\"https://www.instagram.com/om\">Instagram in 2010</a>? The first WordPress meetup was at <a href=\"https://www.chaatcornersf.com/\">Chaat Cafe (now Corner)</a> in 2005, <a href=\"https://ma.tt/2005/01/meetup-aftermath/\">8 people showed up, and Om was one of them</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"wp-block-paragraph\">One of the biggest lessons I learned from Om is the deep appreciation of craft. When he took an interest in photography or pens, he would somehow find his way to the most obscure, highest-quality expression of that form. &#8220;What Would Om Want?&#8221; is a question I will always ponder. I want to craft products that would make Om proud.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"wp-block-paragraph\">Om&#8217;s last word was &#8220;love.&#8221;</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-153336\" height=\"402\" src=\"https://i0.wp.com/ma.tt/files/2026/06/MCM_9460-1024x681.jpg?resize=604%2C402&#038;quality=89&#038;ssl=1\" width=\"604\" /><figcaption class=\"wp-element-caption\">In a jitney on our trip to India in 2009</figcaption></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-153338\" height=\"402\" src=\"https://i0.wp.com/ma.tt/files/2026/06/om-citizen-1024x681.jpg?resize=604%2C402&#038;quality=89&#038;ssl=1\" width=\"604\" /><figcaption class=\"wp-element-caption\">The day Om became a US citizen </figcaption></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-153340\" height=\"402\" src=\"https://i0.wp.com/ma.tt/files/2026/06/MAT_2822-1024x681.jpg?resize=604%2C402&#038;quality=89&#038;ssl=1\" width=\"604\" /><figcaption class=\"wp-element-caption\">In NYC with the True crew, 2008</figcaption></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-153342\" height=\"403\" src=\"https://i0.wp.com/ma.tt/files/2026/06/MCM_0056-1024x683.jpeg?resize=604%2C403&#038;quality=89&#038;ssl=1\" width=\"604\" /><figcaption class=\"wp-element-caption\">Matching dyed blonde hair, 2016</figcaption></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-153345\" height=\"805\" src=\"https://i0.wp.com/ma.tt/files/2026/06/IMG_0284-768x1024.jpg?resize=604%2C805&#038;quality=89&#038;ssl=1\" width=\"604\" /><figcaption class=\"wp-element-caption\">With a golden heart, 2025</figcaption></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Nothing Gold Can Stay, by Robert Frost</h2>\n\n\n\n<pre class=\"wp-block-verse\">Nature’s first green is gold,<br />Her hardest hue to hold.<br />Her early leaf’s a flower;<br />But only so an hour.<br />Then leaf subsides to leaf.<br />So Eden sank to grief,<br />So dawn goes down to day.<br />Nothing gold can stay.</pre>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 26 Jun 2026 03:02:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Open Channels FM: The Rise of Messaging as the Universal Tech Interface\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2555622\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://openchannels.fm/the-rise-of-messaging-as-the-universal-tech-interface/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:246:\"Messaging is emerging as the universal interface for interacting with technology, simplifying complex tasks into straightforward communications akin to texting, thereby enhancing productivity and reducing technical barriers in digital engagement.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 25 Jun 2026 12:11:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"WPTavern: #222 – Destiny Kanno, Anand Upadhyay, Maciej Pilarski on How WordPress Education Programs Are Growing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=204958\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://wptavern.com/podcast/222-destiny-kanno-anand-upadhyay-maciej-pilarski-on-how-wordpress-education-programs-are-growing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:80884:\"<details>Transcript<div>\n<p class=\"wp-block-paragraph\">[00:00:19] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox Podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, how WordPress education programs are growing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to wptavern.com/feed/podcast, and you can copy that URL into most podcast players.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you and hopefully get you, or your idea, featured on the show. Head to wptavern.com/contact/jukebox, and use the form there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So on the podcast today, we are joined by three WordPress Education Initiative leaders, Destiny Kanno, Anand Upadhyay and Maciej Pilarski.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Together, they have spent years at the heart of WordPress training and outreach, working in roles spanning community education management, plugin development, and credit program administration. Their efforts have helped shape student engagement and university partnerships across the globe, introducing thousands of learners to WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The conversation focused on the current landscape of WordPress education with particular attention to three key initiatives, the WordPress Credits Program, Campus Connect, and Student Clubs.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Each initiative is designed to provide unique entry points for students of all ages and education levels. From high schoolers building their first site in a library to university students earning official credits for open source contributions.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We discussed the different approaches these programmes take. WP Credits ties student work directly to academic credit and mentorship. Campus Connect provides flexible, community driven, events in diverse locations and Student Clubs foster sustainable, peer led, learning within schools and other institutions. We explore how these models feed into each other, building a sustainable ecosystem for ongoing growth in the WordPress community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We also get into the importance of repeat campus partnerships, the need for scalable facilitator training, and the role of recognition, certificates, badges, and public showcases in keeping students motivated and validated in their journey.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;re curious about the growing movement to bring WordPress knowledge to the next generation, or are looking to get involved with education in your local community, this episode is for you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;re interested in finding out more, you can find all of the links in the show notes by heading to wptavern.com/podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so without further delay, I bring you Destiny Kanno, Anand Upadhyay and Maciej Pilarski.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I am joined on the podcast by Destiny Kanno, by Anand Upadhyay and Maciej Pilarski. Hello, one and all. Nice to have you with us.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:29] <strong>Destiny Kanno:</strong> Hello. Thank you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:30] <strong>Anand Upadhyay:</strong> Hello.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:31] <strong>Maciej Pilarski:</strong> Hello.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:32] <strong>Nathan Wrigley:</strong> So a few months ago, back in, I think it was September 2025, I was joined by two of the three participants on the call today. I was joined by Destiny and I was joined by Anand. We were also joined at that point by Isotta, but she&#8217;s not on the call today. We&#8217;ve obviously got a wonderful replacement, Maciej who&#8217;s going to do a fabulous job explaining the bits and pieces here.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But the intention of that episode, which you can find on the WP Tavern website, it&#8217;s episode number 183, was to find out about all of the overlapping education initiatives in the WordPress space. And it was born, I think, largely out of a sense of curiosity on my part, but also a somewhat sense of confusion, because there were lots of things which were going on. Some of them seemed to be slightly overlapping. There was a conflict of names in some cases. So that episode was laying out the groundworks of what has been happening in the WordPress space.</p>\n\n\n\n<p class=\"wp-block-paragraph\">When that conversation finished and we&#8217;d click the stop record button, I said, that was absolutely fascinating. This seems to be moving at such a rate, wouldn&#8217;t it be good to revisit this whole subject in about six months time?</p>\n\n\n\n<p class=\"wp-block-paragraph\">Well, we missed that target, but here we are, maybe eight months later. I think my intuition at that point was correct, because being a close observer of what&#8217;s going on in the WordPress community, I think it&#8217;s fair to say that the educational space has been somewhat turbocharged during the last eight months.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so today&#8217;s episode, with the help of the three people I&#8217;ve just mentioned, is to describe what&#8217;s going on, what&#8217;s changed, maybe some things that have been mothballed, but certainly a lot of things that are new and interesting and have gained a lot of momentum.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But I think, dear listener, the intention of this episode is to get you involved. Is to get to the end of this episode and for your curiosity to have been turned into action. To have gotten you out of your chair, written an email, turned up to an event, helped organise a thing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So please have that in the back of your mind. If you&#8217;re sitting listening to this in a car, at your desktop, there is actual action that could be taken at the end of this. I think the intention of all four of us on this panel would be dearly for that to happen.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Okay, let&#8217;s establish the credentials of the people that we&#8217;re going to be talking to today. So we&#8217;ll just do a little potted bio of you one at a time. So we&#8217;ll begin with Destiny, if you could just tell us a little bit about you, your relationship with education in the WordPress space, I suppose would be apropos.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:06:01] <strong>Destiny Kanno:</strong> Yeah, absolutely. So again, Destiny Kanno. I&#8217;m currently working as an education program manager sponsored by Automattic. And I work directly with the Make WordPress Community Team. And I also work adjacently with the training team as well, because education training materials, they go pretty hand in hand. And I&#8217;ve been doing this now for about four years and, yeah, it&#8217;s just evolved since my original time working on Learn WordPress, and that relaunch that happened, to now, yeah, these wonderful programs that are spreading like wildfire as you said.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:06:37] <strong>Nathan Wrigley:</strong> Fantastic. Thank you so much. Okay, we&#8217;ll move over to Anand for the same sort of introductory moment.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:06:43] <strong>Anand Upadhyay:</strong> Yes. So my name is Anand Upadhyay, and I run the WordPress plugin development company, WPVibes. Apart from that, I&#8217;m very much involved in the WordPress community and I contribute in multiple ways. It can be documentation, it can be Core, Polyglots. But I&#8217;m also keenly involved in the community part, and specifically I can say with the education initiatives, I started with WP Campus Connect in WordPress Campus Connect in 2024. And since then, after that we started joining hands with Destiny and we started evolving this program in a much bigger shape. So that&#8217;s it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:07:16] <strong>Nathan Wrigley:</strong> Okay. Thank you so much. And last, but by no means least, Maciej.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:07:20] <strong>Maciej Pilarski:</strong> Yeah. Thanks for having me. My name is Maciej Pilarski. So I&#8217;ve been doing anything related to WordPress pretty much since 2007, so that&#8217;s been a while. But the biggest breakthrough for me was 2014 when I actually volunteered to WordCamp Europe in Sovia, Bulgaria. That opened my eyes to the whole community, everything that is happening around WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And since then, pretty much I&#8217;ve been working for multiple companies from the WordPress ecosystem. I joined Automattic in 2016. For many years I&#8217;ve been a Happiness Engineer, and since October last year, I&#8217;ve joined Isotta as one of the admins of the WordPress Credit program. And since that time, I will have been helping her out to grow that initiative.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And Destiny mentioned, it spreads like fire because at that time we had six universities onboarded, now we are at 21. The 21st, we got it after WordCamp Asia actually through a connection made there. And it&#8217;s our first institution from Africa, from Uganda. A huge shout out to Stephen Dumba, who I connected with during the event. And after that, pretty much a week after we signed our first partnership from Africa. So we&#8217;re actively growing and getting new institutions on board.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:08:42] <strong>Nathan Wrigley:</strong> Thank you so much. Gosh, there was an awful lot in there, wasn&#8217;t there? That was really interesting. We&#8217;ll try and unpack quite a lot of that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Firstly, a sort of slightly personal message from me. I don&#8217;t usually reveal much about myself on this podcast. I take the position that I&#8217;m a, kind of like an interested party, but don&#8217;t really give much of my own thoughts. However, this is different because I cannot think of a more interesting, meaningful, moral, let&#8217;s go with that word as well, use of time than educating people. It simply is the most profoundly useful thing to do with your life.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Now, obviously people will have different opinions about that, but the juxtaposition of free open source software, in this case WordPress, and education is a real sweet spot for me. I just think that is such an amazing thing to be involved in, to have going on in the background.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you think about it, an open source project, like how many open source projects have this level of stuff going on in the education space, this real international footprint. Things going on which we&#8217;ll find out about in a minute. It&#8217;s really fascinating.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I am sure that the listenership to this podcast, the vast majority of people listening will never have encountered much of this before. Maybe they&#8217;ve seen stuff on Learn because they want to technically learn about WordPress in an online capacity, but we&#8217;re going to be delving into real world events affecting real adults, real youngsters.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so anyway, that&#8217;s my little bit at the beginning, just how curious it is that the project is so big that we&#8217;ve got this international footprint of education. And so I suppose what we should do right at the beginning is lay out the different initiatives and just name them, and try to figure out how they differ from each other. Just so that we&#8217;ve got some kind of awareness.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I don&#8217;t know which one of you wants to take that, but if maybe you take one each or something, I don&#8217;t know. If we just want to lay out the, just erect that tent basically so that we know what the initiatives are called, and how they differ from one another. So I&#8217;ll open that up. Whoever wants to step in.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:10:48] <strong>Maciej Pilarski:</strong> I can start with the Credits Program. So the Credits Program is based, it&#8217;s a contribution based program, internship, initiative by the WordPress Foundation that connects higher education students with the global open source community. So basically it&#8217;s an opportunity for the students as part of the educational curriculum to contribute to the WordPress community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">There are two types of courses that the students can do. One of them is 50 hours, the second one is 150 hours. Usually the students do that during a full academic semester. And as part of that, students are first onboarded into the WordPress ecosystem and the wider open source ecosystem where they learn not only about WordPress, but open source as a whole, and how crucial it is for the internet.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Then the second phase is picking the contribution area to which they would like to contribute. All the contributions areas basically are the ones that are listed at make.wordpress.org. So any team that is listed there, students can pick from that area. During that phase, they work on a particular area that they have selected.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And finally, during phase three, they wrap up the whole achievements, the contribution, what they did, they publish a final post. And what is also very important as part of the credit scores, students have also assigned a mentor from the WordPress community that guides them through the whole process. We don&#8217;t leave them alone. We connect them with actual mentors from the WordPress community that are vetted by us, that guide them through the whole journey into the contribution and the whole WordPress ecosystem.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So it works on multiple levels. For me, this connection is also special because it builds this bridge between the previous generation of WordPress contributors to the new one where they are introduced and can start working on any fields of contribution.</p>\n\n\n\n<p class=\"wp-block-paragraph\">What is also important is that this is not limited to technical universities. Pretty much any type of university can participate in the program. The first university that we started with was University of Pisa, and it was the humanity studies. So the students from humanity field were the first group who started the Credits Program. There&#8217;s room for pretty much anyone from any field.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:13:18] <strong>Nathan Wrigley:</strong> Okay. There&#8217;s a lot there. Wow. I&#8217;ve just been taking notes and I&#8217;ve almost filled an entire A4 page. So WP Credits, the WordPress Credits Program, I guess the name sort of gives it away. The idea here is that you trade time for university or higher education credit. So credit being, I suppose if you were to atomise your three year degree, you might do, I don&#8217;t know, 12 modules or something like that. The idea is that one of those modules, perhaps it&#8217;s more, becomes something in the WordPress, but also curiously the free open source software space as well. I didn&#8217;t actually know that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The idea is that you link up with real world institutions. So the first one was Pisa, and maybe we can get into which other ones have come along. And in exchange for 50 hours or 150 hours, you will be given that credit, which can then go to the overall awarding of a degree or whatever it is that you are hoping to get.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You&#8217;re then linked up with team members, WordPress community team members who will mentor you and shepherd you through this process. And the idea is that it culminates, I think you said in a final post, which I suppose in a sense is a bit like a dissertation or something like that, you sum up all the different bits and pieces. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:14:29] <strong>Maciej Pilarski:</strong> Once that happens, the students also receives an official certificate from the WordPress Foundation, signed by Matt himself, that certifies that they completed the course. And what is also important to know, the whole progress through the course and what they did during the course, it&#8217;s also stored on the wordpress.org profile. So any contributions that they did, for example, photos that they&#8217;ve uploaded, this all will be visible on the wordpress.org profile. And they also receive a special badge dedicated to students who graduated from that program.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So it really gets them started into the WordPress ecosystem, and at the same time creates something like a small portfolio for any future company that would like to, for example, hire them. Because they have a proven history of contributing to the ecosystem.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:15:20] <strong>Nathan Wrigley:</strong> Okay, so that&#8217;s an interesting quid pro quo, isn&#8217;t it? So the idea is you do all this work, which on the face of it, I suppose looks very philanthropic, you know, you&#8217;re giving up your time, but you get a real thing at the back end of it. You get a certificate. You can then presumably apply for jobs and indicate, okay, I&#8217;ve done this, I&#8217;ve contributed in this meaningful way.</p>\n\n\n\n<p class=\"wp-block-paragraph\">What I think is really interesting there, and it kind of gets lost, I&#8217;ve worked in education in the past and I know the red tape that&#8217;s involved in doing anything in the education space. There is so much red tape. And I can only imagine what&#8217;s happened in the background to enable these kind of things. You know, the back and forth, the tennis of emails that go on and on and the proof that&#8217;s required to categorically show that this thing that we are doing is worth something. You know, it&#8217;s not just this Mickey Mouse. We use that expression, Mickey Mouse kind of qualification that really, it doesn&#8217;t actually require any hard work. It&#8217;s just there, nothing really in it, but you get an accreditation anyway.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I can only imagine the hard work that has gone in every single time you touch a new institution, trying to convince them that this is legitimate, that this is real. You&#8217;ve just kind of glossed over all of that by just describing what is in existence, not necessarily what has gone on to make it happen. I know that there&#8217;s probably more than the three of you involved in this, but my profound thanks for all of that hard work, which presumably is utterly and completely invisible. And I can only imagine what&#8217;s going on there. So yeah, thank you for all of that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:16:54] <strong>Maciej Pilarski:</strong> Thank you for that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:16:54] <strong>Nathan Wrigley:</strong> So that was WP Credits. So that was one wing of the things that we&#8217;re going to discuss today. Should we move on to another one and maybe somebody else wants to take the helm?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:17:03] <strong>Anand Upadhyay:</strong> I think Destiny can take Campus Connect and then I will take Student Clubs.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:17:06] <strong>Nathan Wrigley:</strong> Okay. Destiny, let&#8217;s move over to you and see what you can tell us about something different.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:17:11] <strong>Destiny Kanno:</strong> Yeah, so I&#8217;d love to tell you more about WordPress Campus Connect. And the way we ended with WordPress Credits, I think is also very critical to the story of Campus Connect because, you know, it started with Campus Connect first, and that&#8217;s how organisers such as Anand and Pooja like were able to get those connections with the universities through being boots on the ground, you know, having those relationships. Proving through action that these activities that we&#8217;re doing with the students are having real impact and are showing real results.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Slowly building up these kind of case studies in a way has helped open a lot of doors, especially with Campus Connect now, we&#8217;ve done a lot of events, especially since we last talked. Like I think this year alone, we&#8217;ve already had 22 Campus Connect events. So, like it&#8217;s not even half the year and it&#8217;s quickly becoming one of the biggest run events, WordPress official series.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But these events are like a way of opening the door, right? Hey, here&#8217;s a free learning opportunity for your students. And as you said, like the red tape is there. A lot of institutions are like, wait, so what&#8217;s in it for you? Why is, there&#8217;s a little bit of dubiousness sometimes in the reaction, right? You&#8217;re going to give your time to educate our students, why? But once they see, it&#8217;s like, no, we really are just passionate about spreading WordPress, showing students what&#8217;s capable with their website, how it applies to different skillsets as well. Like it&#8217;s not just for coders, it is for marketers, it is for designers.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You know, there&#8217;s so many career opportunities that once we just get the foot in the door and we&#8217;re able to showcase that, a lot of institutions are like, okay, now I get it. I do want to highlight in Anand&#8217;s case, like they&#8217;re going to have their third WordPress Campus Connect in Ajmer this year. You&#8217;ve got repeat institutions. I&#8217;ve heard you also have institutions that are like, when are you going to come to our place and teach WordPress? You know, once the fire is lit and people see how bright and shiny it is, like people want to get involved.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But as you said, like getting it to click for people, that is like the most difficult part. And I&#8217;ll give an example of, right now in Japan, we had our first WordPress Campus Connect event on the 9th of May. So I&#8217;m like, woo hoo. Like it finally happened. But we have this community in Japan that is like very passionate, very active. So when I first was like introducing the concept of Campus Connect, people were like, okay, but like how do we do this? What&#8217;s it about? It takes like a lot of presentations, a lot of going to people in person and talking. Helping them even shape the conversation that they&#8217;re going to have with the institution to sell this amazing gift of WordPress on their campus.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And after this one on the ninth, like now we have a case study in Japan that others can now use to be a starting point for those conversations going forward. So I think, once you have that one step, the gate just slowly opens until it&#8217;s just, the doors bang open in each way. But yeah, we&#8217;ve seen really great success with Campus Connect and it&#8217;s just like honestly, it just keeps growing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:30] <strong>Nathan Wrigley:</strong> Can I just ask a quick question? So I just want to draw a very clear line for everybody that&#8217;s listening to this, what the difference may be between Campus Connect and WP Credits. Because from the description that we&#8217;ve had so far, it may be that you&#8217;ve fallen into the trap of thinking, well, they sound like they might be the same thing. So could you just, Destiny, just tease out where Campus Connect differs? Maybe in the nature of the event, the timing of the event, the availability, the age group, those kind of things that separate WP Credits from the Campus Connect initiative.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:21:02] <strong>Destiny Kanno:</strong> Yeah. Thank you, that&#8217;s like a really great distinction to make. So whereas WordPress Credits is geared toward higher education, Campus Connect is geared toward, honestly any level of students as long as they&#8217;re able to browse the web safely, and enjoy and participate.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So that means, Elementary school students now are pretty good at devices. High school students, college students, vocational students. We honestly kept the door pretty open in terms of what a campus means. We&#8217;ve even had a Campus Connect event in Uganda in a library, the Lira Public Library because students were able to go there right?</p>\n\n\n\n<p class=\"wp-block-paragraph\">We were trying to make it as barrier free for students wherever their campus is. And so that&#8217;s, I think, the main difference. It&#8217;s more wide ranging in terms of who can participate as a student. And then also the fact that it could be a one-off event, so a one day event. A lot nowadays are multiple day events, they&#8217;ll maybe go two times out of a month, or a couple days consecutively. And then after that it&#8217;s up to really the organisers in the institution whether or not we have another addition on their campus the same year, or the next year.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:22:15] <strong>Nathan Wrigley:</strong> I&#8217;m going to tease out a few things. I just want to point out to, me as an English person, that is to say, not an English speaker, but somebody from England, campus has a really defined definition, and it&#8217;s usually bound to a university. Whereas it sounds like the description here, campus literally means the place where education happens, not it&#8217;s 18 years old and older, you know, people doing degrees, bachelors and PhDs and that kind of thing. Basically, if there&#8217;s an institution somewhere, that&#8217;s what the campus is in this case. Okay.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So the WP Credits program sounds like you forge your relationship with the university, and correct me if I&#8217;m wrong, it sounds like it takes place inside that institution, and it&#8217;s part of that program and what have you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The Campus Connect initiative is much more ad hoc. It could be a one-off, it could be monthly, it could be inside a library, it could be inside the school, it could be an inside an institution. It feels a bit more like, I don&#8217;t know, a WordPress Meetup, but geared towards a younger audience or something like that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And the minimum age requirement is really driven by your capacity to type on a keyboard and hold a mouse and those kind of things. And that&#8217;s kind of curious to me because I think my educational experience was always younger children. It&#8217;s really interesting how patterns are laid down at a very, very early age. Patterns that go on into much later life get laid down, typically at incredibly young ages. So this is fascinating for digging into that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And it&#8217;s not just about, say, the code, it sounds like code is on the menu, but it could be about marketing, it could be about design. Basically the gamut of anything online, CMSy, those kind of things. Okay, is there anything you want to add? Did I misunderstand anything there, or misstate anything there?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:24:02] <strong>Destiny Kanno:</strong> No, I think you&#8217;re completely right. We&#8217;re trying to convey that WordPress isn&#8217;t just a blogging software that I think is still a lot of people have a mentality of. Like there are many ways to utilise it that goes beyond that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And one thing I did want to add are a couple numbers. So since WordPress Campus Connect became official in May of 2025, an official WordPress event series, I should say, we&#8217;ve had 42 completed events, with 71 participating institutions, and over 5,500 students have been reached.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:24:37] <strong>Nathan Wrigley:</strong> That&#8217;s something else. 42 events, 71 institutions, and I think you said five and a half thousand individuals. Good grief. I don&#8217;t know what the measure of success is for this, but that feels like success to me.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I mean, imagine turning up to a WordCamp, like a flagship WordCamp and five and a half thousand people descending on you. You&#8217;d feel slightly overwhelmed. That&#8217;s a lot, isn&#8217;t it? Gosh, that&#8217;s pretty remarkable. Wow. Congratulations.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:25:05] <strong>Destiny Kanno:</strong> And the majority, the outcome, the students make a website. So we could almost count those students as also new WordPress websites that are live now on the web. So within a year, organisers around the world have been able to make that happen.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:25:19] <strong>Nathan Wrigley:</strong> Could I just perhaps draw another distinction as well, just very quickly, because it sounds like the WordPress Credit system, because it&#8217;s binding itself to institutions, it sounds like there might be more paperwork going on there, and maybe more high level meetings that need to take place. Whereas Campus Connect feels much more community driven. It&#8217;s the kind of thing that, quite literally, anybody listening to this podcast with a fair wind could have one of those going in a handful of months. If they&#8217;ve got the right initiative and they can find the audience for that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Again, is that about right? There&#8217;s sort of more opportunity to become involved with the Campus Connect initiatives. You don&#8217;t need to have that academic background or have a point of contact at a university. You basically just need a building, some interest and a bunch of students.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:02] <strong>Destiny Kanno:</strong> Yeah, the key thing is, you know, having a real connection to the campus that you&#8217;re going to present at. But you&#8217;re exactly right. We tried really hard to lower the barrier to organise these events. Because I don&#8217;t know if you&#8217;ve organised a WordPress event before, there&#8217;s kind of a lot of hoops you have to jump through. And we&#8217;re like, okay, how can we think about this in a different way?</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I think that also has positive repercussions for how we organise other events too, that are, changes are being thought about too so that we can enable people and empower them to put these events, instead of bogging them down and process and a little bit of bureaucracy to say.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:38] <strong>Nathan Wrigley:</strong> So what&#8217;s really curious about that as well is we&#8217;re all in different parts of the world, aren&#8217;t we? People on the call today are in Japan and I&#8217;m in Europe and, Anand, are you in India? I think.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:47] <strong>Anand Upadhyay:</strong> Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:47] <strong>Nathan Wrigley:</strong> Yeah. Each of those events, I guess would look quite different. The kind of nature of the attendees, the nature of the kind of building it might be in, the institution. And it really is, you just grab what&#8217;s around you I suppose, and work with that. If you&#8217;ve got a connection to an institution, you can go for it. Maciej, I feel like I crosstalked you. I think you wanted to say quite a few times and I&#8217;ve just interrupted. I&#8217;m very sorry.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:27:08] <strong>Maciej Pilarski:</strong> No worries about that. So I wanted to add that those initiatives set backgrounds for each other. Because in some uni institutions, the interest sparks with a Campus Connect event, and that gets the institution interested in those initiatives, which sets background for WordCamp Credit.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And it happens also the other way around, where we start with an institution that starts credits and then we get the students interested in WordPress in general, the community, which leads to a Campus Connect event during the Credits Program. What is important is that those initiatives don&#8217;t compete with each other. They support each other.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:27:51] <strong>Nathan Wrigley:</strong> Right, so there&#8217;s a lovely virtuous cycle there, isn&#8217;t there? Where the two things can be going on in harmony, one promoting the other and they&#8217;re definitely not in competition. Okay. That&#8217;s really interesting.</p>\n\n\n\n<p class=\"wp-block-paragraph\">One final question on Campus Connect, and I&#8217;ll direct this at Destiny, just because she&#8217;s been handling that. With the WP Credits thing, there is this moment where you hold the certificate in your hand and you go, yay, did it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Is the same thing true of Campus Connect or is it more of a show up to the one event, you know that you did that, that was great, you can file that away in your own head as a thing? Or is there some sort of accreditation, or certificate giving, or badge giving, or profile updating that might go on on wordpress.org? Is there any sort of thing that the attendees receive, and I suppose that the people that are organising might receive as well?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:28:37] <strong>Destiny Kanno:</strong> Yes. So we do have a certificate of participation that students can receive signed by WordPress Foundation Executive Director, Mary Hubbard. And that just needs to be requested by the organisers ahead of time, because we need to get the signature and all that. So yes, they can come away with that. And we&#8217;ve heard really positive things about that, like it motivates them. They&#8217;re like, yeah, I did something, which they did.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:29:01] <strong>Nathan Wrigley:</strong> There we go. That was WP Credits and WP Campus Connect.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Can I just say at this point, dear listener, if at this point you&#8217;re thinking hang on a minute, there&#8217;s a lot going on here, don&#8217;t worry, there&#8217;ll be show notes. If you go to the WP Tavern website, there&#8217;ll be show notes. I&#8217;ll try to list out as many sensible links to get you to the root of each one of these initiatives, so that you can begin your journey and fan out from there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I&#8217;m not sure what episode number this will be, but if you just go and search for, oh, I don&#8217;t know, Destiny or Anand or Maciej, you could probably find the episode that way. And all the show notes will contain all of the links.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Right, in which case, I think it might be Anand&#8217;s turn. What have you decided to take on Anand?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:29:39] <strong>Anand Upadhyay:</strong> So I will be sharing my thoughts on the third part of this whole education initiative ecosystem. So that is a Student Club. Just a few minutes before you were giving the analogue of meetup with this Campus Connect. So I would like to share the same analogue with us because we are more accustomed with like other terms of WordCamps and Meetups and contributer days.</p>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress Campus Connect is kind of like a WordCamp happening in the campus, because it&#8217;s like a big day event that holds everything happening, different kind of sessions, maybe workshops happening. So I would compare it with that thing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And same way, credits thing, Credit Program is kind of like ongoing contribution series because more focused on the contribution part because the student devote 150 hours of their program. A lot of period goes to the contribution.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And now the same way we, if we talk about the Student club, it&#8217;s similar to like the Meetups that we have. But these are the in campus meetups for the students and by the students. How do things get started? Like the Campus Connect introduce the WordPress to those campuses and to those students, but since most of the campus, it&#8217;s a once in a year event. So once this event has sparked something about the WordPress in the students. So keeping that momentum going on, that&#8217;s where the Student Clubs come in.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So with the Student Club, it&#8217;s kind of like, as I mentioned, it&#8217;s like an in campus meet program. So a student can gather themselves, they can form a club and a couple of students can be nominated as club organisers, student club organiser from their campus. And then they organise the in-campus events, maybe like once in a month or twice a month, depending on academic calendar. There are a lot of hurdles in doing those things continuously.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But they usually do once or twice a month. They do a kind of a meetup in their campus. The students gathered together. They learn from variable resources available from WordPress. And from those resources, they share with the other students. It&#8217;s kind of a group learning, group study, that we use. Education live, we always do that. It&#8217;s kind of a group study. They&#8217;re learning from themselves. If someone has learned something, they are helping others to learn those things.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I would just like to give some of the examples from my city. There are multiple Student Clubs are going on. When we went to the campus, we just taught like a small group of students about the WordPress, because we&#8217;d have some limitations of the resources, of the setting arrangement. We cannot call all the students of the campus and, okay, come together and I have a amazing workshop. So we have given the WordPress walk through to the limited number of students.</p>\n\n\n\n<p class=\"wp-block-paragraph\">After that, they form a Student Club in their campus because they got very much interested. Then the first session they did was like, they started teaching to their juniors, like the students who have just entered the campus. They took a session for them. So they told, whatever we have told them, they have taught the same thing to the juniors.</p>\n\n\n\n<p class=\"wp-block-paragraph\">After that, in the next few session, they experimented different things. Like in some session they&#8217;re just doing a fun quiz around WordPress. And in some sessions they are doing a kind of like a, I would say like a hackathon kind of thing. So they are just picking up a website. Or you can, just similar to the speed build challenge that Jamie do. So they have just one website open on the screen and everybody&#8217;s like cloning that website.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So there are different ways students are engaging through those student clubs. So it is helping to keep the momentum going on so that the student keep learning about WordPress and they are also connecting with the community members for the guidance about how they can learn more. What should they learn next if they are sharing their experience. Like we have covered these things and, what should we go next?</p>\n\n\n\n<p class=\"wp-block-paragraph\">And in the recent WordCamp Asia, they&#8217;re also one of the Student Club lead from my city. She joined the event and there are conversation with the, like other community members who has offered them like, okay, we can come to your campus, or we can do, have a webinar for your campus where we can teach you particular subjects, particular topics. Maybe they can talk about SEO, maybe they can talk about plugin development.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So this is also opening the horizon for them, to learn from people across the world. So that is how the Student Clubs are happening. The examples I&#8217;ve gave, again, from my own city because I&#8217;m closely mentoring them, but there&#8217;s similar things are happening across the world.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So it is helping to create a kind of sustainable environment for the long-term sustainable environment in the campus. So the next time when we go to that campus, we are not going to teach like the basics of WordPress, because we want like, the ecosystem should be built within the campus, so every student know about the WordPress. Because last time when we went to the campus, we have to tell everything about WordPress because why you should learn WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So the Student Clubs, my ambition is that, wherever the Student Club is from, next time a Campus Connect event is happening, next time we should not tell them about what is WordPress and why they should learn this thing. There should be already a sustainable ecosystem.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I feel that all these three programs are like very much interconnected. And the real impact of these programs, we will be able to see in the next two or three years. And there will be a regular ongoing activities around WordPress in the campus.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And these are also kind of a balance program as well. Like the Campus Connect is introducing WordPress to the students, Credits Program is motivating them more towards like the contribution part. And I would say that Student Clubs is more inclined towards getting new users to the WordPress. Because if we keep on focusing on the contribution, contribution, but if we discard the like increasing the number of new users, so we are not going to win. We need a balanced state.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The Student Club is trying to, learning how to build website, how to mastering the skills of the WordPress. And later on, many of them are going to join the contribution part as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So this whole ecosystem is built around bringing more people to the contribution, bringing more people to use WordPress, build websites, as in, for the individuals as a business as well. So that&#8217;s how all these three programrs are very much interconnected, and growing together fast.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:35:16] <strong>Nathan Wrigley:</strong> It feels like, of the three things that we&#8217;ve talked about, so WP Credits, Campus Connect, the Student Club, this final one that you&#8217;ve just covered, it feels like that&#8217;s got a very flat hierarchy to it. In other words, there&#8217;s like this peer learning. So it feels like more or less anybody can show up and demonstrate anything, which might then lead to somebody else thinking, okay, that was interesting, I&#8217;ll take on next month&#8217;s one because I&#8217;ve now seen that&#8217;s doable. Less hierarchy, if you know what I mean? So a much more flat structure.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:35:45] <strong>Anand Upadhyay:</strong> Because when we started Campus Connect, we also get a lot of attraction in the local community as well. And people join our Meetup groups. But then it becomes difficult for us, how to plan about the topics for our meetup. We have some experienced professionals coming in. We have some students coming in, and we plan the topics that suits the professionals. The student will feel like, okay, what&#8217;s they&#8217;re talking, we are not getting anything in our mind. If we bring the topics, very basic topics and the professionals who are joining the community meetups, they&#8217;ll feel like, okay, these are very basic stuff, why am I coming here?</p>\n\n\n\n<p class=\"wp-block-paragraph\">Student Clubs giving them their own platform, giving them a own opportunity. Okay, these are all the familiar faces. It is also giving the opportunity to come on the stage, come onto the stage and get out of your fear as well. It is also generating leadership qualities in them. Okay, we have to keep this momentum going on and we have to keep the activities going on. So there are a lot of ways, apart from learning WordPress, there are a lot of other ways it is helping the students as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:36:40] <strong>Nathan Wrigley:</strong> When you have to stand up in front of a bunch of people and deliver something, obviously there&#8217;s a whole bunch of us that are just really confident at doing that, quite happy to stand up and do that kind of thing off the bat. But equally, there&#8217;s people for whom that is just the most terrifying experience possible. You know, standing up in front of two or three people, oh boy, you know, anything above that is just off the books.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I was just wondering about that, whether or not there&#8217;s, in this particular style of event, the Student Club, whether there is a growing corpus of, I don&#8217;t know, previously done topics or topic suggestions or slide decks or anything like that, which might enable people to feel that level of confidence? I don&#8217;t know if that&#8217;s something which is being put together. Just resources which enable somebody who doesn&#8217;t have the confidence, let&#8217;s go with that word, who then may gain that confidence. And I&#8217;m going to pass this to Destiny because she&#8217;s waving her hand.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:37:30] <strong>Destiny Kanno:</strong> I was really hoping I could shamelessly plug this project. This is like, you&#8217;ve said the most opportune thing. So I&#8217;m actually developing right now what I&#8217;m like tentatively calling the Meetup Activity Library. It comes with like kits on certain topics. So for example, WordPress Playground was the first one I built. But it comes with the facilitation guide, which is a doc. So the facilitator can read through, understand the steps they&#8217;re going to go through in the activity, how to pace it. And then a presentation deck which they would display, if that&#8217;s available to them, to the folks that they&#8217;re presenting to. And it&#8217;s a hands-on activity only. So it&#8217;s not only presentation. The facilitator of course guides and talks them through things, but then people are getting hands-on experience with that topic along the way.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:38:16] <strong>Nathan Wrigley:</strong> That is a beautiful remover of barriers, because I think just having that little document, that little crutch, you don&#8217;t have to feel that you, okay, I&#8217;ve got to come up with a topic. Not only have I got to come up with a topic, but then I&#8217;ve got to research the topic, deliver the topic. If you can have it all on a thing that you can crib from, I don&#8217;t know, it just arms you with that confidence as you walk in. I think that&#8217;s such a brilliant topic. And, Maciej.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:38:40] <strong>Maciej Pilarski:</strong> Both Destiny and Anand mentioned two keywords, sustainability and facilitator. The goal of also getting all those educational initiatives going is also create in a sustainable way. We&#8217;re not pushing for numbers, but growing them in a smart way where we don&#8217;t get too many students so we get overwhelmed. We need to have enough mentors to accommodate those students, and also enough facilitators to be able to scale the program, to grow it in the future.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And it&#8217;s exactly what Destiny is now doing, the Facilitator Training Program, which gets more people from the educational sectors, community organisers, everyone on board, to jump on those educational initiatives and help us to grow. Because the number of every, all those students involved in participating in those programs is increasing and we need to be able to accommodate them. And through the Facilitator Training Program, this allows us to do that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:39:42] <strong>Nathan Wrigley:</strong> It&#8217;s so interesting in open source software spaces as opposed to corporate spaces. I suppose the metric of success for anything like this in the corporate universe would be how many people showed up and gave us money in exchange for this knowledge or, you know, something akin to that. Basically a metric of humans in a room and money gained. And of course, the measurement of this is so not that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I did wonder, Destiny obviously very proudly rattled off the statistics for Campus Connect, you know, the five and a half thousand attendees and all of that. I wondered if there were success criteria of some kind in the background, which guide you. You know, it&#8217;s not like, okay, well we didn&#8217;t meet that we&#8217;re going to abandon it all. But more, things like you would like to see happen, so aspirational goals. It sounds from what Maciej was saying that maybe the attendance growing slowly over time is some kind of measure of success. Maybe there is none of that, but I&#8217;ll just open that one up to see if you want to take that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:40:38] <strong>Destiny Kanno:</strong> I think one definite measure of success is repeat events on certain campuses. So if the campus is saying, we love that, please come back, or please come again soon. I think that is a really great indicator that, not only did the students get something great out of it, but the school believes in it. And that&#8217;s what we want to do. We want to create these systems that, not only bring people into WordPress, but also continue this cycle of, you know, growth within the community, but also ownership by the institution.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Another measurement of success is the institution is like, okay, great, how do we learn how to do that ourselves? So we have some folks now working in the institution that are organising WordPress Campus Connect events that are helping facilitate these Student Clubs. So the faculty and educators themselves, they&#8217;re directly getting involved. And that for us as community members too, whose volunteer time is quite limited, as Maciej was saying, like it is a great multiplier that makes everything much more sustainable.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:41:45] <strong>Maciej Pilarski:</strong> So from the WordPress Credits perspective, we don&#8217;t hope all the students to turn into contributors. That would be amazing but that might not happen. I can share with you some numbers. So currently we have 450 students globally enrolled. For the whole program so far, 75 graduates.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We hope that some or as many as possible of those graduates who completed the program will stay and become active contributors to the WordPress community, stay engaged.</p>\n\n\n\n<p class=\"wp-block-paragraph\">That&#8217;s one of the goals we are aiming for the Credits Program, to not just get this done, but this is building the next generation of contributors. We know that like we are ageing, we&#8217;re getting older every year. We are not getting younger, unfortunately. Getting those students staying in the community allows us to build those next generations of WordPress contributors that will also have completely different perspectives to how the community functions, how it was built.</p>\n\n\n\n<p class=\"wp-block-paragraph\">What brought us here might not move us forward. So these new students will bring us this new, fresh perspective of how they would like the community to function and move it to the future, to be current, to stay up to date with what&#8217;s happening globally.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:43:00] <strong>Anand Upadhyay:</strong> That&#8217;s why it&#8217;s very difficult to like measure the impact in numbers because how it is impacting in the longer term. But yeah, it&#8217;s going to impact. And I would say also, like Destiny mentioned, one of the metrics is like this campus is willing to have the Campus Connect again and again in the campus.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I just want to share one more. Like I just recently got a call from one of the faculty coordinators from one of the campus where we have a Student Club. And now they have like two months of vacations. And he called me like, okay, now the vacations are going on, students will not be here, so what can we do for the students to keep their involvement with the WordPress in those two months? So can we do something online? Can we do something like this?</p>\n\n\n\n<p class=\"wp-block-paragraph\">When we get these calls, these kind of communications, that these are interactions that we have, this gives us a sense of like accomplishment. Okay, yeah, we were able to create some kind of interest in the students. Because we cannot expect that if we are going to like any campus and 100 or 200 students are participating in our Campus Connect, they are all going to jump into the WordPress. They are getting a lot of different kind of opportunities as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">There are other technologies as well, which are, some students are going into that, some students are going into that. But we are showcasing the WordPress as one of the career opportunities. And they have a choice of multiple options, so they will choose what they do. But yeah, the impact will be seen in the next few years. Just like Maciej said, mentioned that he went to the WordCamp as a volunteer and it&#8217;s bring him into the community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And the same is with me. I attended the WordCamp and just after coming out of the WordCamp, I started the Meetup group in my city. So I got inspired from that. So that is a result of that WordCamp. And that cannot be measured in the numbers. That can only be sensed when we are doing this kind of conversation. Okay, that WordCamp helped me, that WordCamp helped me.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The same way in future, these students who will join the community or the WordPress industry, they will be talking about, okay, I got first introduced about WordPress through a WordPress Campus Connect event or I got introduced to the contribution through WP Credits Program. So when these conversation will be happening in the future, then we will say that those are the real metrics that we are looking for.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:45:00] <strong>Nathan Wrigley:</strong> That&#8217;s really interesting, and I like that. It sounds like there&#8217;s not so much a focus on statistics, you know, literal, brutal numbers, more kind of playing it forwards and measuring the impact over many years, not, you know, a handful of months into the future.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:45:15] <strong>Destiny Kanno:</strong> So yes, we&#8217;re not like, okay, here&#8217;s our KPIs, you know, and here&#8217;s our hard metrics. But one thing I really noticed that our community is, it could be better at doing, is just talking about what happened. Because then you hear all these success stories and there are numbers in that. So like for example, Ajmer again, Women&#8217;s Day event this year. 50% of tickets sold were to students. And that&#8217;s directly because of the involvement in going to these campuses and teaching WordPress. And I&#8217;m like, that&#8217;s amazing, that&#8217;s direct injection of 50% youth into the WordPress community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:45:52] <strong>Anand Upadhyay:</strong> And they sold out so fast.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:45:53] <strong>Destiny Kanno:</strong> And they sold out really fast, yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:45:55] <strong>Anand Upadhyay:</strong> The organisers were hoping like, now we have to pitch out to sale our tickets. And they have planned a social media campaign around that. Okay, we will be periodically pitch a student on the social media to encourage the ticket purchase. And within one day, we sold out. And the whole social media campaign was like their whole planning was gone. We don&#8217;t have tickets.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:46:14] <strong>Nathan Wrigley:</strong> It&#8217;s really interesting that there&#8217;s all this success going on, and yet, as Destiny said, it is hard to get that discovered. Maybe it&#8217;s a case of shouting louder about the previous success. Maybe things like this podcast will help in some small way for things like that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But I know what you mean. There&#8217;s a lot of people talking about the code, and there&#8217;s a lot of people talking about the plugins and the themes and whether or not we&#8217;re going to get collaborative editing in version 7 or 7.1. All of that seems to suck up all of the oxygen in the room. And yet, without a throughput of, let&#8217;s go for young adults, coming into the WordPress space, there&#8217;s not really a great deal of hope for a project over decades unless we get people of a much younger age beginning now. And I&#8217;ll just hand the torch to Maciej because I think he&#8217;s got something to add.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:47:05] <strong>Maciej Pilarski:</strong> But this is also changing because at WordCamp Asia, we were able to introduce the educational table during the contributor day. And I&#8217;m also organiser of WordCamp Europe that&#8217;s going to happen really soon in two, three weeks, beginning of June. And during WordCamp Europe, we will also have a contributor table, dedicated to education, but for the first time also educational track.</p>\n\n\n\n<p class=\"wp-block-paragraph\">During the second day, we will start the whole day with topics related to education. We will have a discussion panel rethinking learning in WordPress that Mary will be participating. And later in that afternoon, we will have actual students, who take part in the program. Sharing the experience, presenting the results. Not only students from universities, but I&#8217;m also leading a group of high school students who&#8217;ve been working for the whole past semester with a teacher on some projects related to WordPress building websites. So they are super eager and excited to show them.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We will also showcase some students, teachers stories, how both of those sites motivated each other, learn from each other, and basically help us keep growing the community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So WordCamp Europe definitely will feature some of those things. And we&#8217;re slowly introducing more and more those things into those flagship events and into the broader community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:48:28] <strong>Nathan Wrigley:</strong> Really nice. Yeah, that&#8217;s really nice to hear. I think it&#8217;s a difficult circle to square, the idea of making this stuff visible so that everybody&#8217;s aware of it. Even if they&#8217;re only interested in running their agency, or writing code or whatever it is. Maybe to realise that this is some version of the underpinnings of the WordPress community without which the software ultimately doesn&#8217;t exist.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And it is quite curious. I don&#8217;t know if I&#8217;m reading between the lines here, I think I&#8217;m not, but I get the impression that, I&#8217;m going to use the phrase like, I don&#8217;t know, from higher up, let&#8217;s put it that way. It feels like education is taking a more central place. It feels like for example, Mary Hubbard, it feels like you&#8217;ve got a real advocate there. Again, I could be reading between the lines, but it feels like the words coming out of her mouth, I hear the word education coming out of her mouth quite a lot when she&#8217;s on stage.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So it feels like you&#8217;ve got some big hitters, let&#8217;s go with that. I don&#8217;t know if you&#8217;ve got anything you want to add to that, but it feels like the importance of this is more profound this year than it was a few years ago.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:49:33] <strong>Maciej Pilarski:</strong> You are correct. Mary is a big supporter of that and she also created this space for us to grow those initiatives that like allows us to grow that. Isotta started the first Credits Program at the Pisa University as an experiment. And from there it was proven that this actually works. It gets us universities and new contributors.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And then on the other side, there was those Campus Connect events that also organically grew up on their own. So basically there was a need. It feels like there was this hive mind somehow that worked also for all of us. All of us felt this need to introduce those things. It looks like we&#8217;ve reached a certain growth level for the community that we organically felt that that&#8217;s the direction that we should start heading.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:50:24] <strong>Nathan Wrigley:</strong> Yeah. What&#8217;s interesting there as well is that it very much overlaps with maybe a concern. So we&#8217;ve touched on this at various points without saying it out loud quite. If you go to, and I&#8217;m going to exclude WordCamp Asia 2026 from what I&#8217;m about to say, because that event was very different. If you go to a typical WordCamp, the age skews, and I&#8217;m doing air quotes, older. You don&#8217;t typically look around and see a bunch of teenagers.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So that&#8217;s a concern. There&#8217;s this, like a pyramid, like a reverse pyramid, and if we don&#8217;t get the younger people coming up, the edifice of this entire project kind of becomes a lot more shaky. And we&#8217;ve lived through 22 plus years of WordPress, and I think quite a lot of those people began, a lot of the people who&#8217;ve been involved in the community began their careers using WordPress and they&#8217;ve kind of moved through WordPress as it&#8217;s evolved over those 22 years.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And not to, I don&#8217;t know quite how to say this. At some point they&#8217;re going to stop contributing. Their age will become something, you know, they want to retire or they want to move on or do some other things. Unless we build the scaffolding and put things in place so that young people feel they&#8217;ve got a place here, feel that, I don&#8217;t know, some proprietary system is not the way they want to go, they want to support the ethic of open source.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Unless these building blocks, these educational building blocks are put in place, then that&#8217;s going to be a bit of a concern. So to your point, Maciej, it organically grew. And what a nice thing that it did kind of organically grow because it&#8217;s sorely needed at the same time. There isn&#8217;t really a question in there. But anyway, there&#8217;s my observation. Anand, did you have something to say? I think you did.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:52:04] <strong>Anand Upadhyay:</strong> Yeah. So just want to add that thing you have raised recently. So the way that we want to teach the students about the open source as well, because if you go to the WP Credit curriculum, so the initial lessons, they learn through the, given to them to learn from the learn.wordpress. So it&#8217;s all about like open source ethics, and how the WordPress community, WordPress project works.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So this opens up their mind about the open source. Because in the education system, it is something that is not clearly mentioned. There are simple, just simple definitions around the open source. But open source is much more than those definitions.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And especially the open source community like WordPress. It&#8217;s more about the people. So the students also learn about how the community is working, how the people are working from the different time zones, people are joining hands for running the bigger events like WordCamp Asia or these Credits Programs. The students will learn all those things as well, and I&#8217;m sure when they will join as a contributor in the future, they will have lot of experience before joining as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:53:02] <strong>Nathan Wrigley:</strong> Thank you. I love that expression, by the way. You just dropped it in in the middle of a sentence there. You said people are joining hands. What a perfect summation of the entire enterprise being discussed today. Maciej, you raised your hand.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:53:14] <strong>Maciej Pilarski:</strong> Yeah, and besides the community goals and keeping it going, I have also a very personal goal that also is behind all of those things that I do. From my own experience, I had a pretty difficult and bumpy educational path, let&#8217;s call it. Unlocking those possibilities for those students, helping them out, making it easier for them, it&#8217;s one of my very personal goals, because I know it does not need to be very difficult or crazy when you study, especially when you are young. You&#8217;re not sure fully which direction you would like to go. So creating for them, one of those opportunities that might click for them is also something very personal and close to my heart. Because not everyone needs to struggle or have like difficulties, so.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:53:58] <strong>Nathan Wrigley:</strong> I am so glad you said that because that encapsulates all of it. That&#8217;s the entire point. It&#8217;s got to be that, right? So we&#8217;ve spent a long time talking about the minutiae of this, that, and the other thing. It all goes, like they&#8217;re spokes on a wheel. And the whole point is that little bit in the middle, which is the child, the adult, the human being somewhere who just wants to make use, wants to grow, wants to learn things, wants to figure things out.</p>\n\n\n\n<p class=\"wp-block-paragraph\">With open source, with this kind of learning, there is potentially zero impediment, or at least very few impediments to actually get that learning underway. And so I think maybe we lost sight of that in this conversation a little bit. So I&#8217;m glad that you grounded it there, Maciej, right towards the end. That&#8217;s perfect. Destiny, was there anything you wanted to say? I don&#8217;t know if you were indicating that you did.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:54:48] <strong>Destiny Kanno:</strong> I know we&#8217;re like probably over time, but there&#8217;s still so much to share. Like even thinking about keeping WordPress relevant, right? For us and then also for youth. I think about the new AI Leaders Credential that was announced and is being worked on. And how tying WordPress to AI is like really helping students engage more, and see like the relevancy of it in a different way. Not even for the students, like for me, that&#8217;s challenging me and I think other organisers and learners of WordPress to be adaptable and think about WordPress differently in a new way of this year as AI keeps advancing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And then you were also talking about wins, right? How do we celebrate that? I did want to surface, we have the Education Buzz Report, which goes out every month, which aims to try to surface all of these educational wins that are happening in the community. And I just have received some further collaboration from marketing to hopefully also broadcast that on our socials going forward so that we do get the word out.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And lastly, like celebrating the students too. There was a post that went out about the Student Clubs and the success. And we just want to make sure that in this, that they feel seen, right? And that this feels like a space for them. And I know WordPress Credits, we&#8217;re working on something to showcase, no, something went out recently. A post went out recently to showcase some of the successes of the students. And we just want to keep highlighting that as well. Because their work and the way they operate, especially because they&#8217;re coming in with different lenses, is really important to showcase and highlight and make sure that they feel like they deserve that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:56:26] <strong>Nathan Wrigley:</strong> Yeah, there was a post, I&#8217;ll try and link to it. I think it was like a week ago about the Student Clubs. There were three or four images, three or four photos and there were so many smiling faces in those pictures. It was absolutely lovely. Lots of people gathered in classrooms. I couldn&#8217;t exactly tell where, but it was just so nice seeing people kind of enjoying WordPress, having a nice time, bit of camaraderie, hanging out with each other, learning things. It was absolutely wonderful.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Unfortunately, I think time might have got the better of us. Hopefully, dear listener, what you&#8217;ve gained is an understanding that there&#8217;s so many layers to this educational initiative. It doesn&#8217;t appear to be in any way standing still. It&#8217;s growing. It&#8217;s interesting. There&#8217;s a lot going on, and you can be involved.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I will put links in the show notes to any of the places where I feel you would be best making a start with that. Maybe the contributors to this panel can drop some things, you know, if they&#8217;ve got a particular link. So again, wptavern.com. If you want to go over there, we will look for the links.</p>\n\n\n\n<p class=\"wp-block-paragraph\">This giant edifice that you maybe know nothing about, and maybe at the end of this episode, some parts of you is tuned in and thinking, I would like to be involved in that. And the truth is, you can be. It&#8217;s all available to you to get involved and you could start today.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So there we go. With that said, I&#8217;m just going to say a great big thank you to Destiny, to Anand, and to Maciej. It kinds of feels like we need to come back. Let&#8217;s do it again in six months or so, and we&#8217;ll see where we&#8217;re at. Oh, I&#8217;ve got a lot of nodding faces. That&#8217;s nice. So maybe we&#8217;ll revisit this in a few months time.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But seriously, from the bottom of my heart, Destiny, Anand and Maciej, profound respect to you and all of the different things that you are doing. Thank you so much for chatting to me today.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:58:13] <strong>Anand Upadhyay:</strong> Thank you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:58:13] <strong>Maciej Pilarski:</strong> Thank you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:58:14] <strong>Destiny Kanno:</strong> Thank you.</p>\n</div></details>\n\n\n\n<p class=\"wp-block-paragraph\">On the podcast today we’re joined by three WordPress education initiative leaders, Destiny Kanno, Anand Upadhyay and Maciej Pilarski.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Together, they have spent years at the heart of WordPress training and outreach, working in roles spanning community education management, plugin development, and credit program administration. Their efforts have helped shape student engagement and university partnerships across the globe, introducing thousands of learners to WordPress. You can see their bios further down.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The conversation focused on the current landscape of WordPress education, with particular attention to three key initiatives: the WordPress Credits Program, Campus Connect, and Student Clubs. Each initiative is designed to provide unique entry points for students of all ages and education levels, from high schoolers building their first site in a library, to university students earning official credits for open source contributions.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We discussed the different approaches these programs take: WP Credits ties student work directly to academic credit and mentorship, Campus Connect provides flexible, community-driven events in diverse locations, and Student Clubs foster sustainable, peer-led learning within schools and other institutions. We explored how these models feed into each other, building a sustainable ecosystem for ongoing growth in the WordPress community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We also got into the importance of repeat campus partnerships, the need for scalable facilitator training, and the role of recognition: certificates, badges, and public showcases, in keeping students motivated and validated in their journey.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’re curious about the growing movement to bring WordPress knowledge to the next generation, or are looking to get involved with education in your local community, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Previous episode of the podcast related to this episode:<br /><a href=\"https://wptavern.com/forums/topic/183-destiny-kanno-isotta-peira-and-anand-upadhyay-on-how-wordpress-is-shaping-the-future-of-education-for-students-worldwide\">#183 – Destiny Kanno, Isotta Peira and Anand Upadhyay on how WordPress is shaping the future of education for students worldwide</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://make.wordpress.org/community/\">WordPress Community Team</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://events.wordpress.org/campusconnect/\">Welcome to WordPress Campus Connect</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://profiles.wordpress.org/stephendumba1/\">Stephen Dumba&#8217;s WordPress.org profile</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://make.wordpress.org/handbook/wordpress-credits-contribution-internship-program/\">WordPress Credits: Contribution Program for Students</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://wordpress.org/education/student-clubs/\">WordPress Student Clubs</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://events.wordpress.org/campusconnect/2025/ajmer/\">WordPress Campus Connect in Ajmer</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://make.wordpress.org/community/2026/05/01/peer-review-needed-hands-on-wordpress-meetup-activity-library/\">Peer Review Needed: Hands-On WordPress Meetup Activity Library</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://make.wordpress.org/community/2026/04/03/introducing-the-wordpress-facilitator-training-program/\">Introducing the WordPress Facilitator Training Program</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://wordpress.org/news/2026/02/ai-leaders-credential/\">Piloting the AI Leaders Micro-Credential</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://make.wordpress.org/community/2026/06/03/monthly-education-buzz-report-may-2026/\">Monthly Education Buzz Report – May 2026</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://learn.wordpress.org\">Learn WordPress</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://wordpress.org/news/2026/04/student-clubs-build-momentum/\">WordPress Student Clubs Build Momentum</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Links provided by the guests</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>WordPress.org Education page:<br /><a href=\"https://wordpress.org/education/\">https://wordpress.org/education/</a> (and all subpages)</li>\n\n\n\n<li>WordPress Credits Institution application form:<br /><a href=\"https://make.wordpress.org/handbook/wordpress-credits-contribution-internship-program/#get-involved\">https://make.wordpress.org/handbook/wordpress-credits-contribution-internship-program/#get-involved</a></li>\n\n\n\n<li>Call for WP Credits mentors and mentor application form:<br /><a href=\"https://make.wordpress.org/handbook/wordpress-credits-contribution-internship-program/a-guide-for-wp-credits-mentors/call-for-mentors/\">https://make.wordpress.org/handbook/wordpress-credits-contribution-internship-program/a-guide-for-wp-credits-mentors/call-for-mentors/</a></li>\n\n\n\n<li>Any companies interested in supporting the Credits Program:<br /><a href=\"https://make.wordpress.org/handbook/wordpress-credits-contribution-internship-program/get-involved-company-guide/\">https://make.wordpress.org/handbook/wordpress-credits-contribution-internship-program/get-involved-company-guide/</a></li>\n\n\n\n<li>Student form to apply their institution for the Credits Program:<br /><a href=\"https://airtable.com/appIzQKfwTn5dyPVp/shr6Gf1mMMEAxevw4\">https://airtable.com/appIzQKfwTn5dyPVp/shr6Gf1mMMEAxevw4</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/handbook/education/wordpress-facilitator-training-program/\">WordPress Facilitator Training Program</a></li>\n\n\n\n<li>Education buzz reports: <a href=\"https://make.wordpress.org/community/tag/education-buzz/\">https://make.wordpress.org/community/tag/education-buzz/</a></li>\n\n\n\n<li>Apply to organize a WPCC event: <a href=\"https://events.wordpress.org/campusconnect/organize/\">https://events.wordpress.org/campusconnect/organize</a></li>\n\n\n\n<li>Apply to create a student club: <a href=\"https://make.wordpress.org/community/handbook/education/student-clubs/request-the-creation-of-a-wordpress-student-club/\">https://make.wordpress.org/community/handbook/education/student-clubs/request-the-creation-of-a-wordpress-student-club/</a></li>\n\n\n\n<li>Ai credentials:<br /><a href=\"https://wordpress.org/news/2026/02/ai-leaders-credential/\">https://wordpress.org/news/2026/02/ai-leaders-credential/</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Guest bios:</h2>\n\n\n\n<h3 class=\"wp-block-heading\">Destiny Kanno</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Destiny Fox Kanno, sponsored contributor acting as a Community Education Programs Manager at Automattic. Destiny works closely with the Community team and Training Team, with a focus on growing, enabling and amplifying WordPress Campus Connect, Student Club, WordPress Credits and other education initiatives.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Anand Upadhyay</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Anand Upadhyay is a long-time WordPress contributor and community advocate based in Ajmer, India. Active in the ecosystem since 2010, he has contributed to several Make WordPress teams including Core, Docs, Community, and Polyglots, with a strong focus on empowering others to get involved. He is the founder of <a href=\"https://wpvibes.com\">WPVibes</a>, a WordPress plugin development company that builds performance-driven tools for WordPress and WooCommerce users.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Anand is also a regular WordCamp speaker, Meetup organiser, and someone deeply committed to bringing WordPress education to students. In 2024, he launched the first WordPress Campus Connect event, which went on to become a global program officially recognised by the WordPress Foundation. Anand continues to support and mentor student communities through events, workshops, and open-source advocacy.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Maciej Pilarski</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Maciej Pilarski is a Community Wrangler at Automattic, where he works on WordPress.org with a focus on educational initiatives that connect the next generation of contributors to the global WordPress community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">As one of the admins behind the WordPress Credits Program, Maciej works with universities across Central &amp; Eastern Europe and Asia to bring students into open source contribution, pairing them with mentors, building institutional partnerships, and helping turn academic coursework into real-world impact on software used by 43% of the web.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Originally from Poland and now based in Okinawa, Japan, Maciej brings a uniquely cross-cultural perspective to community building, bridging local ecosystems in places like Kraków, Riga, Tallinn, and Tokyo with the wider WordPress world. He&#8217;s passionate about making open source contribution more accessible and making sure the WordPress community reflects the full diversity of the people who use it.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 24 Jun 2026 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"Open Channels FM: Revisiting What Matters Most\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2556050\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://openchannels.fm/revisiting-what-matters-most/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:205:\"In this episode, Bob Dunn recaps six months of key themes, highlighting the surge in AI discussions, ongoing debates about the open web, and WordPress\'s enduring relevance, while embracing honest dialogue.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 24 Jun 2026 12:58:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"Open Channels FM: Signal – Issue 14\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2555826\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://openchannels.fm/signal-issue-14/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:147:\"Ongoing challenges in decentralized social networks, emphasizing the need for practical solutions and immediate usability for developers and users.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 24 Jun 2026 11:57:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Matt: No Bubble\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=153299\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://ma.tt/2026/06/no-bubble/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:425:\"<p class=\"wp-block-paragraph\">A throwback from 2007: a local Bay Area a cappella group called The Richter Scales made a Webby Award-winning viral video about how that bubble felt. <em>Hat tip: <a href=\"https://toni.org/\">Toni</a>.</em></p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-4-3 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 24 Jun 2026 06:57:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"WordPress.org blog: Browse the New Mercantile Swag Store\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=20930\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://wordpress.org/news/2026/06/open-web-merch/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3868:\"<p class=\"wp-block-paragraph\"><a href=\"https://mercantile.wordpress.org/\">Mercantile</a>, the official swag store of the WordPress project, has a newly redesigned storefront with a catalog that now sits front and center, and a design tuned to hold up across a wide range of screen sizes. There are also small touches, like automatically selecting a variant when only one is in stock and order emails styled to match the look and feel of the store.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-20931\" height=\"1055\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/image-1.png?resize=2048%2C1055&#038;ssl=1\" width=\"2048\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Throughout the design, the storefront leans into the history and culture of WordPress. Visual and copy choices nod to familiar elements of the project, from the metabox and the admin bar to Wapuu making the occasional appearance, with small open source and code references for those who look closely. The aim was a storefront that feels uniquely WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Under the hood, the storefront shows what a modern WordPress and <a href=\"https://woocommerce.com/\">WooCommerce</a> site can do. It is built almost entirely with blocks, including a block-based cart, checkout, mini-cart, and order confirmation, supported by a set of custom theme blocks created for the store. The <a href=\"https://developer.wordpress.org/block-editor/reference-guides/interactivity-api/iapi-about/\">Interactivity API</a> powers the catalog navigation and modal states, the store runs on WordPress 7.0, and accessibility is built in throughout, honoring reduced-motion preferences across animations and meeting color contrast standards. Product pages surface per-product attributes such as size, material, and care, so shoppers have the details they need before adding an item to the cart.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-20932\" height=\"800\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/image-2.png?resize=2048%2C800&#038;ssl=1\" width=\"2048\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">This latest redesign supported the Mercantile booth at <a href=\"https://europe.wordcamp.org/2026/\">WordCamp Europe</a>. To make in-person sales work smoothly, the team enabled local pickup at checkout and added a set of event-only products refined to match the rest of the catalog. Fifty orders were completed at the event using in-person payments, a strong real-world test of the new checkout flow.</p>\n\n\n\n<p class=\"wp-block-paragraph\">There is more on the way! A playful experiment in progress will let curious shoppers explore a text-based version of the store from the command line, a small tribute to the developers who make up much of the WordPress community. Subtle hints pointing the way will appear once it is ready.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-20933\" height=\"719\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/image-3.png?resize=2048%2C719&#038;ssl=1\" width=\"2048\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">The new Mercantile is the work of many contributors who designed, built, tested, and refined it together. Every purchase supports the <a href=\"https://wordpressfoundation.org/\">WordPress Foundation</a>, a 501(c)(3) nonprofit organization, in its mission to democratize publishing and preserve open source software for generations to come. Take a look around and find something you love.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-3e41869c wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://mercantile.wordpress.org/\">Shop at <strong>mercantile.WordPress.org</strong></a></div>\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 22 Jun 2026 15:07:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"jillq\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"Open Channels FM: Navigating Burnout in the Age of AI-Driven Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2555430\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://openchannels.fm/navigating-burnout-in-the-age-of-ai-driven-development/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:180:\"AI transforms developer workflows, causing cognitive overload and blurring work-rest boundaries. Establishing intentional breaks is crucial to maintain balance and prevent burnout.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 22 Jun 2026 10:08:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Matt: Hill For A Stepper\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=153269\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://ma.tt/2026/06/hill-stepper/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:798:\"<p class=\"wp-block-paragraph\">In honor of Father&#8217;s Day, I wanted to add to the <a href=\"https://ma.tt/chuck/\">two quotes from my Dad&#8217;s obituary</a>, &#8220;Seven days without chicken made one weak.” and  “If you fail at raising your children, nothing else mattered.” with another saying he had.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">Ain&#8217;t no hill for a stepper.</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;d like to learn more about this, <a href=\"https://waywordradio.org/stepper-like-you/\">check out this part of the A Way with Words podcast</a>, and apparently, it <a href=\"https://www.youtube.com/watch?v=Lui5y2AcYpM\">might have come from the musician John Gaar</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 22 Jun 2026 06:58:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 21 Jul 2026 14:39:29 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:13:\"last-modified\";s:29:\"Tue, 21 Jul 2026 14:30:34 GMT\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:4:\"gzip\";s:7:\"alt-svc\";s:5:\"clear\";s:4:\"x-nc\";s:9:\"HIT dca 1\";}s:5:\"build\";i:1760658336;s:21:\"cache_expiration_time\";i:1784687969;s:23:\"__cache_expiration_time\";i:1784687969;}', 'off');
INSERT INTO `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(2610, '_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.2.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.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-7.0.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-7.0.2-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"7.0.2\";s:7:\"version\";s:5:\"7.0.2\";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:1784700427;s:15:\"version_checked\";s:5:\"7.0.2\";s:12:\"translations\";a:0:{}}', 'off'),
(2705, '_site_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1784687969', 'off'),
(2706, '_site_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1784644769', 'off'),
(2707, '_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b', '1784687969', 'off'),
(2708, '_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b', '<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2026/07/wordpress-7-0-2-release/\'>WordPress 7.0.2 Release</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2026/07/wordpress-7-1-beta-1/\'>WordPress 7.1 Beta 1</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://openchannels.fm/the-growth-of-domain-names-and-the-future-of-ai-in-internet-identity/\'>Open Channels FM: The Growth of Domain Names and the Future of AI in Internet Identity</a></li><li><a class=\'rsswidget\' href=\'https://openchannels.fm/open-source-and-the-open-source-initiative/\'>Open Channels FM: Open Source and the Open Source Initiative</a></li><li><a class=\'rsswidget\' href=\'https://central.wordcamp.org/news/2026/07/wordcamp-rajshahi-2026-celebrating-community-learning-and-open-source/\'>WordCamp Central: WordCamp Rajshahi 2026: Celebrating Community, Learning, and Open Source</a></li></ul></div>', 'off'),
(2709, '_site_transient_timeout_wp_plugin_dependencies_plugin_timeout_elementor', '1784687972', 'off'),
(2710, '_site_transient_wp_plugin_dependencies_plugin_timeout_elementor', '1', 'off'),
(2751, '_transient_is_multi_author', '0', 'on'),
(2752, '_elementor_assets_data', 'a:1:{s:3:\"svg\";a:1:{s:9:\"font-icon\";a:6:{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:18:\"fas-map-marker-alt\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:384;s:6:\"height\";i:512;s:4:\"path\";s:244:\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\";s:3:\"key\";s:18:\"fas-map-marker-alt\";}s:7:\"version\";s:6:\"5.15.3\";}s: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: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\";}}}}', 'auto');

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

--
-- Table structure for table `wpom_postmeta`
--

CREATE TABLE `wpom_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 `wpom_postmeta`
--

INSERT INTO `wpom_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'),
(11, 10, '_edit_last', '1'),
(12, 10, '_edit_lock', '1783960608:1'),
(13, 10, '_wp_page_template', 'elementor_header_footer'),
(14, 10, 'site-sidebar-layout', 'no-sidebar'),
(19, 10, 'theme-transparent-header-meta', 'default'),
(16, 10, 'ast-site-content-layout', 'full-width-container'),
(17, 10, 'site-content-style', 'default'),
(18, 10, 'site-sidebar-style', 'default'),
(20, 10, 'astra-migrate-meta-layouts', 'set'),
(21, 12, '_edit_last', '1'),
(22, 12, '_edit_lock', '1781706484:1'),
(23, 12, '_wp_page_template', 'elementor_header_footer'),
(24, 12, 'site-sidebar-layout', 'no-sidebar'),
(29, 12, 'theme-transparent-header-meta', 'default'),
(26, 12, 'ast-site-content-layout', 'full-width-container'),
(27, 12, 'site-content-style', 'default'),
(28, 12, 'site-sidebar-style', 'default'),
(30, 12, 'astra-migrate-meta-layouts', 'set'),
(31, 14, '_edit_last', '1'),
(32, 14, '_edit_lock', '1781706557:1'),
(33, 14, '_wp_page_template', 'elementor_header_footer'),
(34, 14, 'site-sidebar-layout', 'no-sidebar'),
(39, 14, 'theme-transparent-header-meta', 'default'),
(36, 14, 'ast-site-content-layout', 'full-width-container'),
(37, 14, 'site-content-style', 'default'),
(38, 14, 'site-sidebar-style', 'default'),
(40, 14, 'astra-migrate-meta-layouts', 'set'),
(41, 16, '_edit_last', '1'),
(42, 16, '_edit_lock', '1781594081:1'),
(43, 16, '_wp_page_template', 'elementor_header_footer'),
(44, 16, 'site-sidebar-layout', 'default'),
(49, 16, 'theme-transparent-header-meta', 'default'),
(46, 16, 'ast-site-content-layout', 'default'),
(47, 16, 'site-content-style', 'default'),
(48, 16, 'site-sidebar-style', 'default'),
(50, 16, 'astra-migrate-meta-layouts', 'set'),
(51, 18, '_edit_last', '1'),
(52, 18, '_edit_lock', '1781699736:1'),
(53, 18, '_wp_page_template', 'elementor_header_footer'),
(54, 18, 'site-sidebar-layout', 'no-sidebar'),
(59, 18, 'theme-transparent-header-meta', 'default'),
(56, 18, 'ast-site-content-layout', 'full-width-container'),
(57, 18, 'site-content-style', 'default'),
(58, 18, 'site-sidebar-style', 'default'),
(7410, 18, 'astra-migrate-meta-layouts', 'set'),
(61, 20, '_edit_last', '1'),
(62, 20, '_edit_lock', '1783960278:1'),
(63, 20, '_wp_page_template', 'elementor_header_footer'),
(64, 20, 'site-sidebar-layout', 'no-sidebar'),
(69, 20, 'theme-transparent-header-meta', 'default'),
(66, 20, 'ast-site-content-layout', 'full-width-container'),
(67, 20, 'site-content-style', 'default'),
(68, 20, 'site-sidebar-style', 'default'),
(70, 20, 'astra-migrate-meta-layouts', 'set'),
(71, 22, '_elementor_edit_mode', 'builder'),
(72, 22, '_elementor_template_type', 'kit'),
(73, 7, '_wp_page_template', 'default'),
(74, 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:34:\"Optimal Mental Health And Wellness\";s:9:\"site_logo\";a:5:{s:3:\"url\";s:112:\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Optimal-Mental-Health-And-Wellness-logo-a.png\";s:2:\"id\";i:52;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:114:\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Optimal-Mental-Health-And-Wellness-faveicon.png\";s:2:\"id\";i:51;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:1300;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;}'),
(75, 23, '_menu_item_type', 'custom'),
(76, 23, '_menu_item_menu_item_parent', '0'),
(77, 23, '_menu_item_object_id', '23'),
(78, 23, '_menu_item_object', 'custom'),
(79, 23, '_menu_item_target', ''),
(80, 23, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(81, 23, '_menu_item_xfn', ''),
(82, 23, '_menu_item_url', 'https://mrarif.me/optimalmentalwellness/'),
(83, 23, '_menu_item_orphaned', '1781594732'),
(84, 24, '_menu_item_type', 'post_type'),
(85, 24, '_menu_item_menu_item_parent', '0'),
(86, 24, '_menu_item_object_id', '16'),
(87, 24, '_menu_item_object', 'page'),
(88, 24, '_menu_item_target', ''),
(89, 24, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(90, 24, '_menu_item_xfn', ''),
(91, 24, '_menu_item_url', ''),
(149, 31, '_wp_page_template', 'elementor_header_footer'),
(562, 14, '_elementor_global_class_usage_indexed', '1'),
(148, 31, '_edit_lock', '1781706431:1'),
(102, 26, '_menu_item_type', 'post_type'),
(103, 26, '_menu_item_menu_item_parent', '0'),
(104, 26, '_menu_item_object_id', '20'),
(105, 26, '_menu_item_object', 'page'),
(106, 26, '_menu_item_target', ''),
(107, 26, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(108, 26, '_menu_item_xfn', ''),
(109, 26, '_menu_item_url', ''),
(147, 31, '_edit_last', '1'),
(111, 27, '_menu_item_type', 'post_type'),
(112, 27, '_menu_item_menu_item_parent', '0'),
(113, 27, '_menu_item_object_id', '10'),
(114, 27, '_menu_item_object', 'page'),
(115, 27, '_menu_item_target', ''),
(116, 27, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(117, 27, '_menu_item_xfn', ''),
(118, 27, '_menu_item_url', ''),
(152, 31, 'ast-site-content-layout', 'full-width-container'),
(120, 28, '_menu_item_type', 'post_type'),
(121, 28, '_menu_item_menu_item_parent', '33'),
(122, 28, '_menu_item_object_id', '12'),
(123, 28, '_menu_item_object', 'page'),
(124, 28, '_menu_item_target', ''),
(125, 28, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(126, 28, '_menu_item_xfn', ''),
(127, 28, '_menu_item_url', ''),
(155, 31, 'theme-transparent-header-meta', 'default'),
(129, 29, '_menu_item_type', 'post_type'),
(130, 29, '_menu_item_menu_item_parent', '0'),
(131, 29, '_menu_item_object_id', '2'),
(132, 29, '_menu_item_object', 'page'),
(133, 29, '_menu_item_target', ''),
(134, 29, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(135, 29, '_menu_item_xfn', ''),
(136, 29, '_menu_item_url', ''),
(137, 29, '_menu_item_orphaned', '1781594732'),
(138, 30, '_menu_item_type', 'post_type'),
(139, 30, '_menu_item_menu_item_parent', '0'),
(140, 30, '_menu_item_object_id', '14'),
(141, 30, '_menu_item_object', 'page'),
(142, 30, '_menu_item_target', ''),
(143, 30, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(144, 30, '_menu_item_xfn', ''),
(145, 30, '_menu_item_url', ''),
(150, 31, 'site-sidebar-layout', 'no-sidebar'),
(153, 31, 'site-content-style', 'default'),
(154, 31, 'site-sidebar-style', 'default'),
(157, 31, 'astra-migrate-meta-layouts', 'set'),
(158, 33, '_menu_item_type', 'post_type'),
(159, 33, '_menu_item_menu_item_parent', '0'),
(160, 33, '_menu_item_object_id', '31'),
(161, 33, '_menu_item_object', 'page'),
(162, 33, '_menu_item_target', ''),
(163, 33, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(164, 33, '_menu_item_xfn', ''),
(165, 33, '_menu_item_url', ''),
(167, 10, '_elementor_edit_mode', 'builder'),
(168, 10, '_astra_content_layout_flag', 'disabled'),
(170, 10, 'ast-title-bar-display', 'disabled'),
(171, 10, 'ast-featured-img', 'disabled'),
(172, 10, '_elementor_template_type', 'wp-page'),
(173, 10, '_elementor_version', '4.1.3'),
(174, 10, '_elementor_pro_version', '4.1.1');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(202, 10, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":532,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":431,\"sizes\":[]}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"px\",\"size\":223,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/clinikehr.com\\/book\\/optimal-mental-health-and-wellness-group\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"common_image_animation\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"},\"hide_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\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"css_classes\":\"common_image_animation \"},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/bg-contact-a.jpg\",\"id\":726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\",\"css_classes\":\"common_image_animation \"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(176, 10, '_elementor_global_class_usage_indexed', '1'),
(177, 10, '_elementor_global_class_usage_indexed_preview', '1'),
(178, 10, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(180, 7, '_elementor_global_classes_order', 'a:1:{s:5:\"order\";a:0:{}}'),
(181, 7, '_elementor_global_classes_labels', 'a:0:{}'),
(182, 7, '_elementor_global_classes_sync_to_v3', 'a:0:{}'),
(183, 7, '_elementor_global_classes_order_preview', 'a:1:{s:5:\"order\";a:0:{}}'),
(184, 34, '_wp_page_template', 'elementor_header_footer'),
(185, 34, '_elementor_edit_mode', 'builder'),
(186, 34, '_elementor_template_type', 'wp-page'),
(187, 34, '_elementor_version', '4.1.3'),
(188, 34, '_elementor_pro_version', '4.1.1'),
(189, 34, '_elementor_page_settings', 'a:0:{}'),
(190, 34, '_elementor_global_class_usage_indexed', '1'),
(191, 34, '_elementor_global_class_usage_indexed_preview', '1'),
(192, 34, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(193, 35, '_wp_page_template', 'elementor_header_footer'),
(194, 35, '_elementor_edit_mode', 'builder'),
(195, 35, '_elementor_template_type', 'wp-page'),
(196, 35, '_elementor_version', '4.1.3'),
(197, 35, '_elementor_pro_version', '4.1.1'),
(198, 35, '_elementor_page_settings', 'a:0:{}'),
(199, 35, '_elementor_global_class_usage_indexed', '1'),
(200, 35, '_elementor_global_class_usage_indexed_preview', '1');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(201, 35, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(203, 36, '_wp_page_template', 'elementor_header_footer'),
(204, 36, '_elementor_edit_mode', 'builder'),
(205, 36, '_elementor_template_type', 'wp-page'),
(206, 36, '_elementor_version', '4.1.3'),
(207, 36, '_elementor_pro_version', '4.1.1'),
(208, 36, '_elementor_global_class_usage_indexed', '1'),
(209, 36, '_elementor_global_class_usage_indexed_preview', '1'),
(210, 36, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(211, 36, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}]'),
(215, 37, '_wp_page_template', 'elementor_header_footer'),
(216, 37, '_elementor_edit_mode', 'builder'),
(217, 37, '_elementor_template_type', 'wp-page'),
(218, 37, '_elementor_version', '4.1.3'),
(219, 37, '_elementor_pro_version', '4.1.1'),
(220, 37, '_elementor_global_class_usage_indexed', '1'),
(221, 37, '_elementor_global_class_usage_indexed_preview', '1'),
(222, 37, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(223, 37, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}]'),
(225, 37, '_elementor_page_settings', 'a:0:{}'),
(226, 38, '_wp_page_template', 'elementor_header_footer'),
(227, 38, '_elementor_edit_mode', 'builder'),
(228, 38, '_elementor_template_type', 'wp-page'),
(229, 38, '_elementor_version', '4.1.3'),
(230, 38, '_elementor_pro_version', '4.1.1'),
(231, 38, '_elementor_global_class_usage_indexed', '1'),
(232, 38, '_elementor_global_class_usage_indexed_preview', '1'),
(233, 38, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(234, 38, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}]'),
(236, 38, '_elementor_page_settings', 'a:0:{}'),
(237, 39, '_wp_page_template', 'elementor_header_footer'),
(238, 39, '_elementor_edit_mode', 'builder'),
(239, 39, '_elementor_template_type', 'wp-page'),
(240, 39, '_elementor_version', '4.1.3'),
(241, 39, '_elementor_pro_version', '4.1.1'),
(242, 39, '_elementor_global_class_usage_indexed', '1'),
(243, 39, '_elementor_global_class_usage_indexed_preview', '1'),
(244, 39, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(245, 39, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"2d17b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"05f30cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br \\/>We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d15f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(417, 58, '_elementor_template_type', 'kit'),
(418, 58, '_wp_page_template', 'default'),
(251, 41, '_wp_page_template', 'elementor_header_footer'),
(252, 41, '_elementor_edit_mode', 'builder'),
(253, 41, '_elementor_template_type', 'wp-page'),
(254, 41, '_elementor_version', '4.1.3'),
(255, 41, '_elementor_pro_version', '4.1.1'),
(256, 41, '_elementor_global_class_usage_indexed', '1'),
(257, 41, '_elementor_global_class_usage_indexed_preview', '1'),
(258, 41, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(259, 41, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"2d17b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"05f30cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br \\/>We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d15f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(249, 40, '_wp_attached_file', '2026/06/banner-ab.jpg'),
(250, 40, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1084;s:4:\"file\";s:21:\"2026/06/banner-ab.jpg\";s:8:\"filesize\";i:163350;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"banner-ab-300x163.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:163;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13990;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"banner-ab-1024x555.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:555;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90909;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"banner-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:7513;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"banner-ab-768x416.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:416;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57934;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"banner-ab-1536x833.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:833;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:170650;}}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:\"\";}}'),
(261, 41, '_elementor_page_settings', 'a:0:{}'),
(262, 42, '_wp_page_template', 'elementor_header_footer'),
(263, 42, '_elementor_edit_mode', 'builder'),
(264, 42, '_elementor_template_type', 'wp-page'),
(265, 42, '_elementor_version', '4.1.3'),
(266, 42, '_elementor_pro_version', '4.1.1'),
(267, 42, '_elementor_global_class_usage_indexed', '1'),
(268, 42, '_elementor_global_class_usage_indexed_preview', '1'),
(269, 42, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(270, 42, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"2d17b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"05f30cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br \\/>We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d15f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(406, 7, '_elementor_global_class_usage_indexed', '1'),
(272, 42, '_elementor_page_settings', 'a:0:{}'),
(273, 43, '_wp_page_template', 'elementor_header_footer'),
(274, 43, '_elementor_edit_mode', 'builder'),
(275, 43, '_elementor_template_type', 'wp-page'),
(276, 43, '_elementor_version', '4.1.3'),
(277, 43, '_elementor_pro_version', '4.1.1'),
(278, 43, '_elementor_global_class_usage_indexed', '1'),
(279, 43, '_elementor_global_class_usage_indexed_preview', '1'),
(280, 43, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(281, 43, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":608,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"2d17b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"05f30cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br \\/>We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d15f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(407, 7, '_elementor_global_class_usage_indexed_preview', '1'),
(419, 58, '_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:34:\"Optimal Mental Health And Wellness\";s:9:\"site_logo\";a:5:{s:3:\"url\";s:112:\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Optimal-Mental-Health-And-Wellness-logo-a.png\";s:2:\"id\";i:52;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:114:\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Optimal-Mental-Health-And-Wellness-faveicon.png\";s:2:\"id\";i:51;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;}'),
(572, 72, '_wp_page_template', 'elementor_header_footer'),
(573, 72, '_elementor_edit_mode', 'builder'),
(574, 72, '_elementor_template_type', 'wp-page'),
(575, 72, '_elementor_version', '4.1.3'),
(576, 72, '_elementor_pro_version', '4.1.1'),
(577, 72, '_elementor_global_class_usage_indexed', '1'),
(578, 72, '_elementor_global_class_usage_indexed_preview', '1'),
(579, 72, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(580, 72, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":608,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"2d17b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"05f30cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br \\/>We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d15f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(484, 65, '_elementor_source', 'post'),
(485, 65, '_elementor_edit_mode', 'builder'),
(486, 65, '_elementor_template_type', 'header'),
(487, 65, '_elementor_version', '4.1.3'),
(488, 65, '_elementor_pro_version', '4.1.1'),
(489, 65, '_elementor_global_class_usage_indexed', '1'),
(490, 65, '_elementor_global_class_usage_indexed_preview', '1'),
(491, 65, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(492, 65, '_wp_page_template', 'default');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(493, 65, '_elementor_data', '[{\"id\":\"7cd2407b\",\"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\":\"4b376675\",\"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\":\"14e415c9\",\"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\":\"5137f99d\",\"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\":\"416cdcb9\",\"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\":\"6090cb25\",\"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\"},\"elements\":[{\"id\":\"42e85872\",\"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\":\"5d51e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Optimal-Mental-Health-And-Wellness-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":300,\"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\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_position\":\"absolute\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"388619a3\",\"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_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\":[]}},\"elements\":[{\"id\":\"2a70cfde\",\"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\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"454cd36b\",\"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\\/optimalmentalwellness\\/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\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"5aa4113e\",\"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}]'),
(302, 48, '_elementor_source', 'post'),
(303, 48, '_elementor_edit_mode', 'builder'),
(304, 48, '_elementor_template_type', 'header'),
(305, 48, '_elementor_version', '4.1.3'),
(306, 48, '_elementor_pro_version', '4.1.1'),
(307, 48, '_elementor_global_class_usage_indexed', '1'),
(308, 48, '_elementor_global_class_usage_indexed_preview', '1'),
(309, 48, '_astra_content_layout_flag', 'disabled'),
(311, 48, 'ast-title-bar-display', 'disabled'),
(312, 48, 'ast-featured-img', 'disabled'),
(313, 48, 'ast-site-content-layout', 'full-width-container'),
(314, 48, 'site-sidebar-layout', 'no-sidebar'),
(351, 48, '_elementor_data', '[{\"id\":\"7cd2407b\",\"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},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4b376675\",\"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\":\"14e415c9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@optimalmentalwellness.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@optimalmentalwellness.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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5137f99d\",\"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\":\"416cdcb9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"877 296 7846\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:8772967846\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=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\":\"6090cb25\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"background_background\":\"classic\",\"z_index\":99,\"css_classes\":\"header_sections\",\"sticky\":\"top\",\"sticky_effects_offset\":50,\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"42e85872\",\"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\":\"5d51e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Optimal-Mental-Health-And-Wellness-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":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\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_position\":\"absolute\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"_offset_x_widescreen\":{\"size\":-1,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-1,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"388619a3\",\"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\":\"2a70cfde\",\"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\":30,\"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\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"500\",\"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=astglobalcolor6\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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=astglobalcolor6\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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=astglobalcolor6\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor6\",\"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\":\"ca7841b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/clinikehr.com\\/book\\/optimal-mental-health-and-wellness-group\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"590be00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"454cd36b\",\"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\":432,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Mental-Health-And-Wellness-av.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.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\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"5aa4113e\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"},{\"id\":\"b8f44e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"align\":\"center\",\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"pp_condition_key\":\"static_page\",\"pp_condition_static_page_value\":\"blog\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(316, 48, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(317, 48, '_edit_lock', '1783960279:1'),
(4814, 422, '_elementor_source', 'post'),
(4815, 422, '_elementor_edit_mode', 'builder'),
(4816, 422, '_elementor_template_type', 'footer'),
(4817, 422, '_elementor_version', '4.1.3'),
(4786, 420, '_elementor_source', 'post'),
(4787, 420, '_elementor_edit_mode', 'builder'),
(4788, 420, '_elementor_template_type', 'footer'),
(4789, 420, '_elementor_version', '4.1.3'),
(4790, 420, '_elementor_pro_version', '4.1.1'),
(4791, 420, '_elementor_global_class_usage_indexed', '1'),
(4792, 420, '_elementor_global_class_usage_indexed_preview', '1'),
(4793, 420, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(4794, 420, '_wp_page_template', 'default'),
(4795, 420, '_elementor_data', '[{\"id\":\"36acd947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#1D1D1D\"},\"elements\":[{\"id\":\"a61f409\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"5b64f0b6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f54abd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"0785fe6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"204810e\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f3adcba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f19265\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"65ebe43c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ba9c024\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1a4d853c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"5011 Gate Parkway Bldg 100 Suite 100  Jacksonville, FL 32256 United States\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=30.246008,-81.533169&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=5011%20Gate%20Pkwy%20Bldg%20100%2C%20Suite%20100%20Collier%20Building%2C%20Parking%20lot%20Jacksonville%2C%20FL%2032256%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"904-901-7913\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:9049017913\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bf68e29\"},{\"text\":\"904-372-6034\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:9043726034\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"030f147\"},{\"text\":\" info@optimalmentalwellness.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto: info@optimalmentalwellness.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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1004a94f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor5\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor2\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"67a9f141\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"48dc4a5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39d06425\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"641fcfd9\",\"elType\":\"widget\",\"settings\":{\"business_hours\":[{\"day\":\"Sunday\",\"highlight\":\"yes\",\"_id\":\"a387f05\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor2\"}},{\"_id\":\"da64ace\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\"},{\"day\":\"Tuesday\",\"_id\":\"a4cc763\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"6778403\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"54a0872\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"12ce824\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"highlight\":\"yes\",\"_id\":\"9cfdedb\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor2\"}}],\"business_hours_custom\":[{\"day\":\"Monday\",\"_id\":\"cee2f1e\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Tuesday\",\"_id\":\"45ae0c5\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"86a6f01\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"7a864b7\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"7829cb0\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"0ab76c1\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"872d85e\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"}],\"rows_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"3\",\"bottom\":\"5\",\"left\":\"3\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ef806cc\",\"pp_condition_date_time_before_value\":\"2024-06-11 13:29\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"closed_row_day_color\":\"\",\"closed_row_tex_color\":\"\",\"day_color\":\"globals\\/colors?id=astglobalcolor2\",\"hours_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-business-hours\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ac53f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor3\"}},\"elements\":[{\"id\":\"86a6b29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2024 All Rights Reserved\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(4771, 414, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(4839, 423, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(4842, 424, '_elementor_source', 'post'),
(4843, 424, '_elementor_edit_mode', 'builder'),
(4844, 424, '_elementor_template_type', 'footer'),
(4845, 424, '_elementor_version', '4.1.3'),
(4846, 424, '_elementor_pro_version', '4.1.1'),
(4847, 424, '_elementor_global_class_usage_indexed', '1'),
(4848, 424, '_elementor_global_class_usage_indexed_preview', '1'),
(4849, 424, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(4850, 424, '_wp_page_template', 'default');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4851, 424, '_elementor_data', '[{\"id\":\"36acd947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#1D1D1D\"},\"elements\":[{\"id\":\"a61f409\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"5b64f0b6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f54abd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"0785fe6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"204810e\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f3adcba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f19265\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"65ebe43c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ba9c024\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1a4d853c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"5011 Gate Parkway Bldg 100 Suite 100  Jacksonville, FL 32256 United States\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=30.246008,-81.533169&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=5011%20Gate%20Pkwy%20Bldg%20100%2C%20Suite%20100%20Collier%20Building%2C%20Parking%20lot%20Jacksonville%2C%20FL%2032256%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"904-901-7913\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:9049017913\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bf68e29\"},{\"text\":\"904-372-6034\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:9043726034\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"030f147\"},{\"text\":\" info@optimalmentalwellness.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto: info@optimalmentalwellness.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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1004a94f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/optimal_mentalhealth?igsh=Y3Z3NjFjYnQ0cXdo\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor6\",\"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\":\"67a9f141\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"48dc4a5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39d06425\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"641fcfd9\",\"elType\":\"widget\",\"settings\":{\"business_hours\":[{\"_id\":\"da64ace\",\"opening_hours\":\"05:30\",\"closing_hours\":\"20:30\",\"closed_text\":\"Closed\"},{\"day\":\"Tuesday\",\"_id\":\"a4cc763\",\"opening_hours\":\"05:30\",\"closing_hours\":\"20:30\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"6778403\",\"opening_hours\":\"05:30\",\"closing_hours\":\"20:30\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"54a0872\",\"opening_hours\":\"05:30\",\"closing_hours\":\"20:30\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"12ce824\",\"opening_hours\":\"05:30\",\"closing_hours\":\"20:00\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"highlight\":\"yes\",\"_id\":\"9cfdedb\",\"opening_hours\":\"08:00\",\"closing_hours\":\"13:00\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor4\"}},{\"day\":\"Sunday\",\"highlight\":\"yes\",\"_id\":\"a387f05\",\"opening_hours\":\"08:00\",\"closing_hours\":\"13:00\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor4\"}}],\"business_hours_custom\":[{\"day\":\"Monday\",\"_id\":\"cee2f1e\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Tuesday\",\"_id\":\"45ae0c5\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"86a6f01\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"7a864b7\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"7829cb0\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"0ab76c1\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"872d85e\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"}],\"rows_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"3\",\"bottom\":\"5\",\"left\":\"3\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ef806cc\",\"pp_condition_date_time_before_value\":\"2024-06-11 13:29\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"closed_row_day_color\":\"globals\\/colors?id=astglobalcolor4\",\"closed_row_tex_color\":\"globals\\/colors?id=astglobalcolor4\",\"day_color\":\"globals\\/colors?id=astglobalcolor4\",\"hours_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-business-hours\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ac53f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor3\"}},\"elements\":[{\"id\":\"86a6b29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2024 All Rights Reserved\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(4797, 420, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(4818, 422, '_elementor_pro_version', '4.1.1'),
(4819, 422, '_elementor_global_class_usage_indexed', '1'),
(4820, 422, '_elementor_global_class_usage_indexed_preview', '1'),
(4821, 422, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(4822, 422, '_wp_page_template', 'default'),
(4823, 422, '_elementor_data', '[{\"id\":\"36acd947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#1D1D1D\"},\"elements\":[{\"id\":\"a61f409\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"5b64f0b6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f54abd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"0785fe6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"204810e\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f3adcba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f19265\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"65ebe43c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ba9c024\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1a4d853c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"5011 Gate Parkway Bldg 100 Suite 100  Jacksonville, FL 32256 United States\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=30.246008,-81.533169&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=5011%20Gate%20Pkwy%20Bldg%20100%2C%20Suite%20100%20Collier%20Building%2C%20Parking%20lot%20Jacksonville%2C%20FL%2032256%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"904-901-7913\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:9049017913\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bf68e29\"},{\"text\":\"904-372-6034\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:9043726034\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"030f147\"},{\"text\":\" info@optimalmentalwellness.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto: info@optimalmentalwellness.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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1004a94f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor5\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor2\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"67a9f141\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"48dc4a5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39d06425\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"641fcfd9\",\"elType\":\"widget\",\"settings\":{\"business_hours\":[{\"_id\":\"da64ace\",\"opening_hours\":\"05:30\",\"closing_hours\":\"20:30\",\"closed_text\":\"Closed\"},{\"day\":\"Tuesday\",\"_id\":\"a4cc763\",\"opening_hours\":\"05:30\",\"closing_hours\":\"20:30\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"6778403\",\"opening_hours\":\"05:30\",\"closing_hours\":\"20:30\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"54a0872\",\"opening_hours\":\"05:30\",\"closing_hours\":\"20:30\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"12ce824\",\"opening_hours\":\"05:30\",\"closing_hours\":\"20:00\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"highlight\":\"yes\",\"_id\":\"9cfdedb\",\"opening_hours\":\"08:00\",\"closing_hours\":\"13:00\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor4\"}},{\"day\":\"Sunday\",\"highlight\":\"yes\",\"_id\":\"a387f05\",\"opening_hours\":\"08:00\",\"closing_hours\":\"13:00\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor4\"}}],\"business_hours_custom\":[{\"day\":\"Monday\",\"_id\":\"cee2f1e\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Tuesday\",\"_id\":\"45ae0c5\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"86a6f01\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"7a864b7\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"7829cb0\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"0ab76c1\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"872d85e\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"}],\"rows_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"3\",\"bottom\":\"5\",\"left\":\"3\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ef806cc\",\"pp_condition_date_time_before_value\":\"2024-06-11 13:29\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"closed_row_day_color\":\"globals\\/colors?id=astglobalcolor4\",\"closed_row_tex_color\":\"globals\\/colors?id=astglobalcolor4\",\"day_color\":\"globals\\/colors?id=astglobalcolor4\",\"hours_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-business-hours\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ac53f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor3\"}},\"elements\":[{\"id\":\"86a6b29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2024 All Rights Reserved\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(4825, 422, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(4828, 423, '_elementor_source', 'post'),
(4829, 423, '_elementor_edit_mode', 'builder'),
(4830, 423, '_elementor_template_type', 'footer'),
(4831, 423, '_elementor_version', '4.1.3'),
(4832, 423, '_elementor_pro_version', '4.1.1'),
(4833, 423, '_elementor_global_class_usage_indexed', '1'),
(4834, 423, '_elementor_global_class_usage_indexed_preview', '1'),
(4835, 423, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(4836, 423, '_wp_page_template', 'default');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4837, 423, '_elementor_data', '[{\"id\":\"36acd947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#1D1D1D\"},\"elements\":[{\"id\":\"a61f409\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"5b64f0b6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f54abd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"0785fe6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"204810e\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f3adcba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f19265\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"65ebe43c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ba9c024\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1a4d853c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"5011 Gate Parkway Bldg 100 Suite 100  Jacksonville, FL 32256 United States\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=30.246008,-81.533169&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=5011%20Gate%20Pkwy%20Bldg%20100%2C%20Suite%20100%20Collier%20Building%2C%20Parking%20lot%20Jacksonville%2C%20FL%2032256%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"904-901-7913\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:9049017913\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bf68e29\"},{\"text\":\"904-372-6034\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:9043726034\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"030f147\"},{\"text\":\" info@optimalmentalwellness.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto: info@optimalmentalwellness.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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1004a94f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/optimal_mentalhealth?igsh=Y3Z3NjFjYnQ0cXdo\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor6\",\"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\":\"67a9f141\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"48dc4a5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39d06425\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"641fcfd9\",\"elType\":\"widget\",\"settings\":{\"business_hours\":[{\"_id\":\"da64ace\",\"opening_hours\":\"05:30\",\"closing_hours\":\"20:30\",\"closed_text\":\"Closed\"},{\"day\":\"Tuesday\",\"_id\":\"a4cc763\",\"opening_hours\":\"05:30\",\"closing_hours\":\"20:30\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"6778403\",\"opening_hours\":\"05:30\",\"closing_hours\":\"20:30\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"54a0872\",\"opening_hours\":\"05:30\",\"closing_hours\":\"20:30\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"12ce824\",\"opening_hours\":\"05:30\",\"closing_hours\":\"20:00\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"highlight\":\"yes\",\"_id\":\"9cfdedb\",\"opening_hours\":\"08:00\",\"closing_hours\":\"13:00\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor4\"}},{\"day\":\"Sunday\",\"highlight\":\"yes\",\"_id\":\"a387f05\",\"opening_hours\":\"08:00\",\"closing_hours\":\"13:00\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor4\"}}],\"business_hours_custom\":[{\"day\":\"Monday\",\"_id\":\"cee2f1e\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Tuesday\",\"_id\":\"45ae0c5\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"86a6f01\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"7a864b7\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"7829cb0\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"0ab76c1\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"872d85e\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"}],\"rows_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"3\",\"bottom\":\"5\",\"left\":\"3\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ef806cc\",\"pp_condition_date_time_before_value\":\"2024-06-11 13:29\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"closed_row_day_color\":\"globals\\/colors?id=astglobalcolor4\",\"closed_row_tex_color\":\"globals\\/colors?id=astglobalcolor4\",\"day_color\":\"globals\\/colors?id=astglobalcolor4\",\"hours_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-business-hours\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ac53f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor3\"}},\"elements\":[{\"id\":\"86a6b29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2024 All Rights Reserved\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(337, 51, '_wp_attached_file', '2026/06/Optimal-Mental-Health-And-Wellness-faveicon.png'),
(338, 51, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:560;s:6:\"height\";i:585;s:4:\"file\";s:55:\"2026/06/Optimal-Mental-Health-And-Wellness-faveicon.png\";s:8:\"filesize\";i:189547;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:55:\"Optimal-Mental-Health-And-Wellness-faveicon-287x300.png\";s:5:\"width\";i:287;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56226;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:55:\"Optimal-Mental-Health-And-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:22646;}}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:\"\";}}'),
(339, 52, '_wp_attached_file', '2026/06/Optimal-Mental-Health-And-Wellness-logo-a.png'),
(340, 52, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:878;s:6:\"height\";i:420;s:4:\"file\";s:53:\"2026/06/Optimal-Mental-Health-And-Wellness-logo-a.png\";s:8:\"filesize\";i:163018;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:53:\"Optimal-Mental-Health-And-Wellness-logo-a-300x144.png\";s:5:\"width\";i:300;s:6:\"height\";i:144;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24485;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:53:\"Optimal-Mental-Health-And-Wellness-logo-a-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18646;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:53:\"Optimal-Mental-Health-And-Wellness-logo-a-768x367.png\";s:5:\"width\";i:768;s:6:\"height\";i:367;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:93348;}}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:\"\";}}'),
(341, 53, '_elementor_source', 'post'),
(342, 53, '_elementor_edit_mode', 'builder'),
(343, 53, '_elementor_template_type', 'header'),
(344, 53, '_elementor_version', '4.1.3'),
(345, 53, '_elementor_pro_version', '4.1.1'),
(346, 53, '_elementor_global_class_usage_indexed', '1'),
(347, 53, '_elementor_global_class_usage_indexed_preview', '1'),
(348, 53, '_elementor_page_settings', 'a:0:{}'),
(349, 53, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(350, 48, '_wp_page_template', 'default'),
(352, 54, '_elementor_source', 'post'),
(353, 54, '_elementor_edit_mode', 'builder'),
(354, 54, '_elementor_template_type', 'header'),
(355, 54, '_elementor_version', '4.1.3'),
(356, 54, '_elementor_pro_version', '4.1.1'),
(357, 54, '_elementor_global_class_usage_indexed', '1'),
(358, 54, '_elementor_global_class_usage_indexed_preview', '1'),
(359, 54, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(360, 54, '_wp_page_template', 'default'),
(361, 54, '_elementor_data', '[{\"id\":\"7cd2407b\",\"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\":\"4b376675\",\"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\":\"14e415c9\",\"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\":\"5137f99d\",\"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\":\"416cdcb9\",\"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\":\"6090cb25\",\"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\"},\"elements\":[{\"id\":\"42e85872\",\"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\":\"5d51e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Optimal-Mental-Health-And-Wellness-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"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_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\":\"388619a3\",\"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_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\":[]}},\"elements\":[{\"id\":\"2a70cfde\",\"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\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"454cd36b\",\"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\\/optimalmentalwellness\\/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\":\"5aa4113e\",\"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}]'),
(366, 55, '_elementor_source', 'post'),
(367, 55, '_elementor_edit_mode', 'builder'),
(368, 55, '_elementor_template_type', 'header'),
(369, 55, '_elementor_version', '4.1.3'),
(370, 55, '_elementor_pro_version', '4.1.1'),
(371, 55, '_elementor_global_class_usage_indexed', '1'),
(372, 55, '_elementor_global_class_usage_indexed_preview', '1'),
(373, 55, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(374, 55, '_wp_page_template', 'default'),
(375, 55, '_elementor_data', '[{\"id\":\"7cd2407b\",\"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\":\"4b376675\",\"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\":\"14e415c9\",\"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\":\"5137f99d\",\"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\":\"416cdcb9\",\"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\":\"6090cb25\",\"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\"},\"elements\":[{\"id\":\"42e85872\",\"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\":\"5d51e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Optimal-Mental-Health-And-Wellness-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"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_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\":\"388619a3\",\"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_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\":[]}},\"elements\":[{\"id\":\"2a70cfde\",\"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\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"454cd36b\",\"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\\/optimalmentalwellness\\/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\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"5aa4113e\",\"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}]'),
(365, 48, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(377, 55, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(467, 64, '_elementor_source', 'post'),
(468, 64, '_elementor_edit_mode', 'builder'),
(469, 64, '_elementor_template_type', 'header'),
(470, 64, '_elementor_version', '4.1.3'),
(471, 64, '_elementor_pro_version', '4.1.1'),
(472, 64, '_elementor_global_class_usage_indexed', '1'),
(473, 64, '_elementor_global_class_usage_indexed_preview', '1'),
(474, 64, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(475, 64, '_wp_page_template', 'default');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(476, 64, '_elementor_data', '[{\"id\":\"7cd2407b\",\"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\":\"4b376675\",\"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\":\"14e415c9\",\"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\":\"5137f99d\",\"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\":\"416cdcb9\",\"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\":\"6090cb25\",\"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\"},\"elements\":[{\"id\":\"42e85872\",\"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\":\"5d51e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Optimal-Mental-Health-And-Wellness-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":267,\"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\":\"388619a3\",\"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_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\":[]}},\"elements\":[{\"id\":\"2a70cfde\",\"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\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"454cd36b\",\"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\\/optimalmentalwellness\\/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\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"5aa4113e\",\"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}]'),
(416, 58, '_elementor_edit_mode', 'builder'),
(432, 59, '_elementor_template_type', 'kit'),
(433, 59, '_wp_page_template', 'default'),
(434, 59, '_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:34:\"Optimal Mental Health And Wellness\";s:9:\"site_logo\";a:5:{s:3:\"url\";s:112:\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Optimal-Mental-Health-And-Wellness-logo-a.png\";s:2:\"id\";i:52;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:114:\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Optimal-Mental-Health-And-Wellness-faveicon.png\";s:2:\"id\";i:51;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:1300;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;}'),
(435, 59, '_elementor_global_classes_order', 'a:1:{s:5:\"order\";a:0:{}}'),
(436, 59, '_elementor_global_classes_labels', 'a:0:{}'),
(437, 59, '_elementor_global_classes_sync_to_v3', 'a:0:{}'),
(438, 59, '_elementor_global_classes_order_preview', 'a:1:{s:5:\"order\";a:0:{}}'),
(439, 59, '_elementor_data', '[]'),
(440, 59, '_elementor_version', '4.1.3'),
(441, 59, '_elementor_pro_version', '4.1.1'),
(442, 59, '_elementor_global_class_usage_indexed', '1'),
(443, 59, '_elementor_global_class_usage_indexed_preview', '1'),
(6803, 589, '_wp_page_template', 'elementor_header_footer'),
(382, 7, '_edit_lock', '1781602706:1'),
(383, 56, '_elementor_edit_mode', 'builder'),
(384, 56, '_elementor_template_type', 'kit'),
(385, 56, '_wp_page_template', 'default'),
(386, 56, '_elementor_page_settings', 'a:1:{s:16:\"site_description\";s:7:\"Welcome\";}'),
(387, 56, '_elementor_global_classes_order', 'a:1:{s:5:\"order\";a:0:{}}'),
(388, 56, '_elementor_global_classes_labels', 'a:0:{}'),
(389, 56, '_elementor_global_classes_sync_to_v3', 'a:0:{}'),
(390, 56, '_elementor_global_classes_order_preview', 'a:1:{s:5:\"order\";a:0:{}}'),
(392, 7, '_elementor_data', '[]'),
(393, 57, '_elementor_edit_mode', 'builder'),
(394, 57, '_elementor_template_type', 'kit'),
(395, 57, '_wp_page_template', 'default'),
(396, 57, '_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:34:\"Optimal Mental Health And 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;}'),
(397, 57, '_elementor_global_classes_order', 'a:1:{s:5:\"order\";a:0:{}}'),
(398, 57, '_elementor_global_classes_labels', 'a:0:{}'),
(399, 57, '_elementor_global_classes_sync_to_v3', 'a:0:{}'),
(400, 57, '_elementor_global_classes_order_preview', 'a:1:{s:5:\"order\";a:0:{}}'),
(402, 57, '_elementor_data', '[]'),
(404, 7, '_elementor_version', '4.1.3'),
(405, 7, '_elementor_pro_version', '4.1.1'),
(420, 58, '_elementor_global_classes_order', 'a:1:{s:5:\"order\";a:0:{}}'),
(421, 58, '_elementor_global_classes_labels', 'a:0:{}'),
(422, 58, '_elementor_global_classes_sync_to_v3', 'a:0:{}'),
(423, 58, '_elementor_global_classes_order_preview', 'a:1:{s:5:\"order\";a:0:{}}'),
(424, 58, '_elementor_data', '[]'),
(425, 58, '_elementor_version', '4.1.3'),
(426, 58, '_elementor_pro_version', '4.1.1'),
(427, 58, '_elementor_global_class_usage_indexed', '1'),
(428, 58, '_elementor_global_class_usage_indexed_preview', '1'),
(431, 59, '_elementor_edit_mode', 'builder'),
(614, 75, '_wp_page_template', 'elementor_header_footer'),
(615, 75, '_elementor_edit_mode', 'builder'),
(616, 75, '_elementor_template_type', 'wp-page'),
(617, 75, '_elementor_version', '4.1.3'),
(618, 75, '_elementor_pro_version', '4.1.1'),
(619, 75, '_elementor_global_class_usage_indexed', '1'),
(620, 75, '_elementor_global_class_usage_indexed_preview', '1'),
(621, 75, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(622, 75, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":69,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mw-a.jpg\"},{\"id\":70,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mental-ab.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"2d17b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"05f30cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br \\/>We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d15f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(494, 65, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(4747, 417, '_elementor_source', 'post'),
(4748, 417, '_elementor_edit_mode', 'builder'),
(4749, 417, '_elementor_template_type', 'footer'),
(4750, 417, '_elementor_version', '4.1.3'),
(4751, 417, '_elementor_pro_version', '4.1.1'),
(4752, 417, '_elementor_global_class_usage_indexed', '1'),
(4753, 417, '_elementor_global_class_usage_indexed_preview', '1'),
(4754, 417, '_elementor_page_settings', 'a:0:{}'),
(4755, 417, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(4756, 414, '_wp_page_template', 'default'),
(4758, 418, '_elementor_source', 'post'),
(4759, 418, '_elementor_edit_mode', 'builder'),
(4760, 418, '_elementor_template_type', 'footer'),
(4761, 418, '_elementor_version', '4.1.3'),
(4762, 418, '_elementor_pro_version', '4.1.1'),
(4763, 418, '_elementor_global_class_usage_indexed', '1'),
(4764, 418, '_elementor_global_class_usage_indexed_preview', '1'),
(4765, 418, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(4766, 418, '_wp_page_template', 'default'),
(4767, 418, '_elementor_data', '[{\"id\":\"36acd947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#1D1D1D\"},\"elements\":[{\"id\":\"a61f409\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"5b64f0b6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d330ed7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Optimal-Mental-Health-And-Wellness-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f3adcba\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f19265\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"65ebe43c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ba9c024\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor2\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1a4d853c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"XX-XXX-XXX-XXX-XX\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@catcafe.ocm\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@catcafe.ocm\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1004a94f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor5\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor2\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"67a9f141\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"48dc4a5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39d06425\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor2\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"641fcfd9\",\"elType\":\"widget\",\"settings\":{\"business_hours\":[{\"day\":\"Sunday\",\"highlight\":\"yes\",\"_id\":\"a387f05\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor2\"}},{\"_id\":\"da64ace\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\"},{\"day\":\"Tuesday\",\"_id\":\"a4cc763\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"6778403\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"54a0872\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"12ce824\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"highlight\":\"yes\",\"_id\":\"9cfdedb\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor2\"}}],\"business_hours_custom\":[{\"day\":\"Monday\",\"_id\":\"cee2f1e\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Tuesday\",\"_id\":\"45ae0c5\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"86a6f01\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"7a864b7\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"7829cb0\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"0ab76c1\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"872d85e\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"}],\"rows_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"3\",\"bottom\":\"5\",\"left\":\"3\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ef806cc\",\"pp_condition_date_time_before_value\":\"2024-06-11 13:29\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"closed_row_day_color\":\"\",\"closed_row_tex_color\":\"\",\"day_color\":\"globals\\/colors?id=astglobalcolor2\",\"hours_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-business-hours\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ac53f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor3\"}},\"elements\":[{\"id\":\"86a6b29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2024 All Rights Reserved\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(4746, 415, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(477, 64, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(6805, 589, '_elementor_global_class_usage_indexed', '1'),
(6806, 589, '_elementor_edit_mode', 'builder'),
(6807, 589, '_elementor_template_type', 'wp-page'),
(6808, 589, '_elementor_version', '4.1.3'),
(6809, 589, '_elementor_pro_version', '4.1.1'),
(6810, 589, '_elementor_global_class_usage_indexed_preview', '1'),
(6811, 589, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6812, 589, '_elementor_data', '[{\"id\":\"723c28e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"103e2d3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"00c4f2f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bdc0006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"00adcc8\"}]},\"elements\":[{\"id\":\"5b246aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0293850\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c43a09c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90cf249\"}],\"pp_display_conditions\":[{\"_id\":\"22db06d\"}]},\"elements\":[{\"id\":\"6c3d86b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"f792d6f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Arizona\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"1b37468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arizona\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"841f41b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"7736eb9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Washington\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"f34a2a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Washington\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"315c520\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"c0bf036\",\"elType\":\"widget\",\"settings\":{\"address\":\"colorado\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"960777f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Colorado\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f15109\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"27d533e\",\"elType\":\"widget\",\"settings\":{\"address\":\"florida\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"97e54f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Florida\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6813, 589, '_elementor_page_settings', 'a:0:{}'),
(6814, 590, '_wp_page_template', 'elementor_header_footer'),
(6816, 590, '_elementor_global_class_usage_indexed', '1'),
(6817, 590, '_elementor_edit_mode', 'builder'),
(6818, 590, '_elementor_template_type', 'wp-page'),
(6819, 590, '_elementor_version', '4.1.3'),
(6820, 590, '_elementor_pro_version', '4.1.1'),
(6821, 590, '_elementor_global_class_usage_indexed_preview', '1'),
(6822, 590, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6823, 590, '_elementor_data', '[{\"id\":\"723c28e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"103e2d3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"00c4f2f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bdc0006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"00adcc8\"}]},\"elements\":[{\"id\":\"5b246aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0293850\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c43a09c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90cf249\"}],\"pp_display_conditions\":[{\"_id\":\"22db06d\"}]},\"elements\":[{\"id\":\"6c3d86b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"f792d6f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Arizona\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"1b37468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arizona\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"841f41b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"7736eb9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Washington\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"f34a2a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Washington\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"315c520\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"c0bf036\",\"elType\":\"widget\",\"settings\":{\"address\":\"colorado\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"960777f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Colorado\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f15109\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"27d533e\",\"elType\":\"widget\",\"settings\":{\"address\":\"florida\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"97e54f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Florida\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f5247d6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"ef16923\",\"elType\":\"widget\",\"settings\":{\"address\":\"Oregon\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"e54df1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oregon\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(481, 64, '_elementor_screenshot_failed', '2026-06-16 09:53:03'),
(6802, 588, '_elementor_page_settings', 'a:0:{}'),
(504, 66, '_elementor_source', 'post'),
(505, 66, '_elementor_edit_mode', 'builder'),
(506, 66, '_elementor_template_type', 'header'),
(507, 66, '_elementor_version', '4.1.3'),
(508, 66, '_elementor_pro_version', '4.1.1'),
(509, 66, '_elementor_global_class_usage_indexed', '1'),
(510, 66, '_elementor_global_class_usage_indexed_preview', '1'),
(511, 66, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(512, 66, '_wp_page_template', 'default'),
(513, 66, '_elementor_data', '[{\"id\":\"7cd2407b\",\"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\":\"4b376675\",\"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\":\"14e415c9\",\"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\":\"5137f99d\",\"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\":\"416cdcb9\",\"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\":\"6090cb25\",\"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\"},\"elements\":[{\"id\":\"42e85872\",\"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\":\"5d51e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Optimal-Mental-Health-And-Wellness-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":300,\"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\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_position\":\"absolute\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"388619a3\",\"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\":\"2a70cfde\",\"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\":\"ca7841b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"590be00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"454cd36b\",\"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\\/optimalmentalwellness\\/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\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"5aa4113e\",\"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}]'),
(499, 12, '_elementor_global_class_usage_indexed', '1'),
(523, 67, '_elementor_source', 'post'),
(524, 67, '_elementor_edit_mode', 'builder'),
(525, 67, '_elementor_template_type', 'header'),
(526, 67, '_elementor_version', '4.1.3'),
(527, 67, '_elementor_pro_version', '4.1.1'),
(528, 67, '_elementor_global_class_usage_indexed', '1'),
(529, 67, '_elementor_global_class_usage_indexed_preview', '1'),
(530, 67, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(531, 67, '_wp_page_template', 'default'),
(532, 67, '_elementor_data', '[{\"id\":\"7cd2407b\",\"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\":\"4b376675\",\"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\":\"14e415c9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@optimalmentalwellness.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@optimalmentalwellness.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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5137f99d\",\"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\":\"416cdcb9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"904-901-7913\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:9049017913\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=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\":\"6090cb25\",\"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\"},\"elements\":[{\"id\":\"42e85872\",\"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\":\"5d51e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Optimal-Mental-Health-And-Wellness-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":300,\"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\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_position\":\"absolute\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"388619a3\",\"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\":\"2a70cfde\",\"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\":\"ca7841b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"590be00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"454cd36b\",\"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\\/optimalmentalwellness\\/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\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"5aa4113e\",\"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}]'),
(4957, 430, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(4961, 431, '_elementor_source', 'post'),
(503, 18, '_elementor_global_class_usage_indexed', '1'),
(514, 66, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(544, 68, '_elementor_source', 'post'),
(545, 68, '_elementor_edit_mode', 'builder'),
(546, 68, '_elementor_template_type', 'header'),
(547, 68, '_elementor_version', '4.1.3'),
(548, 68, '_elementor_pro_version', '4.1.1'),
(549, 68, '_elementor_global_class_usage_indexed', '1'),
(550, 68, '_elementor_global_class_usage_indexed_preview', '1'),
(551, 68, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(552, 68, '_wp_page_template', 'default');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(553, 68, '_elementor_data', '[{\"id\":\"7cd2407b\",\"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\":\"4b376675\",\"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\":\"14e415c9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@optimalmentalwellness.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@optimalmentalwellness.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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5137f99d\",\"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\":\"416cdcb9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"904-901-7913\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:9049017913\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=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\":\"6090cb25\",\"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\"},\"elements\":[{\"id\":\"42e85872\",\"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\":\"5d51e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Optimal-Mental-Health-And-Wellness-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":300,\"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\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_position\":\"absolute\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"388619a3\",\"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\":\"2a70cfde\",\"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\":\"ca7841b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"590be00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"454cd36b\",\"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\\/optimalmentalwellness\\/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\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"5aa4113e\",\"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}]'),
(541, 31, '_elementor_global_class_usage_indexed', '1'),
(533, 67, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(537, 67, '_elementor_screenshot_failed', '2026-06-16 09:56:00'),
(1980, 184, '_elementor_source', 'post'),
(1981, 184, '_elementor_edit_mode', 'builder'),
(1982, 184, '_elementor_template_type', 'header'),
(1983, 184, '_elementor_version', '4.1.3'),
(1984, 184, '_elementor_pro_version', '4.1.1'),
(1985, 184, '_elementor_global_class_usage_indexed', '1'),
(1986, 184, '_elementor_global_class_usage_indexed_preview', '1'),
(1987, 184, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1988, 184, '_wp_page_template', 'default'),
(1989, 184, '_elementor_data', '[{\"id\":\"7cd2407b\",\"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\":\"4b376675\",\"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\":\"14e415c9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@optimalmentalwellness.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@optimalmentalwellness.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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5137f99d\",\"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\":\"416cdcb9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"904-901-7913\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:9049017913\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=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\":\"6090cb25\",\"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\"},\"elements\":[{\"id\":\"42e85872\",\"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\":\"5d51e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Optimal-Mental-Health-And-Wellness-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":300,\"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\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_position\":\"absolute\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"388619a3\",\"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\":\"2a70cfde\",\"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\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"500\",\"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=astglobalcolor6\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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\":\"ca7841b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"590be00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"454cd36b\",\"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\\/optimalmentalwellness\\/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\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"5aa4113e\",\"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, 68, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(6779, 586, '_elementor_page_settings', 'a:0:{}'),
(6780, 587, '_wp_page_template', 'elementor_header_footer'),
(6782, 587, '_elementor_global_class_usage_indexed', '1'),
(6783, 587, '_elementor_edit_mode', 'builder'),
(6784, 587, '_elementor_template_type', 'wp-page'),
(6785, 587, '_elementor_version', '4.1.3'),
(6786, 587, '_elementor_pro_version', '4.1.1'),
(6787, 587, '_elementor_global_class_usage_indexed_preview', '1'),
(6788, 587, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6789, 587, '_elementor_data', '[{\"id\":\"723c28e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"103e2d3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"00c4f2f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bdc0006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"00adcc8\"}]},\"elements\":[{\"id\":\"5b246aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0293850\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c43a09c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90cf249\"}],\"pp_display_conditions\":[{\"_id\":\"22db06d\"}]},\"elements\":[{\"id\":\"6c3d86b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"f792d6f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Arizona\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"1b37468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arizona\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"841f41b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"7736eb9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Washington\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"f34a2a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Washington\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"315c520\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"c0bf036\",\"elType\":\"widget\",\"settings\":{\"address\":\"colorado\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"960777f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Colorado\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f15109\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"27d533e\",\"elType\":\"widget\",\"settings\":{\"address\":\"florida\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"97e54f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Florida\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6792, 588, '_wp_page_template', 'elementor_header_footer'),
(6794, 588, '_elementor_global_class_usage_indexed', '1'),
(6795, 588, '_elementor_edit_mode', 'builder'),
(6796, 588, '_elementor_template_type', 'wp-page'),
(6797, 588, '_elementor_version', '4.1.3'),
(6798, 588, '_elementor_pro_version', '4.1.1'),
(6799, 588, '_elementor_global_class_usage_indexed_preview', '1'),
(6800, 588, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6801, 588, '_elementor_data', '[{\"id\":\"723c28e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"103e2d3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"00c4f2f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bdc0006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"00adcc8\"}]},\"elements\":[{\"id\":\"5b246aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0293850\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c43a09c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90cf249\"}],\"pp_display_conditions\":[{\"_id\":\"22db06d\"}]},\"elements\":[{\"id\":\"6c3d86b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"f792d6f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Arizona\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"1b37468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arizona\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"841f41b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"7736eb9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Washington\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"f34a2a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Washington\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"315c520\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"c0bf036\",\"elType\":\"widget\",\"settings\":{\"address\":\"colorado\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"960777f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Colorado\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f15109\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"27d533e\",\"elType\":\"widget\",\"settings\":{\"address\":\"florida\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"97e54f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Florida\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4912, 428, '_elementor_source', 'post'),
(4913, 428, '_elementor_edit_mode', 'builder'),
(4914, 428, '_elementor_template_type', 'header'),
(4915, 428, '_elementor_version', '4.1.3'),
(4916, 428, '_elementor_pro_version', '4.1.1'),
(4917, 428, '_elementor_global_class_usage_indexed', '1'),
(4918, 428, '_elementor_global_class_usage_indexed_preview', '1'),
(4919, 428, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(4920, 428, '_wp_page_template', 'default');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4921, 428, '_elementor_data', '[{\"id\":\"7cd2407b\",\"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\":\"4b376675\",\"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\":\"14e415c9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@optimalmentalwellness.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@optimalmentalwellness.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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5137f99d\",\"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\":\"416cdcb9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"904-901-7913\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:9049017913\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=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\":\"6090cb25\",\"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\"},\"elements\":[{\"id\":\"42e85872\",\"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\":\"5d51e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Optimal-Mental-Health-And-Wellness-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":300,\"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\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_position\":\"absolute\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"388619a3\",\"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\":\"2a70cfde\",\"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\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"500\",\"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=astglobalcolor6\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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\":\"ca7841b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"590be00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"454cd36b\",\"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\\/optimalmentalwellness\\/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\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"5aa4113e\",\"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}]'),
(565, 20, '_elementor_global_class_usage_indexed', '1'),
(740, 84, '_wp_attached_file', '2026/06/banner-wm-a.jpg'),
(741, 84, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:800;s:4:\"file\";s:23:\"2026/06/banner-wm-a.jpg\";s:8:\"filesize\";i:200261;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"banner-wm-a-300x125.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6766;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"banner-wm-a-1024x427.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39117;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"banner-wm-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:4321;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"banner-wm-a-768x320.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24838;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:24:\"banner-wm-a-1536x640.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72784;}}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:\"\";}}'),
(784, 88, '_wp_attached_file', '2026/06/wellnes-ab.jpg'),
(785, 88, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:800;s:4:\"file\";s:22:\"2026/06/wellnes-ab.jpg\";s:8:\"filesize\";i:598882;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"wellnes-ab-300x125.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12436;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"wellnes-ab-1024x427.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112986;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"wellnes-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:8827;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"wellnes-ab-768x320.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65730;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:23:\"wellnes-ab-1536x640.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:226849;}}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:\"\";}}'),
(570, 71, '_wp_attached_file', '2026/06/banner-bva.jpg'),
(571, 71, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:22:\"2026/06/banner-bva.jpg\";s:8:\"filesize\";i:268952;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"banner-bva-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15733;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"banner-bva-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:126908;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"banner-bva-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7466;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"banner-bva-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77091;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:24:\"banner-bva-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:249653;}}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:\"\";}}'),
(581, 72, '_elementor_page_settings', 'a:0:{}'),
(8570, 721, '_elementor_template_type', 'wp-page'),
(8571, 721, '_elementor_version', '4.1.3'),
(8572, 721, '_elementor_pro_version', '4.1.1'),
(8573, 721, '_elementor_global_class_usage_indexed', '1'),
(8574, 721, '_elementor_global_class_usage_indexed_preview', '1'),
(8575, 721, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8576, 721, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":532,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":431,\"sizes\":[]}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"px\",\"size\":223,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"common_image_animation\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"},\"hide_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\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"css_classes\":\"common_image_animation \"},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/contact-bd-a.jpg\",\"id\":715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]},\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\",\"css_classes\":\"common_image_animation \"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(585, 73, '_wp_page_template', 'elementor_header_footer'),
(586, 73, '_elementor_edit_mode', 'builder'),
(587, 73, '_elementor_template_type', 'wp-page'),
(588, 73, '_elementor_version', '4.1.3'),
(589, 73, '_elementor_pro_version', '4.1.1'),
(590, 73, '_elementor_global_class_usage_indexed', '1'),
(591, 73, '_elementor_global_class_usage_indexed_preview', '1'),
(592, 73, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(593, 73, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":608,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"2d17b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"05f30cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br \\/>We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d15f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(594, 73, '_elementor_page_settings', 'a:0:{}'),
(6768, 585, '_elementor_page_settings', 'a:0:{}'),
(6769, 586, '_wp_page_template', 'elementor_header_footer'),
(6771, 586, '_elementor_global_class_usage_indexed', '1'),
(6772, 586, '_elementor_edit_mode', 'builder'),
(6773, 586, '_elementor_template_type', 'wp-page'),
(6774, 586, '_elementor_version', '4.1.3'),
(6775, 586, '_elementor_pro_version', '4.1.1'),
(6776, 586, '_elementor_global_class_usage_indexed_preview', '1'),
(6777, 586, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6778, 586, '_elementor_data', '[{\"id\":\"723c28e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"103e2d3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"00c4f2f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bdc0006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"00adcc8\"}]},\"elements\":[{\"id\":\"5b246aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0293850\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c43a09c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90cf249\"}],\"pp_display_conditions\":[{\"_id\":\"22db06d\"}]},\"elements\":[{\"id\":\"6c3d86b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"f792d6f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Arizona\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"1b37468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arizona\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"841f41b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"7736eb9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Washington\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"f34a2a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Washington\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"315c520\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"c0bf036\",\"elType\":\"widget\",\"settings\":{\"address\":\"colorado\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"960777f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Colorado\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(598, 74, '_wp_page_template', 'elementor_header_footer'),
(599, 74, '_elementor_edit_mode', 'builder'),
(600, 74, '_elementor_template_type', 'wp-page'),
(601, 74, '_elementor_version', '4.1.3'),
(602, 74, '_elementor_pro_version', '4.1.1'),
(603, 74, '_elementor_global_class_usage_indexed', '1'),
(604, 74, '_elementor_global_class_usage_indexed_preview', '1'),
(605, 74, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(606, 74, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":69,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mw-a.jpg\"},{\"id\":70,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mental-ab.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"2d17b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"05f30cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br \\/>We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d15f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8567, 720, '_elementor_page_settings', 'a:0:{}'),
(8568, 721, '_wp_page_template', 'elementor_header_footer'),
(8569, 721, '_elementor_edit_mode', 'builder'),
(682, 80, '_wp_page_template', 'elementor_header_footer'),
(656, 78, '_wp_page_template', 'elementor_header_footer'),
(657, 78, '_elementor_edit_mode', 'builder'),
(658, 78, '_elementor_template_type', 'wp-page'),
(659, 78, '_elementor_version', '4.1.3'),
(660, 78, '_elementor_pro_version', '4.1.1'),
(661, 78, '_elementor_global_class_usage_indexed', '1'),
(662, 78, '_elementor_global_class_usage_indexed_preview', '1'),
(663, 78, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(664, 78, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":69,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mw-a.jpg\"},{\"id\":70,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mental-ab.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"2d17b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"05f30cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br \\/>We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d15f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(624, 75, '_elementor_page_settings', 'a:0:{}'),
(627, 76, '_wp_page_template', 'elementor_header_footer'),
(628, 76, '_elementor_edit_mode', 'builder'),
(629, 76, '_elementor_template_type', 'wp-page'),
(630, 76, '_elementor_version', '4.1.3'),
(631, 76, '_elementor_pro_version', '4.1.1'),
(632, 76, '_elementor_global_class_usage_indexed', '1'),
(633, 76, '_elementor_global_class_usage_indexed_preview', '1'),
(634, 76, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(635, 76, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":69,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mw-a.jpg\"},{\"id\":70,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mental-ab.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"2d17b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"05f30cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br \\/>We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d15f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(637, 76, '_elementor_page_settings', 'a:0:{}'),
(640, 77, '_wp_page_template', 'elementor_header_footer'),
(641, 77, '_elementor_edit_mode', 'builder'),
(642, 77, '_elementor_template_type', 'wp-page'),
(643, 77, '_elementor_version', '4.1.3'),
(644, 77, '_elementor_pro_version', '4.1.1'),
(645, 77, '_elementor_global_class_usage_indexed', '1'),
(646, 77, '_elementor_global_class_usage_indexed_preview', '1'),
(647, 77, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(648, 77, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":69,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mw-a.jpg\"},{\"id\":70,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mental-ab.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"2d17b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"05f30cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br \\/>We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d15f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(724, 83, '_wp_page_template', 'elementor_header_footer'),
(698, 81, '_wp_page_template', 'elementor_header_footer'),
(699, 81, '_elementor_edit_mode', 'builder'),
(700, 81, '_elementor_template_type', 'wp-page'),
(701, 81, '_elementor_version', '4.1.3'),
(702, 81, '_elementor_pro_version', '4.1.1'),
(703, 81, '_elementor_global_class_usage_indexed', '1'),
(704, 81, '_elementor_global_class_usage_indexed_preview', '1'),
(705, 81, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(706, 81, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":69,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mw-a.jpg\"},{\"id\":70,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mental-ab.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"2d17b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"05f30cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br \\/>We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d15f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(666, 78, '_elementor_page_settings', 'a:0:{}'),
(669, 79, '_wp_page_template', 'elementor_header_footer'),
(670, 79, '_elementor_edit_mode', 'builder'),
(671, 79, '_elementor_template_type', 'wp-page'),
(672, 79, '_elementor_version', '4.1.3'),
(673, 79, '_elementor_pro_version', '4.1.1'),
(674, 79, '_elementor_global_class_usage_indexed', '1'),
(675, 79, '_elementor_global_class_usage_indexed_preview', '1'),
(676, 79, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(677, 79, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":69,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mw-a.jpg\"},{\"id\":70,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mental-ab.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"2d17b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"05f30cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br \\/>We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d15f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(679, 79, '_elementor_page_settings', 'a:0:{}'),
(683, 80, '_elementor_edit_mode', 'builder'),
(684, 80, '_elementor_template_type', 'wp-page'),
(685, 80, '_elementor_version', '4.1.3'),
(686, 80, '_elementor_pro_version', '4.1.1'),
(687, 80, '_elementor_global_class_usage_indexed', '1'),
(688, 80, '_elementor_global_class_usage_indexed_preview', '1'),
(689, 80, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(690, 80, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":69,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mw-a.jpg\"},{\"id\":70,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mental-ab.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"2d17b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"05f30cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br \\/>We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d15f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(768, 87, '_wp_page_template', 'elementor_header_footer'),
(742, 85, '_wp_page_template', 'elementor_header_footer'),
(743, 85, '_elementor_edit_mode', 'builder'),
(744, 85, '_elementor_template_type', 'wp-page'),
(745, 85, '_elementor_version', '4.1.3'),
(746, 85, '_elementor_pro_version', '4.1.1'),
(747, 85, '_elementor_global_class_usage_indexed', '1'),
(748, 85, '_elementor_global_class_usage_indexed_preview', '1'),
(749, 85, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(750, 85, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":69,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mw-a.jpg\"},{\"id\":70,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mental-ab.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"2d17b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"05f30cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br \\/>We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d15f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(708, 81, '_elementor_page_settings', 'a:0:{}'),
(711, 82, '_wp_page_template', 'elementor_header_footer'),
(712, 82, '_elementor_edit_mode', 'builder'),
(713, 82, '_elementor_template_type', 'wp-page'),
(714, 82, '_elementor_version', '4.1.3'),
(715, 82, '_elementor_pro_version', '4.1.1'),
(716, 82, '_elementor_global_class_usage_indexed', '1'),
(717, 82, '_elementor_global_class_usage_indexed_preview', '1'),
(718, 82, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(719, 82, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":69,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mw-a.jpg\"},{\"id\":70,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mental-ab.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"2d17b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"05f30cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br \\/>We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d15f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(721, 82, '_elementor_page_settings', 'a:0:{}'),
(725, 83, '_elementor_edit_mode', 'builder'),
(726, 83, '_elementor_template_type', 'wp-page'),
(727, 83, '_elementor_version', '4.1.3'),
(728, 83, '_elementor_pro_version', '4.1.1'),
(729, 83, '_elementor_global_class_usage_indexed', '1'),
(730, 83, '_elementor_global_class_usage_indexed_preview', '1'),
(731, 83, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(732, 83, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":69,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mw-a.jpg\"},{\"id\":70,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mental-ab.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"2d17b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"05f30cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br \\/>We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d15f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(812, 91, '_wp_page_template', 'elementor_header_footer'),
(786, 89, '_wp_page_template', 'elementor_header_footer'),
(787, 89, '_elementor_edit_mode', 'builder'),
(788, 89, '_elementor_template_type', 'wp-page'),
(789, 89, '_elementor_version', '4.1.3'),
(790, 89, '_elementor_pro_version', '4.1.1'),
(791, 89, '_elementor_global_class_usage_indexed', '1'),
(792, 89, '_elementor_global_class_usage_indexed_preview', '1'),
(793, 89, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(794, 89, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":70,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mental-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"2d17b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"05f30cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br \\/>We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d15f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(752, 85, '_elementor_page_settings', 'a:0:{}'),
(755, 86, '_wp_page_template', 'elementor_header_footer'),
(756, 86, '_elementor_edit_mode', 'builder'),
(757, 86, '_elementor_template_type', 'wp-page'),
(758, 86, '_elementor_version', '4.1.3'),
(759, 86, '_elementor_pro_version', '4.1.1'),
(760, 86, '_elementor_global_class_usage_indexed', '1'),
(761, 86, '_elementor_global_class_usage_indexed_preview', '1'),
(762, 86, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(763, 86, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":69,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mw-a.jpg\"},{\"id\":70,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mental-ab.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"2d17b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"05f30cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br \\/>We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d15f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(765, 86, '_elementor_page_settings', 'a:0:{}'),
(769, 87, '_elementor_edit_mode', 'builder'),
(770, 87, '_elementor_template_type', 'wp-page'),
(771, 87, '_elementor_version', '4.1.3'),
(772, 87, '_elementor_pro_version', '4.1.1'),
(773, 87, '_elementor_global_class_usage_indexed', '1'),
(774, 87, '_elementor_global_class_usage_indexed_preview', '1'),
(775, 87, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(776, 87, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":70,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mental-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"2d17b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"05f30cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br \\/>We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d15f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8542, 718, '_elementor_page_settings', 'a:0:{}'),
(8946, 107, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8947, 10, '_elementor_element_cache', '{\"timeout\":1784731958,\"value\":{\"content\":\"<div class=\\\"elementor-element elementor-element-ef23acb e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"ef23acb\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;slideshow&quot;,&quot;background_slideshow_gallery&quot;:[{&quot;id&quot;:71,&quot;url&quot;:&quot;https:\\\\\\/\\\\\\/mrarif.me\\\\\\/optimalmentalwellness\\\\\\/wp-content\\\\\\/uploads\\\\\\/2026\\\\\\/06\\\\\\/banner-bva.jpg&quot;},{&quot;id&quot;:84,&quot;url&quot;:&quot;https:\\\\\\/\\\\\\/mrarif.me\\\\\\/optimalmentalwellness\\\\\\/wp-content\\\\\\/uploads\\\\\\/2026\\\\\\/06\\\\\\/banner-wm-a.jpg&quot;},{&quot;id&quot;:40,&quot;url&quot;:&quot;https:\\\\\\/\\\\\\/mrarif.me\\\\\\/optimalmentalwellness\\\\\\/wp-content\\\\\\/uploads\\\\\\/2026\\\\\\/06\\\\\\/banner-ab.jpg&quot;},{&quot;id&quot;:88,&quot;url&quot;:&quot;https:\\\\\\/\\\\\\/mrarif.me\\\\\\/optimalmentalwellness\\\\\\/wp-content\\\\\\/uploads\\\\\\/2026\\\\\\/06\\\\\\/wellnes-ab.jpg&quot;}],&quot;background_slideshow_ken_burns&quot;:&quot;yes&quot;,&quot;background_slideshow_loop&quot;:&quot;yes&quot;,&quot;background_slideshow_slide_duration&quot;:5000,&quot;background_slideshow_slide_transition&quot;:&quot;fade&quot;,&quot;background_slideshow_transition_duration&quot;:500,&quot;background_slideshow_ken_burns_zoom_direction&quot;:&quot;in&quot;}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-38e4a9d e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"38e4a9d\\\" 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-7a7a1e0 elementor-widget-divider--view-line_text elementor-widget-divider--element-align-center elementor-widget elementor-widget-divider\\\" data-id=\\\"7a7a1e0\\\" 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 to \\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-a98a68b elementor-widget elementor-widget-heading\\\" data-id=\\\"a98a68b\\\" 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\\\">Optimal Mental Health And Wellness<\\/h1>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-9704ef8 elementor-widget elementor-widget-heading\\\" data-id=\\\"9704ef8\\\" 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\\\">Restoring Balance, Building Resilience<\\/h5>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-13eb8e8 elementor-align-center elementor-widget elementor-widget-button\\\" data-id=\\\"13eb8e8\\\" 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:\\/\\/clinikehr.com\\/book\\/optimal-mental-health-and-wellness-group\\\" target=\\\"_blank\\\">\\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 and 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-abd8d3e e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"abd8d3e\\\" 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-4a52b1f e-con-full e-flex e-con e-child\\\" data-id=\\\"4a52b1f\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-6cb7eda e-con-full animated-slow common_image_animation e-flex elementor-invisible e-con e-child\\\" data-id=\\\"6cb7eda\\\" 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-da1cb05 elementor-widget elementor-widget-image\\\" data-id=\\\"da1cb05\\\" 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\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\\\" class=\\\"attachment-full size-full wp-image-115\\\" 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-b6f26bf e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"b6f26bf\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInRight&quot;}\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-7ee768e e-con-full e-flex e-con e-child\\\" data-id=\\\"7ee768e\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t[elementor-element k=\\\"1103d769b8569c2f8bdcdce2a5e36940\\\" data=\\\"eyJpZCI6IjYwMTRlZjkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJmaXJzdF90ZXh0IjoiQWJvdXQgIiwic2Vjb25kX3RleHQiOiJVcyIsImZpcnN0X3RleHRfY29sb3IiOiIjNDEzMjJkIiwiZmlyc3RfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwiZmlyc3RfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MTUwLCJzaXplcyI6W119LCJzZWNvbmRfdGV4dF9jb2xvciI6IiNjZTIxNjIiLCJzZWNvbmRfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwic2Vjb25kX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjE1MCwic2l6ZXMiOltdfSwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwicHBfZGlzcGxheV9jb25kaXRpb25zIjpbeyJfaWQiOiI0YzZhOTJmIn1dLCJwcF9lbGVtZW50c190b29sdGlwX2NvbnRlbnQiOiJUb29sdGlwIENvbnRlbnQiLCJfYmFja2dyb3VuZF9iYWNrZ3JvdW5kIjoiY2xhc3NpYyIsIl9ib3JkZXJfcmFkaXVzIjp7InVuaXQiOiJweCIsInRvcCI6IjEwIiwicmlnaHQiOiIxMCIsImJvdHRvbSI6IjEwIiwibGVmdCI6IjEwIiwiaXNMaW5rZWQiOnRydWV9LCJfX2dsb2JhbHNfXyI6eyJzZWNvbmRfdGV4dF9jb2xvciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjYiLCJfYmFja2dyb3VuZF9jb2xvciI6IiIsImZpcnN0X3RleHRfY29sb3IiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3IwIn0sImZpcnN0X3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldF9leHRyYSI6eyJ1bml0IjoicHgiLCJzaXplIjo4MCwic2l6ZXMiOltdfSwic2Vjb25kX3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldF9leHRyYSI6eyJ1bml0IjoicHgiLCJzaXplIjo4MCwic2l6ZXMiOltdfSwiaGlkZV9tb2JpbGVfZXh0cmEiOiJoaWRkZW4tbW9iaWxlX2V4dHJhIiwiaGlkZV9tb2JpbGUiOiJoaWRkZW4tbW9iaWxlIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6InBwLWR1YWwtaGVhZGluZyJ9\\\"]\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"1103d769b8569c2f8bdcdce2a5e36940\\\" data=\\\"eyJpZCI6ImEwODMxYTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJmaXJzdF90ZXh0IjoiT3B0aW1hbCBNZW50YWwgSGVhbHRoICIsInNlY29uZF90ZXh0IjoiQW5kIFdlbGxuZXNzIiwicHBfZGlzcGxheV9jb25kaXRpb25zIjpbeyJfaWQiOiIzZGJmM2NkIn1dLCJwcF9lbGVtZW50c190b29sdGlwX2NvbnRlbnQiOiJUb29sdGlwIENvbnRlbnQiLCJfX2dsb2JhbHNfXyI6eyJzZWNvbmRfdGV4dF9jb2xvciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjYifX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6InBwLWR1YWwtaGVhZGluZyJ9\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-36284b1 elementor-hidden-widescreen elementor-hidden-desktop elementor-hidden-tablet_extra elementor-hidden-tablet elementor-hidden-mobile_extra elementor-hidden-mobile elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\\\" data-id=\\\"36284b1\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"icon-list.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<ul class=\\\"elementor-icon-list-items\\\">\\n\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" id=\\\"Object\\\" viewBox=\\\"0 0 64 64\\\"><circle cx=\\\"32\\\" cy=\\\"32\\\" r=\\\"20.625\\\"><\\/circle><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">About Us<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"1103d769b8569c2f8bdcdce2a5e36940\\\" data=\\\"eyJpZCI6IjEwYzdmNWYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlZGl0b3IiOiJXZSBzdHJpdmUgdG8gcHJvdmlkZSBvdXIgcGF0aWVudHMgd2l0aCB0aGUgaGlnaGVzdCBxdWFsaXR5IG9mIGNhcmUgd2hpbGUgdXRpbGl6aW5nIHRoZSBtb3N0IGNvbXByZWhlbnNpdmUgYW5kIGV2aWRlbmNlLWJhc2VkIG1vZGVscyBvZiBwc3ljaGlhdHJpYyBoZWFsdGggYW5kIHdlbGxuZXNzLiBPdXIgaW5kaXZpZHVhbGl6ZWQgcGF0aWVudC1jZW50ZXJlZCBhcHByb2FjaCwgYWxvbmcgd2l0aCBvdXIgaW50ZWdyYXRlZCBmb2N1cywgZW5hYmxlcyB1cyB0byBoZWxwIGluZGl2aWR1YWxzIGFuZCBmYW1pbGllcyBhY2hpZXZlIHRoZWlyIGRlc2lyZWQgbWVudGFsIGhlYWx0aCBvdXRjb21lcy5cblxuIiwicHBfZGlzcGxheV9jb25kaXRpb25zIjpbeyJfaWQiOiI4YTg5ZWZkIn1dLCJwcF9lbGVtZW50c190b29sdGlwX2NvbnRlbnQiOiJUb29sdGlwIENvbnRlbnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoidGV4dC1lZGl0b3IifQ==\\\"]<div class=\\\"elementor-element elementor-element-c11b493 e-con-full e-flex e-con e-child\\\" data-id=\\\"c11b493\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-d27d313 e-con-full elementor-hidden-mobile_extra elementor-hidden-mobile common_image_animation  e-flex e-con e-child\\\" data-id=\\\"d27d313\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-0254f8e elementor-widget elementor-widget-image\\\" data-id=\\\"0254f8e\\\" 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\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\\\" class=\\\"attachment-full size-full wp-image-246\\\" 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-4adfe20 e-con-full e-flex e-con e-child\\\" data-id=\\\"4adfe20\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t[elementor-element k=\\\"1103d769b8569c2f8bdcdce2a5e36940\\\" data=\\\"eyJpZCI6IjM5YjdjOTYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlZGl0b3IiOiJcblxuXHUyMDBiV2UgYXJlIGV4cGVydHMgaW4gbWVudGFsIGhlYWx0aCBhY3Jvc3MgdGhlIGxpZmVzcGFuLCBidXQgc3BlY2lhbGl6ZSBpbiBtZW50YWwgaGVhbHRoIGZvciBjaGlsZHJlbiwgYWRvbGVzY2VudHMgYW5kIHdvbWVuLCBpbmNsdWRpbmcgcmVwcm9kdWN0aXZlXC9wZXJpbmF0YWwgbWVudGFsIGhlYWx0aCB1c2luZyBpbmRpdmlkdWFsaXplZCB0cmVhdG1lbnQgcGxhbnMsIHBzeWNob3RoZXJhcHkgYW5kIGVkdWNhdGlvbiwgbnV0cml0aW9uLCBsaWZlc3R5bGUgYW5kIG1lZGljYXRpb24gbWFuYWdlbWVudCB3aGVuIG5lY2Vzc2FyeS4iLCJwcF9kaXNwbGF5X2NvbmRpdGlvbnMiOlt7Il9pZCI6IjhhODllZmQifV0sInBwX2VsZW1lbnRzX3Rvb2x0aXBfY29udGVudCI6IlRvb2x0aXAgQ29udGVudCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJ0ZXh0LWVkaXRvciJ9\\\"]\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-d6b427d services_sections e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"d6b427d\\\" 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-08135e7 e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"08135e7\\\" 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-a5f580b elementor-widget elementor-widget-heading\\\" data-id=\\\"a5f580b\\\" 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-8f3ce37 e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"8f3ce37\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInUp&quot;}\\\">\\n\\t\\t[elementor-element k=\\\"1103d769b8569c2f8bdcdce2a5e36940\\\" data=\\\"eyJpZCI6IjQ1YTcwYjEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJwcF9pbmZvX2JveGVzIjpbeyJ0aXRsZSI6IlBzeWNoaWF0cmljIEV2YWx1YXRpb24iLCJfaWQiOiI4ZGYxOTNiIiwic3VidGl0bGUiOiIiLCJkZXNjcmlwdGlvbiI6IjxwPkEgcHN5Y2hpYXRyaWMgZXZhbHVhdGlvbiBpcyBhIGNvbXByZWhlbnNpdmUgYXNzZXNzbWVudCB0aGF0IGFpbXMgdG8gdW5kZXJzdGFuZCBhbiBpbmRpdmlkdWFsJ3MgbWVudGFsIGhlYWx0aCBieSBleHBsb3JpbmcgZmFjdG9yczxcL3A+IiwiaWNvbl90eXBlIjoiaW1hZ2UiLCJpY29uX3RleHQiOiIxIiwiaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL21yYXJpZi5tZVwvb3B0aW1hbG1lbnRhbHdlbGxuZXNzXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI2XC8wNlwvUHN5Y2hpYXRyaWMtRXZhbHVhdGlvbi1hYS5qcGciLCJpZCI6MjEzLCJzaXplIjoiIiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSJ9LCJsaW5rX3R5cGUiOiJidXR0b24iLCJsaW5rIjp7InVybCI6Imh0dHBzOlwvXC9tcmFyaWYubWVcL29wdGltYWxtZW50YWx3ZWxsbmVzc1wvc2VydmljZXNcLyIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIiLCJjdXN0b21fYXR0cmlidXRlcyI6IiJ9LCJidXR0b25fdGV4dCI6IkxlYXJuIE1vcmUifSx7InRpdGxlIjoiTWVkaWNhdGlvbiAmIE51dHJpdGlvbmFsIE1hbmFnZW1lbnQiLCJzdWJ0aXRsZSI6IiIsImRlc2NyaXB0aW9uIjoiPHA+TWVkaWNhdGlvbiBtYW5hZ2VtZW50IGludm9sdmVzIHRoZSB1c2Ugb2YgcHN5Y2hpYXRyaWMgbWVkaWNhdGlvbnMgdG8gaGVscCBtYW5hZ2Ugc3ltcHRvbXMgb2YgbWVudGFsIGhlYWx0aCBkaXNvcmRlcnMuPFwvcD4iLCJpY29uX3R5cGUiOiJpbWFnZSIsImljb25fdGV4dCI6IjEiLCJpbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9vcHRpbWFsbWVudGFsd2VsbG5lc3NcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzA2XC9NZWRpY2F0aW9uLU51dHJpdGlvbmFsLWQuanBnIiwiaWQiOjE5OSwic2l6ZSI6IiIsImFsdCI6IiIsInNvdXJjZSI6ImxpYnJhcnkifSwibGlua190eXBlIjoiYnV0dG9uIiwibGluayI6eyJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9vcHRpbWFsbWVudGFsd2VsbG5lc3NcL3NlcnZpY2VzXC8iLCJpc19leHRlcm5hbCI6IiIsIm5vZm9sbG93IjoiIiwiY3VzdG9tX2F0dHJpYnV0ZXMiOiIifSwiYnV0dG9uX3RleHQiOiJMZWFybiBNb3JlIiwiX2lkIjoiNzMwYzNkNCJ9LHsidGl0bGUiOiJQc3ljaG90aGVyYXB5Iiwic3VidGl0bGUiOiIiLCJkZXNjcmlwdGlvbiI6IjxwPkluZGl2aWR1YWwgdGhlcmFweS4gQ291cGxlc1wvbWFycmlhZ2UgdGhlcmFweS48YnIgXC8+RmFtaWx5IHRoZXJhcHkuIENoaWxkXC90ZWVuIHRoZXJhcHkuIE9ubGluZTxiciBcLz50aGVyYXB5LiBDT01NT04gU1BFQ0lBTFRJRVMgJmFtcDsgYXBwcm9hY2hlczxcL3A+IiwiaWNvbl90eXBlIjoiaW1hZ2UiLCJpY29uX3RleHQiOiIxIiwiaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL21yYXJpZi5tZVwvb3B0aW1hbG1lbnRhbHdlbGxuZXNzXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI2XC8wNlwvcHN5Y2hvdGhlcmFweS1hLndlYnAiLCJpZCI6MjA5LCJzaXplIjoiIiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSJ9LCJsaW5rX3R5cGUiOiJidXR0b24iLCJsaW5rIjp7InVybCI6Imh0dHBzOlwvXC9tcmFyaWYubWVcL29wdGltYWxtZW50YWx3ZWxsbmVzc1wvc2VydmljZXNcLyIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIiLCJjdXN0b21fYXR0cmlidXRlcyI6IiJ9LCJidXR0b25fdGV4dCI6IkxlYXJuIE1vcmUiLCJfaWQiOiIwNGQ1MmVkIn1dLCJsYXlvdXQiOiJncmlkIiwidGl0bGVfaHRtbF90YWciOiJoNSIsImVxdWFsX2hlaWdodF9ib3hlcyI6InllcyIsImFsaWduIjoibGVmdCIsImNvbHVtbnNfZ2FwIjp7InVuaXQiOiJweCIsInNpemUiOjE5LCJzaXplcyI6W119LCJpbmZvX2JveF9iYWNrZ3JvdW5kX2JhY2tncm91bmQiOiJjbGFzc2ljIiwiaW5mb19ib3hfYmFja2dyb3VuZF9jb2xvciI6IiNGRkZGRkYiLCJpbmZvX2JveF9ib3JkZXJfYm9yZGVyIjoic29saWQiLCJpbmZvX2JveF9ib3JkZXJfd2lkdGgiOnsidW5pdCI6InB4IiwidG9wIjoiMSIsInJpZ2h0IjoiMSIsImJvdHRvbSI6IjEiLCJsZWZ0IjoiMSIsImlzTGlua2VkIjp0cnVlfSwiaW5mb19ib3hfYm9yZGVyX2NvbG9yIjoiI0U5RTVDRiIsImluZm9fYm94X2JvcmRlcl9yYWRpdXMiOnsidW5pdCI6InB4IiwidG9wIjoiMTAiLCJyaWdodCI6IjEwIiwiYm90dG9tIjoiMTAiLCJsZWZ0IjoiMTAiLCJpc0xpbmtlZCI6dHJ1ZX0sImluZm9fYm94X3BhZGRpbmciOnsidW5pdCI6InB4IiwidG9wIjoiMTUiLCJyaWdodCI6IjE1IiwiYm90dG9tIjoiMjUiLCJsZWZ0IjoiMTUiLCJpc0xpbmtlZCI6ZmFsc2V9LCJpY29uX2JvcmRlcl9yYWRpdXMiOnsidW5pdCI6InB4IiwidG9wIjoiMTAiLCJyaWdodCI6IjEwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwiaWNvbl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjE1IiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJpY29uX2ltZ193aWR0aCI6eyJ1bml0IjoiJSIsInNpemUiOiIiLCJzaXplcyI6W119LCJpY29uX2ltZ193aWR0aF93aWRlc2NyZWVuIjp7InVuaXQiOiIlIiwic2l6ZSI6IiIsInNpemVzIjpbXX0sImljb25faW1nX3dpZHRoX3RhYmxldF9leHRyYSI6eyJ1bml0IjoiJSIsInNpemUiOiIiLCJzaXplcyI6W119LCJpY29uX2ltZ193aWR0aF90YWJsZXQiOnsidW5pdCI6IiUiLCJzaXplIjoiIiwic2l6ZXMiOltdfSwiaWNvbl9pbWdfd2lkdGhfbW9iaWxlX2V4dHJhIjp7InVuaXQiOiIlIiwic2l6ZSI6IiIsInNpemVzIjpbXX0sImljb25faW1nX3dpZHRoX21vYmlsZSI6eyJ1bml0IjoiJSIsInNpemUiOiIiLCJzaXplcyI6W119LCJ0aXRsZV9tYXJnaW4iOnsidW5pdCI6InB4Iiwic2l6ZSI6MTYsInNpemVzIjpbXX0sImRlc2NyaXB0aW9uX21hcmdpbiI6eyJ1bml0IjoicHgiLCJzaXplIjoxNiwic2l6ZXMiOltdfSwiYnV0dG9uX2JnX2NvbG9yX25vcm1hbCI6IiMwMjAxMDEwMCIsImJ1dHRvbl9ib3JkZXJfbm9ybWFsX2JvcmRlciI6InNvbGlkIiwiYnV0dG9uX2JvcmRlcl9ub3JtYWxfd2lkdGgiOnsidW5pdCI6InB4IiwidG9wIjoiMSIsInJpZ2h0IjoiMSIsImJvdHRvbSI6IjEiLCJsZWZ0IjoiMSIsImlzTGlua2VkIjp0cnVlfSwiYnV0dG9uX2JvcmRlcl9yYWRpdXMiOnsidW5pdCI6InB4IiwidG9wIjoiMzAiLCJyaWdodCI6IjMwIiwiYm90dG9tIjoiMzAiLCJsZWZ0IjoiMzAiLCJpc0xpbmtlZCI6dHJ1ZX0sImJ1dHRvbl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjEyIiwicmlnaHQiOiIyNiIsImJvdHRvbSI6IjEyIiwibGVmdCI6IjI2IiwiaXNMaW5rZWQiOmZhbHNlfSwicHBfZGlzcGxheV9jb25kaXRpb25zIjpbeyJfaWQiOiI2MzcwNjc4In1dLCJwcF9lbGVtZW50c190b29sdGlwX2NvbnRlbnQiOiJUb29sdGlwIENvbnRlbnQiLCJfX2dsb2JhbHNfXyI6eyJpbmZvX2JveF9iYWNrZ3JvdW5kX2NvbG9yIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yNCIsImluZm9fYm94X2JvcmRlcl9jb2xvciI6IiIsImJ1dHRvbl90ZXh0X2NvbG9yX25vcm1hbCI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjYiLCJidXR0b25fYm9yZGVyX25vcm1hbF9jb2xvciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjYiLCJidXR0b25fYmdfY29sb3JfaG92ZXIiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3I2IiwiYnV0dG9uX3RleHRfY29sb3JfaG92ZXIiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3I0In0sImNvbHVtbnNfbW9iaWxlX2V4dHJhIjoiMSJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJwcC1pbmZvLWJveC1jYXJvdXNlbCJ9\\\"]\\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-b88643c e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"b88643c\\\" 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=\\\"pp-bg-effects pp-bg-effects-5b3f21a elementor-element elementor-element-5b3f21a e-con-full pp-bg-effects-yes e-flex e-con e-child\\\" data-section-id=\\\"5b3f21a\\\" data-effect-enable=\\\"yes\\\" data-animation-type=\\\"nasa\\\" data-canvas-opacity=\\\"1\\\" data-hide-max-width=\\\"none\\\" data-hide-min-width=\\\"none\\\" data-part-color=\\\"\\\" data-line-color=\\\"\\\" data-line-h-color=\\\"\\\" data-part-opacity=\\\"50\\\" data-rand-opacity=\\\"\\\" data-quantity=\\\"50\\\" data-part-size=\\\"2\\\" data-part-speed=\\\"1\\\" data-part-direction=\\\"none\\\" data-hover-effect=\\\"noeffect\\\" data-hover-size=\\\"\\\" data-id=\\\"5b3f21a\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;pp_background_effects_enable&quot;:&quot;yes&quot;,&quot;effect_hide_tablet&quot;:&quot;label_off&quot;,&quot;effect_hide_mobile&quot;:&quot;label_off&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-c3b8a30 elementor-widget__width-initial animated-slow elementor-invisible elementor-widget elementor-widget-heading\\\" data-id=\\\"c3b8a30\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-settings=\\\"{&quot;_animation&quot;:&quot;zoomIn&quot;}\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\">Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked<\\/h2>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-e72d32c elementor-align-center elementor-invisible elementor-widget elementor-widget-button\\\" data-id=\\\"e72d32c\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-settings=\\\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/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-359d0c5 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"359d0c5\\\" 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-03010df e-con-full e-flex e-con e-child\\\" data-id=\\\"03010df\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-bc7157d e-con-full e-flex elementor-invisible e-con e-child\\\" data-id=\\\"bc7157d\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInLeft&quot;}\\\">\\n\\t\\t[elementor-element k=\\\"1103d769b8569c2f8bdcdce2a5e36940\\\" data=\\\"eyJpZCI6IjQ2ZmQwZjMiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJzZWxlY3RlZF9pY29uIjp7InZhbHVlIjp7InVybCI6Imh0dHBzOlwvXC9tcmFyaWYubWVcL29wdGltYWxtZW50YWx3ZWxsbmVzc1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDZcL3N0ZXRob3Njb3BlXzI2NjYyNzYuc3ZnIiwiaWQiOjI5OX0sImxpYnJhcnkiOiJzdmcifSwiaWNvbl90ZXh0IjoiMSIsImljb25fc2l6ZSI6eyJ1bml0IjoicHgiLCJzaXplIjozMywic2l6ZXMiOltdfSwiaWNvbl9wb3NpdGlvbiI6ImxlZnQiLCJoZWFkaW5nIjoiQ29ubmVjdCBXaXRoIE1lbnRhbCBIZWFsdGgiLCJzdWJfaGVhZGluZyI6IiIsImRlc2NyaXB0aW9uIjoiQ2FsbCBvciB0ZXh0IDk4OCB0byBjb25uZWN0IHdpdGggbWVudGFsIGhlYWx0aCBwcm9mZXNzaW9uYWxzLiBWZXRlcmFucyBjYW4gcHJlc3MgMSBhZnRlciBkaWFsaW5nIDk4OCB0byBjb25uZWN0IHdpdGggdGhlIFZldGVyYW5zIENyaXNpcyBMaWZlbGluZS4iLCJkaXZpZGVyX3RpdGxlX3N3aXRjaCI6InllcyIsInRpdGxlX2h0bWxfdGFnIjoiaDUiLCJidXR0b25fdGV4dCI6IkdldCBTdGFydGVkIiwiaW5mb19ib3hfcGFkZGluZyI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxNSIsInJpZ2h0IjoiMTUiLCJib3R0b20iOiIxNSIsImxlZnQiOiIxNSIsImlzTGlua2VkIjp0cnVlfSwiaW5mb19ib3hfYmdfYmFja2dyb3VuZCI6ImNsYXNzaWMiLCJpbmZvX2JveF9ib3JkZXJfcmFkaXVzIjp7InVuaXQiOiJweCIsInRvcCI6IjE1IiwicmlnaHQiOiIxNSIsImJvdHRvbSI6IjE1IiwibGVmdCI6IjE1IiwiaXNMaW5rZWQiOnRydWV9LCJpbmZvX2JveF9zaGFkb3dfYm94X3NoYWRvd190eXBlIjoieWVzIiwiaW5mb19ib3hfc2hhZG93X2JveF9zaGFkb3ciOnsiaG9yaXpvbnRhbCI6MCwidmVydGljYWwiOjAsImJsdXIiOjEwLCJzcHJlYWQiOjAsImNvbG9yIjoicmdiYSgwLCAwLCAwLCAwLjA2KSJ9LCJpY29uX2JvcmRlcl9yYWRpdXMiOnsidW5pdCI6InB4IiwidG9wIjoiMTAwIiwicmlnaHQiOiIxMDAiLCJib3R0b20iOiIxMDAiLCJsZWZ0IjoiMTAwIiwiaXNMaW5rZWQiOnRydWV9LCJpY29uX3BhZGRpbmciOnsidW5pdCI6InB4IiwidG9wIjoiMTAiLCJyaWdodCI6IjEwIiwiYm90dG9tIjoiMTAiLCJsZWZ0IjoiMTAiLCJpc0xpbmtlZCI6dHJ1ZX0sImFsaWduIjoibGVmdCIsInRpdGxlX21hcmdpbiI6eyJ1bml0IjoicHgiLCJzaXplIjoxNywic2l6ZXMiOltdfSwiZGl2aWRlcl90aXRsZV9ib3JkZXJfdHlwZSI6ImRvdHRlZCIsImRpdmlkZXJfdGl0bGVfd2lkdGgiOnsidW5pdCI6IiUiLCJzaXplIjo5MCwic2l6ZXMiOltdfSwiZGl2aWRlcl90aXRsZV93aWR0aF93aWRlc2NyZWVuIjp7InVuaXQiOiIlIiwic2l6ZSI6IiIsInNpemVzIjpbXX0sImRpdmlkZXJfdGl0bGVfd2lkdGhfdGFibGV0X2V4dHJhIjp7InVuaXQiOiIlIiwic2l6ZSI6IiIsInNpemVzIjpbXX0sImRpdmlkZXJfdGl0bGVfd2lkdGhfdGFibGV0Ijp7InVuaXQiOiIlIiwic2l6ZSI6IiIsInNpemVzIjpbXX0sImRpdmlkZXJfdGl0bGVfd2lkdGhfbW9iaWxlX2V4dHJhIjp7InVuaXQiOiIlIiwic2l6ZSI6IiIsInNpemVzIjpbXX0sImRpdmlkZXJfdGl0bGVfd2lkdGhfbW9iaWxlIjp7InVuaXQiOiIlIiwic2l6ZSI6IiIsInNpemVzIjpbXX0sImRpdmlkZXJfdGl0bGVfYm9yZGVyX2hlaWdodCI6eyJ1bml0IjoicHgiLCJzaXplIjozLCJzaXplcyI6W119LCJkaXZpZGVyX3RpdGxlX2JvcmRlcl9jb2xvciI6IiNDNUM1QzUiLCJkaXZpZGVyX3RpdGxlX21hcmdpbiI6eyJ1bml0IjoicHgiLCJzaXplIjoxNiwic2l6ZXMiOltdfSwiZGVzY3JpcHRpb25fbWFyZ2luIjp7InVuaXQiOiJweCIsInNpemUiOjAsInNpemVzIjpbXX0sInBwX2Rpc3BsYXlfY29uZGl0aW9ucyI6W3siX2lkIjoiOWQ2YjU4NSJ9XSwicHBfZWxlbWVudHNfdG9vbHRpcF9jb250ZW50IjoiVG9vbHRpcCBDb250ZW50IiwiX19nbG9iYWxzX18iOnsiaW5mb19ib3hfYmdfY29sb3IiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3I0IiwiaWNvbl9iZ19jb2xvcl9ub3JtYWwiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3I2IiwiaWNvbl9jb2xvcl9ub3JtYWwiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3I0In19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJwcC1pbmZvLWJveCJ9\\\"][elementor-element k=\\\"1103d769b8569c2f8bdcdce2a5e36940\\\" data=\\\"eyJpZCI6IjVlN2ZjMzIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJzZWxlY3RlZF9pY29uIjp7InZhbHVlIjp7InVybCI6Imh0dHBzOlwvXC9tcmFyaWYubWVcL29wdGltYWxtZW50YWx3ZWxsbmVzc1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDZcL2JyYWluc3Rvcm1fMTc4Njk4NS5zdmciLCJpZCI6MzA2fSwibGlicmFyeSI6InN2ZyJ9LCJpY29uX3RleHQiOiIxIiwiaWNvbl9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjMzLCJzaXplcyI6W119LCJpY29uX3Bvc2l0aW9uIjoibGVmdCIsImhlYWRpbmciOiJHZW9yZ2lhIENyaXNpcyAmIEFjY2VzcyBMaW5lIiwic3ViX2hlYWRpbmciOiIiLCJkZXNjcmlwdGlvbiI6IkNhbGwgKDgwMCkgNzE1LTQyMjUgdG8gYWNjZXNzIDI0XC83IHNlcnZpY2VzLCBpbmNsdWRpbmcgbW9iaWxlIGNyaXNpcyByZXNwb25zZS4gQ2FsbGVycyBpbiBpbW1lZGlhdGUgZGFuZ2VyIHdpbGwgYmUgY29ubmVjdGVkIHRvIGxvY2FsIDkxMS4iLCJkaXZpZGVyX3RpdGxlX3N3aXRjaCI6InllcyIsInRpdGxlX2h0bWxfdGFnIjoiaDUiLCJidXR0b25fdGV4dCI6IkdldCBTdGFydGVkIiwiaW5mb19ib3hfcGFkZGluZyI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxNSIsInJpZ2h0IjoiMTUiLCJib3R0b20iOiIxNSIsImxlZnQiOiIxNSIsImlzTGlua2VkIjp0cnVlfSwiaW5mb19ib3hfYmdfYmFja2dyb3VuZCI6ImNsYXNzaWMiLCJpbmZvX2JveF9ib3JkZXJfcmFkaXVzIjp7InVuaXQiOiJweCIsInRvcCI6IjE1IiwicmlnaHQiOiIxNSIsImJvdHRvbSI6IjE1IiwibGVmdCI6IjE1IiwiaXNMaW5rZWQiOnRydWV9LCJpbmZvX2JveF9zaGFkb3dfYm94X3NoYWRvd190eXBlIjoieWVzIiwiaW5mb19ib3hfc2hhZG93X2JveF9zaGFkb3ciOnsiaG9yaXpvbnRhbCI6MCwidmVydGljYWwiOjAsImJsdXIiOjEwLCJzcHJlYWQiOjAsImNvbG9yIjoicmdiYSgwLCAwLCAwLCAwLjA2KSJ9LCJpY29uX2JvcmRlcl9yYWRpdXMiOnsidW5pdCI6InB4IiwidG9wIjoiMTAwIiwicmlnaHQiOiIxMDAiLCJib3R0b20iOiIxMDAiLCJsZWZ0IjoiMTAwIiwiaXNMaW5rZWQiOnRydWV9LCJpY29uX3BhZGRpbmciOnsidW5pdCI6InB4IiwidG9wIjoiMTAiLCJyaWdodCI6IjEwIiwiYm90dG9tIjoiMTAiLCJsZWZ0IjoiMTAiLCJpc0xpbmtlZCI6dHJ1ZX0sImFsaWduIjoibGVmdCIsInRpdGxlX21hcmdpbiI6eyJ1bml0IjoicHgiLCJzaXplIjoxNywic2l6ZXMiOltdfSwiZGl2aWRlcl90aXRsZV9ib3JkZXJfdHlwZSI6ImRvdHRlZCIsImRpdmlkZXJfdGl0bGVfd2lkdGgiOnsidW5pdCI6IiUiLCJzaXplIjo5MCwic2l6ZXMiOltdfSwiZGl2aWRlcl90aXRsZV93aWR0aF93aWRlc2NyZWVuIjp7InVuaXQiOiIlIiwic2l6ZSI6IiIsInNpemVzIjpbXX0sImRpdmlkZXJfdGl0bGVfd2lkdGhfdGFibGV0X2V4dHJhIjp7InVuaXQiOiIlIiwic2l6ZSI6IiIsInNpemVzIjpbXX0sImRpdmlkZXJfdGl0bGVfd2lkdGhfdGFibGV0Ijp7InVuaXQiOiIlIiwic2l6ZSI6IiIsInNpemVzIjpbXX0sImRpdmlkZXJfdGl0bGVfd2lkdGhfbW9iaWxlX2V4dHJhIjp7InVuaXQiOiIlIiwic2l6ZSI6IiIsInNpemVzIjpbXX0sImRpdmlkZXJfdGl0bGVfd2lkdGhfbW9iaWxlIjp7InVuaXQiOiIlIiwic2l6ZSI6IiIsInNpemVzIjpbXX0sImRpdmlkZXJfdGl0bGVfYm9yZGVyX2hlaWdodCI6eyJ1bml0IjoicHgiLCJzaXplIjozLCJzaXplcyI6W119LCJkaXZpZGVyX3RpdGxlX2JvcmRlcl9jb2xvciI6IiNDNUM1QzUiLCJkaXZpZGVyX3RpdGxlX21hcmdpbiI6eyJ1bml0IjoicHgiLCJzaXplIjoxNiwic2l6ZXMiOltdfSwiZGVzY3JpcHRpb25fbWFyZ2luIjp7InVuaXQiOiJweCIsInNpemUiOjAsInNpemVzIjpbXX0sInBwX2Rpc3BsYXlfY29uZGl0aW9ucyI6W3siX2lkIjoiOWQ2YjU4NSJ9XSwicHBfZWxlbWVudHNfdG9vbHRpcF9jb250ZW50IjoiVG9vbHRpcCBDb250ZW50IiwiX19nbG9iYWxzX18iOnsiaW5mb19ib3hfYmdfY29sb3IiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3I0IiwiaWNvbl9iZ19jb2xvcl9ub3JtYWwiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3I2IiwiaWNvbl9jb2xvcl9ub3JtYWwiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3I0In19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJwcC1pbmZvLWJveCJ9\\\"][elementor-element k=\\\"1103d769b8569c2f8bdcdce2a5e36940\\\" data=\\\"eyJpZCI6IjJkYjRkNGMiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJzZWxlY3RlZF9pY29uIjp7InZhbHVlIjp7InVybCI6Imh0dHBzOlwvXC9tcmFyaWYubWVcL29wdGltYWxtZW50YWx3ZWxsbmVzc1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDZcL211c2ljXzE0MzMyNTMwLnN2ZyIsImlkIjozMTB9LCJsaWJyYXJ5Ijoic3ZnIn0sImljb25fdGV4dCI6IjEiLCJpY29uX3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzMsInNpemVzIjpbXX0sImljb25fcG9zaXRpb24iOiJsZWZ0IiwiaGVhZGluZyI6Ik5BTUkgSGVscExpbmUiLCJzdWJfaGVhZGluZyI6IiIsImRlc2NyaXB0aW9uIjoiQ2FsbCAoODAwKSA5NTAtTkFNSSAoNjI2NCkgb3IgdGV4dCBcIkhlbHBMaW5lXCIgdG8gNjI2NDAgdG8gY29ubmVjdCB3aXRoIGEgc3BlY2lhbGlzdCBmb3Igc3VwcG9ydCwgaW5mb3JtYXRpb24sIGFuZCByZXNvdXJjZXMuIiwiZGl2aWRlcl90aXRsZV9zd2l0Y2giOiJ5ZXMiLCJ0aXRsZV9odG1sX3RhZyI6Img1IiwiYnV0dG9uX3RleHQiOiJHZXQgU3RhcnRlZCIsImluZm9fYm94X3BhZGRpbmciOnsidW5pdCI6InB4IiwidG9wIjoiMTUiLCJyaWdodCI6IjE1IiwiYm90dG9tIjoiMTUiLCJsZWZ0IjoiMTUiLCJpc0xpbmtlZCI6dHJ1ZX0sImluZm9fYm94X2JnX2JhY2tncm91bmQiOiJjbGFzc2ljIiwiaW5mb19ib3hfYm9yZGVyX3JhZGl1cyI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxNSIsInJpZ2h0IjoiMTUiLCJib3R0b20iOiIxNSIsImxlZnQiOiIxNSIsImlzTGlua2VkIjp0cnVlfSwiaW5mb19ib3hfc2hhZG93X2JveF9zaGFkb3dfdHlwZSI6InllcyIsImluZm9fYm94X3NoYWRvd19ib3hfc2hhZG93Ijp7Imhvcml6b250YWwiOjAsInZlcnRpY2FsIjowLCJibHVyIjoxMCwic3ByZWFkIjowLCJjb2xvciI6InJnYmEoMCwgMCwgMCwgMC4wNikifSwiaWNvbl9ib3JkZXJfcmFkaXVzIjp7InVuaXQiOiJweCIsInRvcCI6IjEwMCIsInJpZ2h0IjoiMTAwIiwiYm90dG9tIjoiMTAwIiwibGVmdCI6IjEwMCIsImlzTGlua2VkIjp0cnVlfSwiaWNvbl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjEwIiwicmlnaHQiOiIxMCIsImJvdHRvbSI6IjEwIiwibGVmdCI6IjEwIiwiaXNMaW5rZWQiOnRydWV9LCJhbGlnbiI6ImxlZnQiLCJ0aXRsZV9tYXJnaW4iOnsidW5pdCI6InB4Iiwic2l6ZSI6MTcsInNpemVzIjpbXX0sImRpdmlkZXJfdGl0bGVfYm9yZGVyX3R5cGUiOiJkb3R0ZWQiLCJkaXZpZGVyX3RpdGxlX3dpZHRoIjp7InVuaXQiOiIlIiwic2l6ZSI6OTAsInNpemVzIjpbXX0sImRpdmlkZXJfdGl0bGVfd2lkdGhfd2lkZXNjcmVlbiI6eyJ1bml0IjoiJSIsInNpemUiOiIiLCJzaXplcyI6W119LCJkaXZpZGVyX3RpdGxlX3dpZHRoX3RhYmxldF9leHRyYSI6eyJ1bml0IjoiJSIsInNpemUiOiIiLCJzaXplcyI6W119LCJkaXZpZGVyX3RpdGxlX3dpZHRoX3RhYmxldCI6eyJ1bml0IjoiJSIsInNpemUiOiIiLCJzaXplcyI6W119LCJkaXZpZGVyX3RpdGxlX3dpZHRoX21vYmlsZV9leHRyYSI6eyJ1bml0IjoiJSIsInNpemUiOiIiLCJzaXplcyI6W119LCJkaXZpZGVyX3RpdGxlX3dpZHRoX21vYmlsZSI6eyJ1bml0IjoiJSIsInNpemUiOiIiLCJzaXplcyI6W119LCJkaXZpZGVyX3RpdGxlX2JvcmRlcl9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6Mywic2l6ZXMiOltdfSwiZGl2aWRlcl90aXRsZV9ib3JkZXJfY29sb3IiOiIjQzVDNUM1IiwiZGl2aWRlcl90aXRsZV9tYXJnaW4iOnsidW5pdCI6InB4Iiwic2l6ZSI6MTYsInNpemVzIjpbXX0sImRlc2NyaXB0aW9uX21hcmdpbiI6eyJ1bml0IjoicHgiLCJzaXplIjowLCJzaXplcyI6W119LCJwcF9kaXNwbGF5X2NvbmRpdGlvbnMiOlt7Il9pZCI6IjlkNmI1ODUifV0sInBwX2VsZW1lbnRzX3Rvb2x0aXBfY29udGVudCI6IlRvb2x0aXAgQ29udGVudCIsIl9fZ2xvYmFsc19fIjp7ImluZm9fYm94X2JnX2NvbG9yIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yNCIsImljb25fYmdfY29sb3Jfbm9ybWFsIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yNiIsImljb25fY29sb3Jfbm9ybWFsIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yNCJ9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoicHAtaW5mby1ib3gifQ==\\\"]\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-2867412 e-con-full common_image_animation  e-flex elementor-invisible e-con e-child\\\" data-id=\\\"2867412\\\" 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-48015a7 elementor-widget elementor-widget-image\\\" data-id=\\\"48015a7\\\" 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\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\\\" class=\\\"attachment-full size-full wp-image-317\\\" 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-40692ae find_support e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"40692ae\\\" 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-87620b3 e-con-full e-flex elementor-invisible e-con e-child\\\" data-id=\\\"87620b3\\\" 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-4699dcc elementor-widget elementor-widget-heading\\\" data-id=\\\"4699dcc\\\" 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\\\">Find Support<\\/h2>\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"1103d769b8569c2f8bdcdce2a5e36940\\\" data=\\\"eyJpZCI6ImEwMWZlNjIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlZGl0b3IiOiJIZXJlIGlzIGEgbGlzdCBvZiBpbXBvcnRhbnQgbWVudGFsIGhlYWx0aCBwaG9uZSBudW1iZXJzIGFuZCB3ZWJzaXRlcyB0aGF0IGNhbiBiZSB2YWx1YWJsZSByZXNvdXJjZXMgZm9yIHNlZWtpbmcgaGVscDoiLCJhbGlnbiI6ImNlbnRlciIsInBwX2Rpc3BsYXlfY29uZGl0aW9ucyI6W3siX2lkIjoiM2RjNDQ0MCJ9XSwicHBfZWxlbWVudHNfdG9vbHRpcF9jb250ZW50IjoiVG9vbHRpcCBDb250ZW50In0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6InRleHQtZWRpdG9yIn0=\\\"]\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-1f645d4 e-con-full e-flex elementor-invisible e-con e-child\\\" data-id=\\\"1f645d4\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInUp&quot;}\\\">\\n\\t\\t[elementor-element k=\\\"1103d769b8569c2f8bdcdce2a5e36940\\\" data=\\\"eyJpZCI6IjI2NDJjZGEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJwcF9pbmZvX2JveGVzIjpbeyJ0aXRsZSI6IkVtZXJnZW5jeSBhbmQgQ3Jpc2lzIEhvdGxpbmVzIiwiX2lkIjoiMWIwYWM1OSIsInN1YnRpdGxlIjoiIiwiZGVzY3JpcHRpb24iOiI8cD5OYXRpb25hbCBTdWljaWRlIFByZXZlbnRpb24gTGlmZWxpbmUgKFVTQSk8XC9wPjxwPlBob25lOiA8YSBocmVmPVwidGVsOjE4MDAyNzM4MjU1XCI+MS04MDAtMjczLVRBTEsgKDEtODAwLTI3My04MjU1KTxcL2E+PFwvcD4iLCJpY29uX3R5cGUiOiJub25lIiwiaWNvbl90ZXh0IjoiMSIsImxpbmtfdHlwZSI6ImJ1dHRvbiIsImxpbmsiOnsidXJsIjoiaHR0cHM6XC9cLzk4OGxpZmVsaW5lLm9yZ1wvIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93IjoiIiwiY3VzdG9tX2F0dHJpYnV0ZXMiOiIifSwiYnV0dG9uX3RleHQiOiJDbGljayBIZXJlICJ9LHsidGl0bGUiOiJDcmlzaXMgVGV4dCBMaW5lIChVU0EpIiwic3VidGl0bGUiOiIiLCJkZXNjcmlwdGlvbiI6IjxwPlRleHQgSE9NRSB0byA8YSBocmVmPVwidGVsOjc0MTc0MVwiPjc0MTc0MTxcL2E+PFwvcD4iLCJpY29uX3R5cGUiOiJub25lIiwiaWNvbl90ZXh0IjoiMSIsImxpbmtfdHlwZSI6ImJ1dHRvbiIsImxpbmsiOnsidXJsIjoiaHR0cHM6XC9cL3d3dy5jcmlzaXN0ZXh0bGluZS5vcmdcLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6IiIsImN1c3RvbV9hdHRyaWJ1dGVzIjoiIn0sImJ1dHRvbl90ZXh0IjoiQ2xpY2sgSGVyZSAiLCJfaWQiOiJiMGYyN2M3In0seyJ0aXRsZSI6IlNBTUhTQVx1MjAxOXMgTmF0aW9uYWwgSGVscGxpbmUiLCJzdWJ0aXRsZSI6IiIsImRlc2NyaXB0aW9uIjoiPHA+U3Vic3RhbmNlIEFidXNlIGFuZCBNZW50YWwgSGVhbHRoIFNlcnZpY2VzIEFkbWluaXN0cmF0aW9uPFwvcD48cD5QaG9uZTogPGEgaHJlZj1cInRlbDoxODAwNjYyNDM1N1wiPjEtODAwLTY2Mi1IRUxQICgxLTgwMC02NjItNDM1Nyk8XC9hPjxcL3A+IiwiaWNvbl90eXBlIjoibm9uZSIsImljb25fdGV4dCI6IjEiLCJsaW5rX3R5cGUiOiJidXR0b24iLCJsaW5rIjp7InVybCI6Imh0dHBzOlwvXC9zYW1oc2EuZ292XC9maW5kLWhlbHBcL25hdGlvbmFsLWhlbHBsaW5lIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93IjoiIiwiY3VzdG9tX2F0dHJpYnV0ZXMiOiIifSwiYnV0dG9uX3RleHQiOiJDbGljayBIZXJlICIsIl9pZCI6IjFmYjVjNGQifSx7InRpdGxlIjoiVmV0ZXJhbnMgQ3Jpc2lzIExpbmUgKFVTQSkiLCJzdWJ0aXRsZSI6IiIsImRlc2NyaXB0aW9uIjoiPHA+UGhvbmU6IDxhIGhyZWY9XCJ0ZWw6MTgwMDI3MzgyNTVcIj4xLTgwMC0yNzMtODI1NSAoUHJlc3MgMSk8XC9hPjxcL3A+PHA+VGV4dDogPGEgaHJlZj1cInNtczo4MzgyNTVcIj44MzgyNTU8XC9hPjxcL3A+IiwiaWNvbl90eXBlIjoibm9uZSIsImljb25fdGV4dCI6IjEiLCJsaW5rX3R5cGUiOiJidXR0b24iLCJsaW5rIjp7InVybCI6Imh0dHBzOlwvXC93d3cudmV0ZXJhbnNjcmlzaXNsaW5lLm5ldFwvIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93IjoiIiwiY3VzdG9tX2F0dHJpYnV0ZXMiOiIifSwiYnV0dG9uX3RleHQiOiJDbGljayBIZXJlICIsIl9pZCI6IjA1ODQ0MGYifSx7InRpdGxlIjoiR2VuZXJhbCBNZW50YWwgSGVhbHRoIFJlc291cmNlcyIsInN1YnRpdGxlIjoiIiwiZGVzY3JpcHRpb24iOiI8cD5QaG9uZTogPGEgaHJlZj1cInRlbDoxODAwOTUwNjI2NFwiPjEtODAwLTk1MC1OQU1JICgxLTgwMC05NTAtNjI2NCk8XC9hPjxcL3A+IiwiaWNvbl90eXBlIjoibm9uZSIsImljb25fdGV4dCI6IjEiLCJsaW5rX3R5cGUiOiJidXR0b24iLCJsaW5rIjp7InVybCI6Imh0dHBzOlwvXC93d3cubmFtaS5vcmdcLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6IiIsImN1c3RvbV9hdHRyaWJ1dGVzIjoiIn0sImJ1dHRvbl90ZXh0IjoiQ2xpY2sgSGVyZSAiLCJfaWQiOiIyODBjMmI2In0seyJ0aXRsZSI6Ik1lbnRhbCBIZWFsdGggQW1lcmljYSAoTUhBKSIsInN1YnRpdGxlIjoiIiwiZGVzY3JpcHRpb24iOiI8cD5QaG9uZTogPGEgaHJlZj1cInRlbDoxODAwOTY5NjY0MlwiPjEtODAwLTk2OS02NjQyPFwvYT48XC9wPiIsImljb25fdHlwZSI6Im5vbmUiLCJpY29uX3RleHQiOiIxIiwibGlua190eXBlIjoiYnV0dG9uIiwibGluayI6eyJ1cmwiOiJodHRwczpcL1wvbWhhbmF0aW9uYWwub3JnXC8iLCJpc19leHRlcm5hbCI6Im9uIiwibm9mb2xsb3ciOiIiLCJjdXN0b21fYXR0cmlidXRlcyI6IiJ9LCJidXR0b25fdGV4dCI6IkNsaWNrIEhlcmUgIiwiX2lkIjoiMjk2NDE2YyJ9LHsidGl0bGUiOiJBbnhpZXR5IGFuZCBEZXByZXNzaW9uIEFzc29jaWF0aW9uIG9mIEFtZXJpY2EgKEFEQUEpIiwic3VidGl0bGUiOiIiLCJkZXNjcmlwdGlvbiI6IiIsImljb25fdHlwZSI6Im5vbmUiLCJpY29uX3RleHQiOiIxIiwibGlua190eXBlIjoiYnV0dG9uIiwibGluayI6eyJ1cmwiOiJodHRwczpcL1wvYWRhYS5vcmdcLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6IiIsImN1c3RvbV9hdHRyaWJ1dGVzIjoiIn0sImJ1dHRvbl90ZXh0IjoiQ2xpY2sgSGVyZSAiLCJfaWQiOiIzODM5OWMzIn0seyJ0aXRsZSI6IlNwZWNpYWxpemVkIFN1cHBvcnQ6Iiwic3VidGl0bGUiOiIiLCJkZXNjcmlwdGlvbiI6IjxwPlRyZXZvciBQcm9qZWN0IChMR0JUUSBZb3V0aCk8XC9wPjxwPlBob25lOiA8YSBocmVmPVwidGVsOjE4NjY0ODg3Mzg2XCI+MS04NjYtNDg4LTczODY8XC9hPjxcL3A+PHA+VGV4dDogPGEgaHJlZj1cInNtczo2Nzg2NzhcIj5UZXh0IFNUQVJUIHRvIDY3ODY3ODxcL2E+PFwvcD4iLCJpY29uX3R5cGUiOiJub25lIiwiaWNvbl90ZXh0IjoiMSIsImxpbmtfdHlwZSI6ImJ1dHRvbiIsImxpbmsiOnsidXJsIjoiaHR0cHM6XC9cL3d3dy50aGV0cmV2b3Jwcm9qZWN0Lm9yZ1wvIiwiaXNfZXh0ZXJuYWwiOiJvbiIsIm5vZm9sbG93IjoiIiwiY3VzdG9tX2F0dHJpYnV0ZXMiOiIifSwiYnV0dG9uX3RleHQiOiJDbGljayBIZXJlICIsIl9pZCI6ImEwNDZiYTYifSx7InRpdGxlIjoiUkFJTk4iLCJzdWJ0aXRsZSI6IiIsImRlc2NyaXB0aW9uIjoiPHA+UmFwZSwgQWJ1c2UgJmFtcDsgSW5jZXN0IE5hdGlvbmFsIE5ldHdvcms8XC9wPjxwPlBob25lOiA8YSBocmVmPVwidGVsOjE4MDA2NTY0NjczXCI+MS04MDAtNjU2LUhPUEUgKDEtODAwLTY1Ni00NjczKTxcL2E+PFwvcD4iLCJpY29uX3R5cGUiOiJub25lIiwiaWNvbl90ZXh0IjoiMSIsImxpbmtfdHlwZSI6ImJ1dHRvbiIsImxpbmsiOnsidXJsIjoiaHR0cHM6XC9cL3d3dy5yYWlubi5vcmdcLyIsImlzX2V4dGVybmFsIjoib24iLCJub2ZvbGxvdyI6IiIsImN1c3RvbV9hdHRyaWJ1dGVzIjoiIn0sImJ1dHRvbl90ZXh0IjoiQ2xpY2sgSGVyZSAiLCJfaWQiOiI3M2Y1YjQ2In1dLCJsYXlvdXQiOiJncmlkIiwidGl0bGVfaHRtbF90YWciOiJoNSIsImVxdWFsX2hlaWdodF9ib3hlcyI6InllcyIsImFsaWduIjoibGVmdCIsImluZm9fYm94X2JvcmRlcl9ib3JkZXIiOiJzb2xpZCIsImluZm9fYm94X2JvcmRlcl93aWR0aCI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxIiwicmlnaHQiOiIxIiwiYm90dG9tIjoiNSIsImxlZnQiOiIxIiwiaXNMaW5rZWQiOmZhbHNlfSwiaW5mb19ib3hfYm9yZGVyX2NvbG9yIjoiI0NFMjE2MjMzIiwiaW5mb19ib3hfYm9yZGVyX3JhZGl1cyI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMTAiLCJib3R0b20iOiIxMCIsImxlZnQiOiIxMCIsImlzTGlua2VkIjp0cnVlfSwiaW5mb19ib3hfcGFkZGluZyI6eyJ1bml0IjoicHgiLCJ0b3AiOiIyMCIsInJpZ2h0IjoiMjAiLCJib3R0b20iOiIyNSIsImxlZnQiOiIyMCIsImlzTGlua2VkIjpmYWxzZX0sImRlc2NyaXB0aW9uX21hcmdpbiI6eyJ1bml0IjoicHgiLCJzaXplIjoxNywic2l6ZXMiOltdfSwiYnV0dG9uX3RleHRfY29sb3Jfbm9ybWFsIjoiI0ZGRkZGRiIsImJ1dHRvbl9iZ19jb2xvcl9ub3JtYWwiOiIjY2UyMTYyIiwiYnV0dG9uX3RleHRfY29sb3JfaG92ZXIiOiIjMzAzMDMwIiwiYnV0dG9uX2JnX2NvbG9yX2hvdmVyIjoiI2VkZDMyYiIsInBwX2Rpc3BsYXlfY29uZGl0aW9ucyI6W3siX2lkIjoiNWEwNmI4OSJ9XSwicHBfZWxlbWVudHNfdG9vbHRpcF9jb250ZW50IjoiVG9vbHRpcCBDb250ZW50IiwiX19nbG9iYWxzX18iOnsiaW5mb19ib3hfYm9yZGVyX2NvbG9yIjoiIiwiYnV0dG9uX2JnX2NvbG9yX25vcm1hbCI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjYiLCJidXR0b25fdGV4dF9jb2xvcl9ub3JtYWwiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3I0IiwiYnV0dG9uX3RleHRfY29sb3JfaG92ZXIiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3IyIiwiYnV0dG9uX2JnX2NvbG9yX2hvdmVyIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yMSJ9LCJjb2x1bW5zX21vYmlsZV9leHRyYSI6IjEifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoicHAtaW5mby1ib3gtY2Fyb3VzZWwifQ==\\\"]\\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-37021e57 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"37021e57\\\" 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-3a4da6c7 e-con-full e-flex elementor-invisible e-con e-child\\\" data-id=\\\"3a4da6c7\\\" 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-63826c75 elementor-widget elementor-widget-heading\\\" data-id=\\\"63826c75\\\" 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\\\">Latest Thoughts on Mental Wellness &amp; Care<\\/h2>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-6f7dfdec e-con-full e-flex elementor-invisible e-con e-child\\\" data-id=\\\"6f7dfdec\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInUp&quot;}\\\">\\n\\t\\t[elementor-element k=\\\"1103d769b8569c2f8bdcdce2a5e36940\\\" data=\\\"eyJpZCI6IjY1YTllNTU0IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiY2xhc3NpY19jb2x1bW5zX21vYmlsZV9leHRyYSI6IjEiLCJjbGFzc2ljX3RodW1ibmFpbF9zaXplX3NpemUiOiJmdWxsIiwiY2xhc3NpY19leGNlcnB0X2xlbmd0aCI6MTIsImNsYXNzaWNfbWV0YV9kYXRhIjpbXSwiY2xhc3NpY19tZXRhX3NlcGFyYXRvciI6IlwvXC9cLyIsImNsYXNzaWNfcmVhZF9tb3JlX3RleHQiOiJSZWFkIE1vcmUgXHUwMGJiIiwiY2FyZHNfbWV0YV9zZXBhcmF0b3IiOiJcdTIwMjIiLCJjYXJkc19yZWFkX21vcmVfdGV4dCI6IlJlYWQgTW9yZSBcdTAwYmIiLCJmdWxsX2NvbnRlbnRfbWV0YV9zZXBhcmF0b3IiOiJcL1wvXC8iLCJjbGFzc2ljX2NvbnRlbnRfcGFkZGluZyI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMjAiLCJib3R0b20iOiIyMCIsImxlZnQiOiIyMCIsImlzTGlua2VkIjpmYWxzZX0sImNsYXNzaWNfYm94X3NoYWRvd19ib3hfc2hhZG93X3R5cGUiOiJ5ZXMiLCJjbGFzc2ljX2JveF9zaGFkb3dfYm94X3NoYWRvdyI6eyJob3Jpem9udGFsIjowLCJ2ZXJ0aWNhbCI6MCwiYmx1ciI6MTAsInNwcmVhZCI6MCwiY29sb3IiOiJyZ2JhKDAsIDAsIDAsIDAuMDkpIn0sImNsYXNzaWNfdGl0bGVfY29sb3IiOiIjMDAwMDAwIiwiY2xhc3NpY190aXRsZV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJjbGFzc2ljX3RpdGxlX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjIyLCJzaXplcyI6W119LCJjbGFzc2ljX3RpdGxlX3NwYWNpbmciOnsidW5pdCI6InB4Iiwic2l6ZSI6MTIsInNpemVzIjpbXX0sImNsYXNzaWNfbWV0YV9jb2xvciI6IiMwMDAwMDAiLCJjbGFzc2ljX21ldGFfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwiY2xhc3NpY19tZXRhX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjE2LCJzaXplcyI6W119LCJjbGFzc2ljX2V4Y2VycHRfY29sb3IiOiIjMDAwMDAwIiwiY2xhc3NpY19leGNlcnB0X3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsImNsYXNzaWNfZXhjZXJwdF90eXBvZ3JhcGh5X2ZvbnRfc2l6ZSI6eyJ1bml0IjoicHgiLCJzaXplIjoxNiwic2l6ZXMiOltdfSwiY2xhc3NpY19yZWFkX21vcmVfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwiY2xhc3NpY19yZWFkX21vcmVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MTYsInNpemVzIjpbXX0sInBhZ2luYXRpb25fcGFnZV9saW1pdCI6IjUiLCJwYWdpbmF0aW9uX3ByZXZfbGFiZWwiOiImbGFxdW87IFByZXZpb3VzIiwicGFnaW5hdGlvbl9uZXh0X2xhYmVsIjoiTmV4dCAmcmFxdW87IiwidGV4dCI6IkxvYWQgTW9yZSIsImxvYWRfbW9yZV9ub19wb3N0c19jdXN0b21fbWVzc2FnZSI6Ik5vIG1vcmUgcG9zdHMgdG8gc2hvdyIsInBwX2Rpc3BsYXlfY29uZGl0aW9ucyI6W3siX2lkIjoiYjkyNzA4MiIsInBwX2NvbmRpdGlvbl9kYXRlX3RpbWVfYmVmb3JlX3ZhbHVlIjoiMjAyNC0xMS0wNiAxNjozNyJ9XSwicHBfZWxlbWVudHNfdG9vbHRpcF9jb250ZW50IjoiVG9vbHRpcCBDb250ZW50IiwiX19nbG9iYWxzX18iOnsiY2xhc3NpY190aXRsZV9jb2xvciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjMiLCJjbGFzc2ljX21ldGFfY29sb3IiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3IzIiwiY2xhc3NpY19leGNlcnB0X2NvbG9yIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yMyIsImNsYXNzaWNfcmVhZF9tb3JlX2NvbG9yIjoiIiwiY2xhc3NpY19ib3hfYmdfY29sb3IiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3I0In0sImNsYXNzaWNfcG9zdHNfcGVyX3BhZ2UiOjN9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJwb3N0cyJ9\\\"]\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\",\"scripts\":[\"pp-bg-effects\",\"particles\"],\"styles\":[]}}'),
(828, 92, '_wp_page_template', 'elementor_header_footer'),
(829, 92, '_elementor_edit_mode', 'builder'),
(830, 92, '_elementor_template_type', 'wp-page'),
(831, 92, '_elementor_version', '4.1.3'),
(832, 92, '_elementor_pro_version', '4.1.1'),
(833, 92, '_elementor_global_class_usage_indexed', '1'),
(834, 92, '_elementor_global_class_usage_indexed_preview', '1'),
(835, 92, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(836, 92, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"2d17b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"05f30cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br \\/>We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d15f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(796, 89, '_elementor_page_settings', 'a:0:{}'),
(799, 90, '_wp_page_template', 'elementor_header_footer'),
(800, 90, '_elementor_edit_mode', 'builder'),
(801, 90, '_elementor_template_type', 'wp-page'),
(802, 90, '_elementor_version', '4.1.3'),
(803, 90, '_elementor_pro_version', '4.1.1'),
(804, 90, '_elementor_global_class_usage_indexed', '1'),
(805, 90, '_elementor_global_class_usage_indexed_preview', '1'),
(806, 90, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(807, 90, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":70,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mental-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"2d17b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"05f30cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br \\/>We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d15f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(809, 90, '_elementor_page_settings', 'a:0:{}'),
(813, 91, '_elementor_edit_mode', 'builder'),
(814, 91, '_elementor_template_type', 'wp-page'),
(815, 91, '_elementor_version', '4.1.3'),
(816, 91, '_elementor_pro_version', '4.1.1'),
(817, 91, '_elementor_global_class_usage_indexed', '1'),
(818, 91, '_elementor_global_class_usage_indexed_preview', '1'),
(819, 91, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(820, 91, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"2d17b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"05f30cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br \\/>We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d15f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(868, 95, '_wp_page_template', 'elementor_header_footer'),
(869, 95, '_elementor_edit_mode', 'builder'),
(870, 95, '_elementor_template_type', 'wp-page'),
(871, 95, '_elementor_version', '4.1.3'),
(872, 95, '_elementor_pro_version', '4.1.1'),
(873, 95, '_elementor_global_class_usage_indexed', '1'),
(874, 95, '_elementor_global_class_usage_indexed_preview', '1'),
(875, 95, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(876, 95, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"2d17b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"05f30cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br \\/>We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d15f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(838, 92, '_elementor_page_settings', 'a:0:{}'),
(841, 93, '_wp_page_template', 'elementor_header_footer'),
(842, 93, '_elementor_edit_mode', 'builder'),
(843, 93, '_elementor_template_type', 'wp-page'),
(844, 93, '_elementor_version', '4.1.3'),
(845, 93, '_elementor_pro_version', '4.1.1'),
(846, 93, '_elementor_global_class_usage_indexed', '1'),
(847, 93, '_elementor_global_class_usage_indexed_preview', '1'),
(848, 93, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(849, 93, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"2d17b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"05f30cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br \\/>We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d15f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6758, 585, '_wp_page_template', 'elementor_header_footer'),
(851, 93, '_elementor_page_settings', 'a:0:{}'),
(854, 94, '_wp_page_template', 'elementor_header_footer'),
(855, 94, '_elementor_edit_mode', 'builder'),
(856, 94, '_elementor_template_type', 'wp-page'),
(857, 94, '_elementor_version', '4.1.3'),
(858, 94, '_elementor_pro_version', '4.1.1'),
(859, 94, '_elementor_global_class_usage_indexed', '1'),
(860, 94, '_elementor_global_class_usage_indexed_preview', '1'),
(861, 94, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(862, 94, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"2d17b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"05f30cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br \\/>We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d15f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6749, 584, '_elementor_edit_mode', 'builder'),
(6750, 584, '_elementor_template_type', 'wp-page'),
(6751, 584, '_elementor_version', '4.1.3'),
(6752, 584, '_elementor_pro_version', '4.1.1'),
(6753, 584, '_elementor_global_class_usage_indexed_preview', '1'),
(6754, 584, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6755, 584, '_elementor_data', '[{\"id\":\"723c28e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"103e2d3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"00c4f2f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bdc0006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"00adcc8\"}]},\"elements\":[{\"id\":\"5b246aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0293850\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c43a09c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90cf249\"}],\"pp_display_conditions\":[{\"_id\":\"22db06d\"}]},\"elements\":[{\"id\":\"6c3d86b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"f792d6f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Arizona\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"1b37468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arizona\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"841f41b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"7736eb9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Washington\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"f34a2a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Washington\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"315c520\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"c0bf036\",\"elType\":\"widget\",\"settings\":{\"address\":\"colorado\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"960777f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Colorado\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6760, 585, '_elementor_global_class_usage_indexed', '1'),
(6761, 585, '_elementor_edit_mode', 'builder'),
(6762, 585, '_elementor_template_type', 'wp-page'),
(6763, 585, '_elementor_version', '4.1.3'),
(6764, 585, '_elementor_pro_version', '4.1.1'),
(6765, 585, '_elementor_global_class_usage_indexed_preview', '1'),
(6766, 585, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6767, 585, '_elementor_data', '[{\"id\":\"723c28e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"103e2d3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"00c4f2f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bdc0006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"00adcc8\"}]},\"elements\":[{\"id\":\"5b246aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0293850\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c43a09c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90cf249\"}],\"pp_display_conditions\":[{\"_id\":\"22db06d\"}]},\"elements\":[{\"id\":\"6c3d86b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"f792d6f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Arizona\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"1b37468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arizona\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"841f41b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"7736eb9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Washington\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"f34a2a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Washington\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"315c520\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"c0bf036\",\"elType\":\"widget\",\"settings\":{\"address\":\"colorado\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"960777f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Colorado\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6748, 584, '_elementor_global_class_usage_indexed', '1'),
(878, 95, '_elementor_page_settings', 'a:0:{}'),
(879, 96, '_wp_page_template', 'elementor_header_footer'),
(880, 96, '_elementor_edit_mode', 'builder'),
(881, 96, '_elementor_template_type', 'wp-page'),
(882, 96, '_elementor_version', '4.1.3'),
(883, 96, '_elementor_pro_version', '4.1.1'),
(884, 96, '_elementor_global_class_usage_indexed', '1'),
(885, 96, '_elementor_global_class_usage_indexed_preview', '1'),
(886, 96, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(887, 96, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"2d17b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"05f30cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br \\/>We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d15f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6745, 583, '_elementor_page_settings', 'a:0:{}'),
(889, 96, '_elementor_page_settings', 'a:0:{}'),
(930, 100, '_wp_page_template', 'elementor_header_footer'),
(931, 100, '_elementor_edit_mode', 'builder'),
(932, 100, '_elementor_template_type', 'wp-page'),
(890, 97, '_wp_page_template', 'elementor_header_footer'),
(891, 97, '_elementor_edit_mode', 'builder'),
(892, 97, '_elementor_template_type', 'wp-page'),
(893, 97, '_elementor_version', '4.1.3'),
(894, 97, '_elementor_pro_version', '4.1.1'),
(895, 97, '_elementor_global_class_usage_indexed', '1'),
(896, 97, '_elementor_global_class_usage_indexed_preview', '1'),
(897, 97, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(898, 97, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"2d17b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"05f30cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br \\/>We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d15f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(904, 98, '_wp_page_template', 'elementor_header_footer'),
(905, 98, '_elementor_edit_mode', 'builder'),
(906, 98, '_elementor_template_type', 'wp-page'),
(907, 98, '_elementor_version', '4.1.3'),
(908, 98, '_elementor_pro_version', '4.1.1'),
(909, 98, '_elementor_global_class_usage_indexed', '1'),
(910, 98, '_elementor_global_class_usage_indexed_preview', '1'),
(911, 98, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(912, 98, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"2d17b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"05f30cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br \\/>We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d15f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(966, 103, '_wp_page_template', 'elementor_header_footer'),
(944, 101, '_wp_page_template', 'elementor_header_footer'),
(945, 101, '_elementor_edit_mode', 'builder'),
(946, 101, '_elementor_template_type', 'wp-page'),
(947, 101, '_elementor_version', '4.1.3'),
(948, 101, '_elementor_pro_version', '4.1.1'),
(949, 101, '_elementor_global_class_usage_indexed', '1'),
(950, 101, '_elementor_global_class_usage_indexed_preview', '1'),
(951, 101, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(952, 101, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"2d17b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"05f30cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>we strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(914, 98, '_elementor_page_settings', 'a:0:{}'),
(917, 99, '_wp_page_template', 'elementor_header_footer'),
(918, 99, '_elementor_edit_mode', 'builder'),
(919, 99, '_elementor_template_type', 'wp-page'),
(920, 99, '_elementor_version', '4.1.3'),
(921, 99, '_elementor_pro_version', '4.1.1'),
(922, 99, '_elementor_global_class_usage_indexed', '1'),
(923, 99, '_elementor_global_class_usage_indexed_preview', '1'),
(924, 99, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(925, 99, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"2d17b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"05f30cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br \\/>We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d15f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"left\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(927, 99, '_elementor_page_settings', 'a:0:{}'),
(8532, 718, '_wp_page_template', 'elementor_header_footer'),
(8533, 718, '_elementor_edit_mode', 'builder'),
(8534, 718, '_elementor_template_type', 'wp-page'),
(8535, 718, '_elementor_version', '4.1.3'),
(8536, 718, '_elementor_pro_version', '4.1.1'),
(8537, 718, '_elementor_global_class_usage_indexed', '1'),
(8538, 718, '_elementor_global_class_usage_indexed_preview', '1'),
(8539, 718, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8540, 718, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":532,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":431,\"sizes\":[]}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"px\",\"size\":223,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"common_image_animation\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"},\"hide_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\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"css_classes\":\"common_image_animation \"},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\",\"css_classes\":\"common_image_animation \"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(933, 100, '_elementor_version', '4.1.3'),
(934, 100, '_elementor_pro_version', '4.1.1'),
(935, 100, '_elementor_global_class_usage_indexed', '1'),
(936, 100, '_elementor_global_class_usage_indexed_preview', '1'),
(937, 100, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(938, 100, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"2d17b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"05f30cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>we strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(954, 101, '_elementor_page_settings', 'a:0:{}'),
(955, 102, '_wp_page_template', 'elementor_header_footer'),
(956, 102, '_elementor_edit_mode', 'builder'),
(957, 102, '_elementor_template_type', 'wp-page'),
(958, 102, '_elementor_version', '4.1.3'),
(959, 102, '_elementor_pro_version', '4.1.1'),
(960, 102, '_elementor_global_class_usage_indexed', '1'),
(961, 102, '_elementor_global_class_usage_indexed_preview', '1'),
(962, 102, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(963, 102, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"2d17b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"05f30cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>we strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(965, 102, '_elementor_page_settings', 'a:0:{}'),
(967, 103, '_elementor_edit_mode', 'builder'),
(968, 103, '_elementor_template_type', 'wp-page'),
(969, 103, '_elementor_version', '4.1.3'),
(970, 103, '_elementor_pro_version', '4.1.1'),
(971, 103, '_elementor_global_class_usage_indexed', '1'),
(972, 103, '_elementor_global_class_usage_indexed_preview', '1'),
(973, 103, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(974, 103, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"2d17b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"05f30cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>we strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(978, 104, '_wp_page_template', 'elementor_header_footer'),
(979, 104, '_elementor_edit_mode', 'builder'),
(980, 104, '_elementor_template_type', 'wp-page'),
(981, 104, '_elementor_version', '4.1.3'),
(982, 104, '_elementor_pro_version', '4.1.1'),
(983, 104, '_elementor_global_class_usage_indexed', '1'),
(984, 104, '_elementor_global_class_usage_indexed_preview', '1'),
(985, 104, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(986, 104, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"2d17b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"05f30cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>we strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(988, 104, '_elementor_page_settings', 'a:0:{}'),
(989, 105, '_wp_page_template', 'elementor_header_footer'),
(990, 105, '_elementor_edit_mode', 'builder'),
(991, 105, '_elementor_template_type', 'wp-page'),
(992, 105, '_elementor_version', '4.1.3'),
(993, 105, '_elementor_pro_version', '4.1.1'),
(994, 105, '_elementor_global_class_usage_indexed', '1'),
(995, 105, '_elementor_global_class_usage_indexed_preview', '1'),
(996, 105, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(997, 105, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"2d17b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"05f30cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>we strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(999, 105, '_elementor_page_settings', 'a:0:{}'),
(1000, 106, '_wp_page_template', 'elementor_header_footer'),
(1001, 106, '_elementor_edit_mode', 'builder'),
(1002, 106, '_elementor_template_type', 'wp-page'),
(1003, 106, '_elementor_version', '4.1.3'),
(1004, 106, '_elementor_pro_version', '4.1.1'),
(1005, 106, '_elementor_global_class_usage_indexed', '1'),
(1006, 106, '_elementor_global_class_usage_indexed_preview', '1'),
(1007, 106, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1008, 106, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"2d17b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"05f30cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>we strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1028, 109, '_wp_page_template', 'elementor_header_footer'),
(1029, 109, '_elementor_edit_mode', 'builder'),
(1030, 109, '_elementor_template_type', 'wp-page'),
(1031, 109, '_elementor_version', '4.1.3'),
(1032, 109, '_elementor_pro_version', '4.1.1'),
(1033, 109, '_elementor_global_class_usage_indexed', '1'),
(1034, 109, '_elementor_global_class_usage_indexed_preview', '1'),
(1035, 109, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1036, 109, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"2d17b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"05f30cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>we strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1012, 107, '_wp_attached_file', '2026/06/circle_11837105.svg'),
(1013, 107, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:122;s:5:\"width\";i:64;s:6:\"height\";i:64;}'),
(1015, 7, '_elementor_global_classes_labels_preview', 'a:0:{}'),
(1050, 111, '_wp_page_template', 'elementor_header_footer'),
(1051, 111, '_elementor_edit_mode', 'builder'),
(1052, 111, '_elementor_template_type', 'wp-page'),
(1053, 111, '_elementor_version', '4.1.3'),
(1054, 111, '_elementor_pro_version', '4.1.1'),
(1055, 111, '_elementor_global_class_usage_indexed', '1'),
(1056, 111, '_elementor_global_class_usage_indexed_preview', '1'),
(1057, 111, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1058, 111, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"05f30cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>we strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1038, 109, '_elementor_page_settings', 'a:0:{}'),
(1039, 110, '_wp_page_template', 'elementor_header_footer'),
(1040, 110, '_elementor_edit_mode', 'builder'),
(1041, 110, '_elementor_template_type', 'wp-page'),
(1042, 110, '_elementor_version', '4.1.3'),
(1043, 110, '_elementor_pro_version', '4.1.1'),
(1044, 110, '_elementor_global_class_usage_indexed', '1'),
(1045, 110, '_elementor_global_class_usage_indexed_preview', '1'),
(1046, 110, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1047, 110, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"2d17b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"05f30cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>we strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1049, 110, '_elementor_page_settings', 'a:0:{}'),
(1062, 112, '_wp_page_template', 'elementor_header_footer'),
(1063, 112, '_elementor_edit_mode', 'builder'),
(1064, 112, '_elementor_template_type', 'wp-page'),
(1065, 112, '_elementor_version', '4.1.3'),
(1066, 112, '_elementor_pro_version', '4.1.1'),
(1067, 112, '_elementor_global_class_usage_indexed', '1'),
(1068, 112, '_elementor_global_class_usage_indexed_preview', '1'),
(1069, 112, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1070, 112, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"05f30cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>we strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1072, 112, '_elementor_page_settings', 'a:0:{}'),
(1073, 113, '_wp_page_template', 'elementor_header_footer'),
(1074, 113, '_elementor_edit_mode', 'builder'),
(1075, 113, '_elementor_template_type', 'wp-page'),
(1076, 113, '_elementor_version', '4.1.3'),
(1077, 113, '_elementor_pro_version', '4.1.1'),
(1078, 113, '_elementor_global_class_usage_indexed', '1'),
(1079, 113, '_elementor_global_class_usage_indexed_preview', '1'),
(1080, 113, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1081, 113, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"05f30cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"pp_display_conditions\":[{\"_id\":\"222c641\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>we strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1083, 113, '_elementor_page_settings', 'a:0:{}'),
(1084, 114, '_wp_page_template', 'elementor_header_footer'),
(1085, 114, '_elementor_edit_mode', 'builder'),
(1086, 114, '_elementor_template_type', 'wp-page'),
(1087, 114, '_elementor_version', '4.1.3'),
(1088, 114, '_elementor_pro_version', '4.1.1'),
(1089, 114, '_elementor_global_class_usage_indexed', '1'),
(1090, 114, '_elementor_global_class_usage_indexed_preview', '1'),
(1091, 114, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1092, 114, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>we strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1100, 116, '_wp_page_template', 'elementor_header_footer'),
(1101, 116, '_elementor_edit_mode', 'builder'),
(1102, 116, '_elementor_template_type', 'wp-page'),
(1103, 116, '_elementor_version', '4.1.3'),
(1104, 116, '_elementor_pro_version', '4.1.1'),
(1105, 116, '_elementor_global_class_usage_indexed', '1'),
(1106, 116, '_elementor_global_class_usage_indexed_preview', '1'),
(1107, 116, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1108, 116, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>we strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1168, 121, '_wp_page_template', 'elementor_header_footer'),
(1142, 119, '_wp_page_template', 'elementor_header_footer'),
(1143, 119, '_elementor_edit_mode', 'builder'),
(1144, 119, '_elementor_template_type', 'wp-page'),
(1145, 119, '_elementor_version', '4.1.3'),
(1146, 119, '_elementor_pro_version', '4.1.1'),
(1147, 119, '_elementor_global_class_usage_indexed', '1'),
(1148, 119, '_elementor_global_class_usage_indexed_preview', '1'),
(1149, 119, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1150, 119, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>we strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1098, 115, '_wp_attached_file', '2026/06/Wellness-opti.jpg'),
(1099, 115, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:667;s:6:\"height\";i:1000;s:4:\"file\";s:25:\"2026/06/Wellness-opti.jpg\";s:8:\"filesize\";i:96980;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Wellness-opti-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20167;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"Wellness-opti-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9067;}}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:\"\";}}'),
(1110, 116, '_elementor_page_settings', 'a:0:{}'),
(1113, 117, '_wp_page_template', 'elementor_header_footer'),
(1114, 117, '_elementor_edit_mode', 'builder'),
(1115, 117, '_elementor_template_type', 'wp-page'),
(1116, 117, '_elementor_version', '4.1.3'),
(1117, 117, '_elementor_pro_version', '4.1.1'),
(1118, 117, '_elementor_global_class_usage_indexed', '1'),
(1119, 117, '_elementor_global_class_usage_indexed_preview', '1'),
(1120, 117, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1121, 117, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}]},\"elements\":[{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>we strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1123, 117, '_elementor_page_settings', 'a:0:{}'),
(1126, 118, '_wp_page_template', 'elementor_header_footer'),
(1127, 118, '_elementor_edit_mode', 'builder'),
(1128, 118, '_elementor_template_type', 'wp-page'),
(1129, 118, '_elementor_version', '4.1.3'),
(1130, 118, '_elementor_pro_version', '4.1.1'),
(1131, 118, '_elementor_global_class_usage_indexed', '1'),
(1132, 118, '_elementor_global_class_usage_indexed_preview', '1'),
(1133, 118, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1134, 118, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>we strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6746, 584, '_wp_page_template', 'elementor_header_footer'),
(6724, 582, '_wp_page_template', 'elementor_header_footer'),
(6726, 582, '_elementor_global_class_usage_indexed', '1'),
(6727, 582, '_elementor_edit_mode', 'builder'),
(6728, 582, '_elementor_template_type', 'wp-page'),
(6729, 582, '_elementor_version', '4.1.3'),
(6730, 582, '_elementor_pro_version', '4.1.1'),
(6731, 582, '_elementor_global_class_usage_indexed_preview', '1'),
(6732, 582, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6733, 582, '_elementor_data', '[{\"id\":\"723c28e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"103e2d3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"00c4f2f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bdc0006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"00adcc8\"}]},\"elements\":[{\"id\":\"5b246aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0293850\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c43a09c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90cf249\"}],\"pp_display_conditions\":[{\"_id\":\"22db06d\"}]},\"elements\":[{\"id\":\"6c3d86b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"f792d6f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Arizona\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"1b37468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arizona\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"841f41b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"7736eb9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Washington\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"f34a2a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Washington\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"315c520\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"c0bf036\",\"elType\":\"widget\",\"settings\":{\"address\":\"Arizona\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"960777f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arizona\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6734, 582, '_elementor_page_settings', 'a:0:{}'),
(6735, 583, '_wp_page_template', 'elementor_header_footer'),
(6737, 583, '_elementor_global_class_usage_indexed', '1'),
(6738, 583, '_elementor_edit_mode', 'builder'),
(6739, 583, '_elementor_template_type', 'wp-page'),
(6740, 583, '_elementor_version', '4.1.3'),
(6741, 583, '_elementor_pro_version', '4.1.1'),
(6742, 583, '_elementor_global_class_usage_indexed_preview', '1'),
(6743, 583, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6744, 583, '_elementor_data', '[{\"id\":\"723c28e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"103e2d3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"00c4f2f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bdc0006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"00adcc8\"}]},\"elements\":[{\"id\":\"5b246aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0293850\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c43a09c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90cf249\"}],\"pp_display_conditions\":[{\"_id\":\"22db06d\"}]},\"elements\":[{\"id\":\"6c3d86b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"f792d6f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Arizona\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"1b37468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arizona\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"841f41b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"7736eb9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Washington\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"f34a2a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Washington\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"315c520\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"c0bf036\",\"elType\":\"widget\",\"settings\":{\"address\":\"Arizona\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"960777f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arizona\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1182, 122, '_wp_page_template', 'elementor_header_footer'),
(1183, 122, '_elementor_edit_mode', 'builder'),
(1184, 122, '_elementor_template_type', 'wp-page'),
(1185, 122, '_elementor_version', '4.1.3'),
(1186, 122, '_elementor_pro_version', '4.1.1'),
(1187, 122, '_elementor_global_class_usage_indexed', '1'),
(1188, 122, '_elementor_global_class_usage_indexed_preview', '1'),
(1189, 122, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1190, 122, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1152, 119, '_elementor_page_settings', 'a:0:{}'),
(1155, 120, '_wp_page_template', 'elementor_header_footer'),
(1156, 120, '_elementor_edit_mode', 'builder'),
(1157, 120, '_elementor_template_type', 'wp-page'),
(1158, 120, '_elementor_version', '4.1.3'),
(1159, 120, '_elementor_pro_version', '4.1.1'),
(1160, 120, '_elementor_global_class_usage_indexed', '1'),
(1161, 120, '_elementor_global_class_usage_indexed_preview', '1'),
(1162, 120, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1163, 120, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>we strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1165, 120, '_elementor_page_settings', 'a:0:{}'),
(1169, 121, '_elementor_edit_mode', 'builder'),
(1170, 121, '_elementor_template_type', 'wp-page'),
(1171, 121, '_elementor_version', '4.1.3'),
(1172, 121, '_elementor_pro_version', '4.1.1'),
(1173, 121, '_elementor_global_class_usage_indexed', '1'),
(1174, 121, '_elementor_global_class_usage_indexed_preview', '1'),
(1175, 121, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1176, 121, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1192, 122, '_elementor_page_settings', 'a:0:{}'),
(1193, 123, '_wp_page_template', 'elementor_header_footer'),
(1194, 123, '_elementor_edit_mode', 'builder'),
(1195, 123, '_elementor_template_type', 'wp-page'),
(1196, 123, '_elementor_version', '4.1.3'),
(1197, 123, '_elementor_pro_version', '4.1.1'),
(1198, 123, '_elementor_global_class_usage_indexed', '1'),
(1199, 123, '_elementor_global_class_usage_indexed_preview', '1'),
(1200, 123, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1201, 123, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1203, 123, '_elementor_page_settings', 'a:0:{}'),
(1204, 124, '_wp_page_template', 'elementor_header_footer'),
(1205, 124, '_elementor_edit_mode', 'builder'),
(1206, 124, '_elementor_template_type', 'wp-page'),
(1207, 124, '_elementor_version', '4.1.3'),
(1208, 124, '_elementor_pro_version', '4.1.1'),
(1209, 124, '_elementor_global_class_usage_indexed', '1'),
(1210, 124, '_elementor_global_class_usage_indexed_preview', '1'),
(1211, 124, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1212, 124, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-52\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1216, 125, '_wp_page_template', 'elementor_header_footer'),
(1217, 125, '_elementor_edit_mode', 'builder'),
(1218, 125, '_elementor_template_type', 'wp-page'),
(1219, 125, '_elementor_version', '4.1.3'),
(1220, 125, '_elementor_pro_version', '4.1.1'),
(1221, 125, '_elementor_global_class_usage_indexed', '1'),
(1222, 125, '_elementor_global_class_usage_indexed_preview', '1'),
(1223, 125, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1224, 125, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-52\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1226, 125, '_elementor_page_settings', 'a:0:{}'),
(1227, 126, '_wp_page_template', 'elementor_header_footer'),
(1228, 126, '_elementor_edit_mode', 'builder'),
(1229, 126, '_elementor_template_type', 'wp-page'),
(1230, 126, '_elementor_version', '4.1.3'),
(1231, 126, '_elementor_pro_version', '4.1.1'),
(1232, 126, '_elementor_global_class_usage_indexed', '1'),
(1233, 126, '_elementor_global_class_usage_indexed_preview', '1'),
(1234, 126, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1235, 126, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-52\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1237, 126, '_elementor_page_settings', 'a:0:{}'),
(1238, 127, '_wp_page_template', 'elementor_header_footer'),
(1239, 127, '_elementor_edit_mode', 'builder'),
(1240, 127, '_elementor_template_type', 'wp-page'),
(1241, 127, '_elementor_version', '4.1.3'),
(1242, 127, '_elementor_pro_version', '4.1.1'),
(1243, 127, '_elementor_global_class_usage_indexed', '1'),
(1244, 127, '_elementor_global_class_usage_indexed_preview', '1'),
(1245, 127, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1246, 127, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"74185c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1252, 128, '_wp_page_template', 'elementor_header_footer'),
(1253, 128, '_elementor_edit_mode', 'builder'),
(1254, 128, '_elementor_template_type', 'wp-page'),
(1255, 128, '_elementor_version', '4.1.3'),
(1256, 128, '_elementor_pro_version', '4.1.1'),
(1257, 128, '_elementor_global_class_usage_indexed', '1'),
(1258, 128, '_elementor_global_class_usage_indexed_preview', '1'),
(1259, 128, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1260, 128, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"74185c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1336, 134, '_wp_page_template', 'elementor_header_footer'),
(1337, 134, '_elementor_edit_mode', 'builder'),
(1426, 140, '_elementor_global_class_usage_indexed_preview', '1'),
(1294, 131, '_wp_page_template', 'elementor_header_footer'),
(1295, 131, '_elementor_edit_mode', 'builder'),
(1296, 131, '_elementor_template_type', 'wp-page'),
(1297, 131, '_elementor_version', '4.1.3'),
(1298, 131, '_elementor_pro_version', '4.1.1'),
(1299, 131, '_elementor_global_class_usage_indexed', '1'),
(1300, 131, '_elementor_global_class_usage_indexed_preview', '1'),
(1301, 131, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1302, 131, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"74185c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-132\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF91\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1420, 140, '_wp_page_template', 'elementor_header_footer'),
(1421, 140, '_elementor_edit_mode', 'builder'),
(1422, 140, '_elementor_template_type', 'wp-page'),
(1423, 140, '_elementor_version', '4.1.3'),
(1424, 140, '_elementor_pro_version', '4.1.1'),
(1425, 140, '_elementor_global_class_usage_indexed', '1'),
(1902, 177, '_wp_attached_file', '2026/06/nottom-welnes.jpg'),
(1903, 177, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:25:\"2026/06/nottom-welnes.jpg\";s:8:\"filesize\";i:75679;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"nottom-welnes-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15043;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"nottom-welnes-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7057;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"nottom-welnes-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66719;}}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:\"\";}}'),
(1262, 128, '_elementor_page_settings', 'a:0:{}'),
(1265, 129, '_wp_page_template', 'elementor_header_footer'),
(1266, 129, '_elementor_edit_mode', 'builder'),
(1267, 129, '_elementor_template_type', 'wp-page'),
(1268, 129, '_elementor_version', '4.1.3'),
(1269, 129, '_elementor_pro_version', '4.1.1'),
(1270, 129, '_elementor_global_class_usage_indexed', '1'),
(1271, 129, '_elementor_global_class_usage_indexed_preview', '1'),
(1272, 129, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1273, 129, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"74185c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1275, 129, '_elementor_page_settings', 'a:0:{}'),
(1278, 130, '_wp_page_template', 'elementor_header_footer'),
(1279, 130, '_elementor_edit_mode', 'builder'),
(1280, 130, '_elementor_template_type', 'wp-page'),
(1281, 130, '_elementor_version', '4.1.3'),
(1282, 130, '_elementor_pro_version', '4.1.1'),
(1283, 130, '_elementor_global_class_usage_indexed', '1'),
(1284, 130, '_elementor_global_class_usage_indexed_preview', '1'),
(1285, 130, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1286, 130, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"74185c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-132\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF91\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7734, 660, '_elementor_page_settings', 'a:0:{}'),
(7735, 661, '_wp_page_template', 'elementor_header_footer'),
(6703, 580, '_elementor_global_class_usage_indexed', '1'),
(6704, 580, '_elementor_edit_mode', 'builder'),
(6705, 580, '_elementor_template_type', 'wp-page'),
(6706, 580, '_elementor_version', '4.1.3'),
(6707, 580, '_elementor_pro_version', '4.1.1'),
(6708, 580, '_elementor_global_class_usage_indexed_preview', '1'),
(6709, 580, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6710, 580, '_elementor_data', '[{\"id\":\"723c28e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"103e2d3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"00c4f2f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bdc0006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"00adcc8\"}]},\"elements\":[{\"id\":\"5b246aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0293850\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c43a09c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90cf249\"}],\"pp_display_conditions\":[{\"_id\":\"22db06d\"}]},\"elements\":[{\"id\":\"6c3d86b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"f792d6f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Arizona\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"1b37468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arizona\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"841f41b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"7736eb9\",\"elType\":\"widget\",\"settings\":{\"address\":\"washington\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"f34a2a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Washington\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"315c520\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"c0bf036\",\"elType\":\"widget\",\"settings\":{\"address\":\"Arizona\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"960777f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arizona\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6711, 580, '_elementor_page_settings', 'a:0:{}'),
(6714, 581, '_elementor_global_class_usage_indexed', '1'),
(6715, 581, '_elementor_edit_mode', 'builder'),
(6716, 581, '_elementor_template_type', 'wp-page'),
(6717, 581, '_elementor_version', '4.1.3'),
(6718, 581, '_elementor_pro_version', '4.1.1'),
(6719, 581, '_elementor_global_class_usage_indexed_preview', '1'),
(6720, 581, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6721, 581, '_elementor_data', '[{\"id\":\"723c28e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"103e2d3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"00c4f2f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bdc0006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"00adcc8\"}]},\"elements\":[{\"id\":\"5b246aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0293850\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c43a09c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90cf249\"}],\"pp_display_conditions\":[{\"_id\":\"22db06d\"}]},\"elements\":[{\"id\":\"6c3d86b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"f792d6f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Arizona\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"1b37468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arizona\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"841f41b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"7736eb9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Washington\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"f34a2a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Washington\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"315c520\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"c0bf036\",\"elType\":\"widget\",\"settings\":{\"address\":\"Arizona\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"960777f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arizona\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1338, 134, '_elementor_template_type', 'wp-page'),
(1339, 134, '_elementor_version', '4.1.3'),
(1340, 134, '_elementor_pro_version', '4.1.1'),
(1341, 134, '_elementor_global_class_usage_indexed', '1'),
(1342, 134, '_elementor_global_class_usage_indexed_preview', '1'),
(1343, 134, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1344, 134, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-132\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF91\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"987c9ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6700, 579, '_elementor_page_settings', 'a:0:{}'),
(6701, 580, '_wp_page_template', 'elementor_header_footer'),
(7736, 661, '_elementor_global_class_usage_indexed', '1'),
(1304, 131, '_elementor_page_settings', 'a:0:{}'),
(8530, 717, '_elementor_page_settings', 'a:0:{}'),
(1307, 132, '_wp_page_template', 'elementor_header_footer'),
(1308, 132, '_elementor_edit_mode', 'builder'),
(1309, 132, '_elementor_template_type', 'wp-page'),
(1310, 132, '_elementor_version', '4.1.3'),
(1311, 132, '_elementor_pro_version', '4.1.1'),
(1312, 132, '_elementor_global_class_usage_indexed', '1'),
(1313, 132, '_elementor_global_class_usage_indexed_preview', '1'),
(1314, 132, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1315, 132, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"74185c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-132\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF91\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1317, 132, '_elementor_page_settings', 'a:0:{}'),
(1362, 136, '_wp_page_template', 'elementor_header_footer'),
(1363, 136, '_elementor_edit_mode', 'builder'),
(1364, 136, '_elementor_template_type', 'wp-page'),
(1365, 136, '_elementor_version', '4.1.3'),
(1366, 136, '_elementor_pro_version', '4.1.1'),
(1367, 136, '_elementor_global_class_usage_indexed', '1'),
(1368, 136, '_elementor_global_class_usage_indexed_preview', '1'),
(1369, 136, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1320, 133, '_wp_page_template', 'elementor_header_footer'),
(1321, 133, '_elementor_edit_mode', 'builder'),
(1322, 133, '_elementor_template_type', 'wp-page'),
(1323, 133, '_elementor_version', '4.1.3'),
(1324, 133, '_elementor_pro_version', '4.1.1'),
(1325, 133, '_elementor_global_class_usage_indexed', '1'),
(1326, 133, '_elementor_global_class_usage_indexed_preview', '1'),
(1327, 133, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1328, 133, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-132\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF91\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"987c9ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1404, 139, '_wp_page_template', 'elementor_header_footer'),
(1378, 137, '_wp_page_template', 'elementor_header_footer'),
(1379, 137, '_elementor_edit_mode', 'builder'),
(1380, 137, '_elementor_template_type', 'wp-page'),
(1381, 137, '_elementor_version', '4.1.3'),
(1382, 137, '_elementor_pro_version', '4.1.1'),
(1383, 137, '_elementor_global_class_usage_indexed', '1'),
(1384, 137, '_elementor_global_class_usage_indexed_preview', '1'),
(1385, 137, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1386, 137, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-132\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF91\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1546, 149, '_wp_page_template', 'elementor_header_footer'),
(1346, 134, '_elementor_page_settings', 'a:0:{}'),
(8545, 719, '_elementor_edit_mode', 'builder'),
(8546, 719, '_elementor_template_type', 'wp-page'),
(8547, 719, '_elementor_version', '4.1.3'),
(8548, 719, '_elementor_pro_version', '4.1.1'),
(8549, 719, '_elementor_global_class_usage_indexed', '1'),
(8550, 719, '_elementor_global_class_usage_indexed_preview', '1'),
(8551, 719, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8552, 719, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":532,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":431,\"sizes\":[]}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"px\",\"size\":223,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"common_image_animation\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"},\"hide_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\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"css_classes\":\"common_image_animation \"},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/contact-bd-a.jpg\",\"id\":715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]},\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\",\"css_classes\":\"common_image_animation \"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(1349, 135, '_wp_page_template', 'elementor_header_footer'),
(1350, 135, '_elementor_edit_mode', 'builder'),
(1351, 135, '_elementor_template_type', 'wp-page'),
(1352, 135, '_elementor_version', '4.1.3'),
(1353, 135, '_elementor_pro_version', '4.1.1'),
(1354, 135, '_elementor_global_class_usage_indexed', '1'),
(1355, 135, '_elementor_global_class_usage_indexed_preview', '1'),
(1356, 135, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1357, 135, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-132\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF91\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"987c9ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1359, 135, '_elementor_page_settings', 'a:0:{}'),
(1370, 136, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-132\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF91\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6680, 578, '_elementor_template_type', 'wp-page'),
(6681, 578, '_elementor_version', '4.1.3'),
(6682, 578, '_elementor_pro_version', '4.1.1'),
(6683, 578, '_elementor_global_class_usage_indexed_preview', '1'),
(6684, 578, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6685, 578, '_elementor_data', '[{\"id\":\"723c28e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"103e2d3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"00c4f2f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bdc0006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"00adcc8\"}]},\"elements\":[{\"id\":\"5b246aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0293850\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c43a09c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90cf249\"}],\"pp_display_conditions\":[{\"_id\":\"22db06d\"}]},\"elements\":[{\"id\":\"6c3d86b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"f792d6f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Arizona\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"1b37468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arizona\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"841f41b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"7736eb9\",\"elType\":\"widget\",\"settings\":{\"address\":\"washington\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"f34a2a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Washington\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"315c520\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"c0bf036\",\"elType\":\"widget\",\"settings\":{\"address\":\"Arizona\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"960777f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arizona\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1446, 142, '_wp_page_template', 'elementor_header_footer'),
(1427, 140, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1428, 140, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-132\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF91\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7739, 661, '_elementor_version', '4.1.3'),
(7740, 661, '_elementor_pro_version', '4.1.1'),
(6678, 578, '_elementor_global_class_usage_indexed', '1'),
(6679, 578, '_elementor_edit_mode', 'builder'),
(1388, 137, '_elementor_page_settings', 'a:0:{}'),
(1391, 138, '_wp_page_template', 'elementor_header_footer'),
(1392, 138, '_elementor_edit_mode', 'builder'),
(1393, 138, '_elementor_template_type', 'wp-page'),
(1394, 138, '_elementor_version', '4.1.3'),
(1395, 138, '_elementor_pro_version', '4.1.1'),
(1396, 138, '_elementor_global_class_usage_indexed', '1'),
(1397, 138, '_elementor_global_class_usage_indexed_preview', '1'),
(1398, 138, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1399, 138, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-132\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF91\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7741, 661, '_elementor_global_class_usage_indexed_preview', '1'),
(1401, 138, '_elementor_page_settings', 'a:0:{}'),
(1405, 139, '_elementor_edit_mode', 'builder'),
(1406, 139, '_elementor_template_type', 'wp-page'),
(1407, 139, '_elementor_version', '4.1.3'),
(1408, 139, '_elementor_pro_version', '4.1.1'),
(1409, 139, '_elementor_global_class_usage_indexed', '1'),
(1410, 139, '_elementor_global_class_usage_indexed_preview', '1'),
(1411, 139, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1412, 139, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-132\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF91\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7742, 661, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6665, 577, '_elementor_global_class_usage_indexed', '1'),
(6666, 577, '_elementor_edit_mode', 'builder'),
(6667, 577, '_elementor_template_type', 'wp-page'),
(6668, 577, '_elementor_version', '4.1.3'),
(6669, 577, '_elementor_pro_version', '4.1.1'),
(6670, 577, '_elementor_global_class_usage_indexed_preview', '1'),
(6671, 577, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6672, 577, '_elementor_data', '[{\"id\":\"723c28e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"103e2d3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"00c4f2f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bdc0006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"00adcc8\"}]},\"elements\":[{\"id\":\"5b246aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0293850\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c43a09c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90cf249\"}],\"pp_display_conditions\":[{\"_id\":\"22db06d\"}]},\"elements\":[{\"id\":\"6c3d86b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"f792d6f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Arizona\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"1b37468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arizona\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"841f41b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"7736eb9\",\"elType\":\"widget\",\"settings\":{\"address\":\"washington\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"f34a2a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arizona\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"315c520\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"c0bf036\",\"elType\":\"widget\",\"settings\":{\"address\":\"Arizona\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"960777f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arizona\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6673, 577, '_elementor_page_settings', 'a:0:{}'),
(1488, 145, '_wp_page_template', 'elementor_header_footer'),
(1462, 143, '_wp_page_template', 'elementor_header_footer'),
(1463, 143, '_elementor_edit_mode', 'builder'),
(1464, 143, '_elementor_template_type', 'wp-page'),
(1465, 143, '_elementor_version', '4.1.3'),
(1466, 143, '_elementor_pro_version', '4.1.1'),
(1467, 143, '_elementor_global_class_usage_indexed', '1'),
(1468, 143, '_elementor_global_class_usage_indexed_preview', '1'),
(1469, 143, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1470, 143, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-132\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF91\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6663, 577, '_wp_page_template', 'elementor_header_footer'),
(7743, 661, '_elementor_data', '[{\"id\":\"e4108d8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"80f1eca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6941206\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"145d2e0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d16793b\"}]},\"elements\":[{\"id\":\"2e75bdb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"959aa71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a35a9a7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe5b25e\"}],\"pp_display_conditions\":[{\"_id\":\"bb96df4\"}]},\"elements\":[{\"id\":\"29e028c\",\"elType\":\"widget\",\"settings\":{\"widget_title\":\"Book an Appointment\",\"show_progress_bar\":\"\",\"theme_preset\":\"minimal_white\",\"primary_color\":\"#41322d\",\"secondary_color\":\"#ce2162\",\"pp_display_conditions\":[{\"_id\":\"86eaabc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"aab_booking_widget\"}],\"isInner\":true}],\"isInner\":false}]'),
(1430, 140, '_elementor_page_settings', 'a:0:{}'),
(1433, 141, '_wp_page_template', 'elementor_header_footer'),
(1434, 141, '_elementor_edit_mode', 'builder'),
(1435, 141, '_elementor_template_type', 'wp-page'),
(1436, 141, '_elementor_version', '4.1.3'),
(1437, 141, '_elementor_pro_version', '4.1.1'),
(1438, 141, '_elementor_global_class_usage_indexed', '1'),
(1439, 141, '_elementor_global_class_usage_indexed_preview', '1'),
(1440, 141, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1441, 141, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-132\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF91\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1443, 141, '_elementor_page_settings', 'a:0:{}'),
(8504, 715, '_wp_attached_file', '2026/06/contact-bd-a.jpg'),
(8505, 715, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1335;s:4:\"file\";s:24:\"2026/06/contact-bd-a.jpg\";s:8:\"filesize\";i:178449;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"contact-bd-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:14225;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"contact-bd-a-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100471;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"contact-bd-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:6986;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"contact-bd-a-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62187;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:26:\"contact-bd-a-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:200546;}}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:\"\";}}'),
(1447, 142, '_elementor_edit_mode', 'builder'),
(1448, 142, '_elementor_template_type', 'wp-page'),
(1449, 142, '_elementor_version', '4.1.3'),
(1450, 142, '_elementor_pro_version', '4.1.1'),
(1451, 142, '_elementor_global_class_usage_indexed', '1'),
(1452, 142, '_elementor_global_class_usage_indexed_preview', '1'),
(1453, 142, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1454, 142, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-132\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF91\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1504, 146, '_wp_page_template', 'elementor_header_footer'),
(1505, 146, '_elementor_edit_mode', 'builder'),
(1506, 146, '_elementor_template_type', 'wp-page'),
(1507, 146, '_elementor_version', '4.1.3'),
(1508, 146, '_elementor_pro_version', '4.1.1'),
(1509, 146, '_elementor_global_class_usage_indexed', '1'),
(1510, 146, '_elementor_global_class_usage_indexed_preview', '1'),
(1511, 146, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1512, 146, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-132\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF91\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1472, 143, '_elementor_page_settings', 'a:0:{}'),
(1475, 144, '_wp_page_template', 'elementor_header_footer'),
(1476, 144, '_elementor_edit_mode', 'builder'),
(1477, 144, '_elementor_template_type', 'wp-page'),
(1478, 144, '_elementor_version', '4.1.3'),
(1479, 144, '_elementor_pro_version', '4.1.1'),
(1480, 144, '_elementor_global_class_usage_indexed', '1'),
(1481, 144, '_elementor_global_class_usage_indexed_preview', '1'),
(1482, 144, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1483, 144, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-132\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF91\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1485, 144, '_elementor_page_settings', 'a:0:{}'),
(1489, 145, '_elementor_edit_mode', 'builder'),
(1490, 145, '_elementor_template_type', 'wp-page'),
(1491, 145, '_elementor_version', '4.1.3'),
(1492, 145, '_elementor_pro_version', '4.1.1'),
(1493, 145, '_elementor_global_class_usage_indexed', '1'),
(1494, 145, '_elementor_global_class_usage_indexed_preview', '1'),
(1495, 145, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1496, 145, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-132\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF91\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1547, 149, '_elementor_edit_mode', 'builder'),
(1548, 149, '_elementor_template_type', 'wp-page'),
(1549, 149, '_elementor_version', '4.1.3'),
(1550, 149, '_elementor_pro_version', '4.1.1'),
(1551, 149, '_elementor_global_class_usage_indexed', '1'),
(1552, 149, '_elementor_global_class_usage_indexed_preview', '1'),
(1553, 149, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1554, 149, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-102\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFFD1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1514, 146, '_elementor_page_settings', 'a:0:{}'),
(1517, 147, '_wp_page_template', 'elementor_header_footer'),
(1518, 147, '_elementor_edit_mode', 'builder'),
(1519, 147, '_elementor_template_type', 'wp-page'),
(1520, 147, '_elementor_version', '4.1.3'),
(1521, 147, '_elementor_pro_version', '4.1.1'),
(1522, 147, '_elementor_global_class_usage_indexed', '1'),
(1523, 147, '_elementor_global_class_usage_indexed_preview', '1'),
(1524, 147, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1525, 147, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-132\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF91\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1527, 147, '_elementor_page_settings', 'a:0:{}'),
(8494, 714, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1530, 148, '_wp_page_template', 'elementor_header_footer'),
(1531, 148, '_elementor_edit_mode', 'builder'),
(1532, 148, '_elementor_template_type', 'wp-page'),
(1533, 148, '_elementor_version', '4.1.3'),
(1534, 148, '_elementor_pro_version', '4.1.1'),
(1535, 148, '_elementor_global_class_usage_indexed', '1'),
(1536, 148, '_elementor_global_class_usage_indexed_preview', '1'),
(1537, 148, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1538, 148, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-102\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFFD1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7823, 667, '_elementor_page_settings', 'a:0:{}'),
(7824, 668, '_wp_page_template', 'elementor_header_footer'),
(7825, 668, '_elementor_edit_mode', 'builder'),
(7826, 668, '_elementor_template_type', 'wp-page'),
(7827, 668, '_elementor_version', '4.1.3'),
(7828, 668, '_elementor_pro_version', '4.1.1'),
(7829, 668, '_elementor_global_class_usage_indexed', '1'),
(7830, 668, '_elementor_global_class_usage_indexed_preview', '1'),
(7831, 668, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7832, 668, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":532,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":431,\"sizes\":[]}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"},\"hide_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\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(1614, 154, '_wp_page_template', 'elementor_header_footer'),
(1588, 152, '_wp_page_template', 'elementor_header_footer'),
(1589, 152, '_elementor_edit_mode', 'builder'),
(1590, 152, '_elementor_template_type', 'wp-page'),
(1591, 152, '_elementor_version', '4.1.3'),
(1592, 152, '_elementor_pro_version', '4.1.1'),
(1593, 152, '_elementor_global_class_usage_indexed', '1'),
(1594, 152, '_elementor_global_class_usage_indexed_preview', '1'),
(1595, 152, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1596, 152, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1672, 159, '_wp_page_template', 'elementor_header_footer'),
(1556, 149, '_elementor_page_settings', 'a:0:{}'),
(1559, 150, '_wp_page_template', 'elementor_header_footer'),
(1560, 150, '_elementor_edit_mode', 'builder'),
(1561, 150, '_elementor_template_type', 'wp-page'),
(1562, 150, '_elementor_version', '4.1.3'),
(1563, 150, '_elementor_pro_version', '4.1.1'),
(1564, 150, '_elementor_global_class_usage_indexed', '1'),
(1565, 150, '_elementor_global_class_usage_indexed_preview', '1'),
(1566, 150, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1567, 150, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-102\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFFD1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1569, 150, '_elementor_page_settings', 'a:0:{}'),
(8691, 732, '_elementor_source', 'post'),
(8692, 732, '_elementor_edit_mode', 'builder'),
(8693, 732, '_elementor_template_type', 'header'),
(8694, 732, '_elementor_version', '4.1.3'),
(8695, 732, '_elementor_pro_version', '4.1.1'),
(8696, 732, '_elementor_global_class_usage_indexed', '1'),
(8697, 732, '_elementor_global_class_usage_indexed_preview', '1'),
(8698, 732, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(8699, 732, '_wp_page_template', 'default'),
(8700, 732, '_elementor_data', '[{\"id\":\"7cd2407b\",\"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},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4b376675\",\"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\":\"14e415c9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@optimalmentalwellness.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@optimalmentalwellness.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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5137f99d\",\"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\":\"416cdcb9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"877 296 7846\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:8772967846\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=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\":\"6090cb25\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"background_background\":\"classic\",\"z_index\":99,\"css_classes\":\"header_sections\",\"sticky\":\"top\",\"sticky_effects_offset\":50,\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"42e85872\",\"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\":\"5d51e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Optimal-Mental-Health-And-Wellness-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":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\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_position\":\"absolute\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"_offset_x_widescreen\":{\"size\":-1,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-1,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"388619a3\",\"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\":\"2a70cfde\",\"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\":30,\"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\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"500\",\"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=astglobalcolor6\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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=astglobalcolor6\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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=astglobalcolor6\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor6\",\"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\":\"ca7841b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"590be00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"454cd36b\",\"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\":432,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Mental-Health-And-Wellness-av.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.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\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"5aa4113e\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"},{\"id\":\"b8f44e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"align\":\"center\",\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"pp_condition_key\":\"static_page\",\"pp_condition_static_page_value\":\"blog\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(1572, 151, '_wp_page_template', 'elementor_header_footer'),
(1573, 151, '_elementor_edit_mode', 'builder'),
(1574, 151, '_elementor_template_type', 'wp-page'),
(1575, 151, '_elementor_version', '4.1.3'),
(1576, 151, '_elementor_pro_version', '4.1.1'),
(1577, 151, '_elementor_global_class_usage_indexed', '1'),
(1578, 151, '_elementor_global_class_usage_indexed_preview', '1'),
(1579, 151, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1580, 151, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6650, 576, '_wp_page_template', 'elementor_header_footer'),
(6652, 576, '_elementor_global_class_usage_indexed', '1'),
(6712, 581, '_wp_page_template', 'elementor_header_footer'),
(6690, 579, '_wp_page_template', 'elementor_header_footer'),
(7737, 661, '_elementor_edit_mode', 'builder'),
(7738, 661, '_elementor_template_type', 'wp-page'),
(6692, 579, '_elementor_global_class_usage_indexed', '1'),
(6693, 579, '_elementor_edit_mode', 'builder'),
(6694, 579, '_elementor_template_type', 'wp-page'),
(6695, 579, '_elementor_version', '4.1.3'),
(6696, 579, '_elementor_pro_version', '4.1.1'),
(6697, 579, '_elementor_global_class_usage_indexed_preview', '1'),
(6698, 579, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6699, 579, '_elementor_data', '[{\"id\":\"723c28e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"103e2d3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"00c4f2f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bdc0006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"00adcc8\"}]},\"elements\":[{\"id\":\"5b246aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0293850\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c43a09c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90cf249\"}],\"pp_display_conditions\":[{\"_id\":\"22db06d\"}]},\"elements\":[{\"id\":\"6c3d86b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"f792d6f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Arizona\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"1b37468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arizona\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"841f41b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"7736eb9\",\"elType\":\"widget\",\"settings\":{\"address\":\"washington\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"f34a2a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Washington\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"315c520\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"c0bf036\",\"elType\":\"widget\",\"settings\":{\"address\":\"Arizona\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"960777f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arizona\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6660, 576, '_elementor_page_settings', 'a:0:{}'),
(1630, 155, '_wp_page_template', 'elementor_header_footer'),
(1631, 155, '_elementor_edit_mode', 'builder'),
(1632, 155, '_elementor_template_type', 'wp-page'),
(1633, 155, '_elementor_version', '4.1.3'),
(1634, 155, '_elementor_pro_version', '4.1.1'),
(1635, 155, '_elementor_global_class_usage_indexed', '1'),
(1636, 155, '_elementor_global_class_usage_indexed_preview', '1'),
(1637, 155, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1638, 155, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6653, 576, '_elementor_edit_mode', 'builder'),
(6654, 576, '_elementor_template_type', 'wp-page'),
(6655, 576, '_elementor_version', '4.1.3'),
(1598, 152, '_elementor_page_settings', 'a:0:{}'),
(8475, 713, '_elementor_screenshot_failed', '2026-06-17 14:27:04'),
(1601, 153, '_wp_page_template', 'elementor_header_footer'),
(1602, 153, '_elementor_edit_mode', 'builder'),
(1603, 153, '_elementor_template_type', 'wp-page'),
(1604, 153, '_elementor_version', '4.1.3'),
(1605, 153, '_elementor_pro_version', '4.1.1'),
(1606, 153, '_elementor_global_class_usage_indexed', '1'),
(1607, 153, '_elementor_global_class_usage_indexed_preview', '1'),
(1608, 153, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1609, 153, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6656, 576, '_elementor_pro_version', '4.1.1'),
(6657, 576, '_elementor_global_class_usage_indexed_preview', '1'),
(6658, 576, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(1611, 153, '_elementor_page_settings', 'a:0:{}'),
(1615, 154, '_elementor_edit_mode', 'builder'),
(1616, 154, '_elementor_template_type', 'wp-page'),
(1617, 154, '_elementor_version', '4.1.3'),
(1618, 154, '_elementor_pro_version', '4.1.1'),
(1619, 154, '_elementor_global_class_usage_indexed', '1'),
(1620, 154, '_elementor_global_class_usage_indexed_preview', '1'),
(1621, 154, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1622, 154, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6635, 574, '_elementor_page_settings', 'a:0:{}'),
(6636, 575, '_wp_page_template', 'elementor_header_footer'),
(6638, 575, '_elementor_global_class_usage_indexed', '1'),
(6639, 575, '_elementor_edit_mode', 'builder'),
(6640, 575, '_elementor_template_type', 'wp-page'),
(6641, 575, '_elementor_version', '4.1.3'),
(6642, 575, '_elementor_pro_version', '4.1.1'),
(6643, 575, '_elementor_global_class_usage_indexed_preview', '1'),
(6644, 575, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6645, 575, '_elementor_data', '[{\"id\":\"723c28e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"103e2d3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"00c4f2f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bdc0006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"00adcc8\"}]},\"elements\":[{\"id\":\"5b246aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0293850\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c43a09c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90cf249\"}],\"pp_display_conditions\":[{\"_id\":\"22db06d\"}]},\"elements\":[{\"id\":\"6c3d86b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"f792d6f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Arizona\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"1b37468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arizona\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"841f41b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"7736eb9\",\"elType\":\"widget\",\"settings\":{\"address\":\"washington\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"f34a2a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arizona\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"315c520\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"c0bf036\",\"elType\":\"widget\",\"settings\":{\"address\":\"Arizona\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"960777f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arizona\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6676, 578, '_wp_page_template', 'elementor_header_footer'),
(6659, 576, '_elementor_data', '[{\"id\":\"723c28e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"103e2d3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"00c4f2f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bdc0006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"00adcc8\"}]},\"elements\":[{\"id\":\"5b246aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0293850\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c43a09c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90cf249\"}],\"pp_display_conditions\":[{\"_id\":\"22db06d\"}]},\"elements\":[{\"id\":\"6c3d86b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"f792d6f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Arizona\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"1b37468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arizona\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"841f41b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"7736eb9\",\"elType\":\"widget\",\"settings\":{\"address\":\"washington\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"f34a2a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arizona\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"315c520\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"c0bf036\",\"elType\":\"widget\",\"settings\":{\"address\":\"Arizona\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"960777f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arizona\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1694, 161, '_wp_page_template', 'elementor_header_footer'),
(1673, 159, '_elementor_edit_mode', 'builder'),
(1674, 159, '_elementor_template_type', 'wp-page'),
(1675, 159, '_elementor_version', '4.1.3'),
(1676, 159, '_elementor_pro_version', '4.1.1'),
(1677, 159, '_elementor_global_class_usage_indexed', '1'),
(1678, 159, '_elementor_global_class_usage_indexed_preview', '1'),
(1679, 159, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1680, 159, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1640, 155, '_elementor_page_settings', 'a:0:{}'),
(8471, 713, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1643, 156, '_wp_page_template', 'elementor_header_footer'),
(1644, 156, '_elementor_edit_mode', 'builder'),
(1645, 156, '_elementor_template_type', 'wp-page'),
(1646, 156, '_elementor_version', '4.1.3'),
(1647, 156, '_elementor_pro_version', '4.1.1'),
(1648, 156, '_elementor_global_class_usage_indexed', '1'),
(1649, 156, '_elementor_global_class_usage_indexed_preview', '1'),
(1650, 156, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1651, 156, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1653, 156, '_elementor_page_settings', 'a:0:{}'),
(1656, 157, '_wp_page_template', 'elementor_header_footer'),
(1657, 157, '_elementor_edit_mode', 'builder'),
(1658, 157, '_elementor_template_type', 'wp-page'),
(1659, 157, '_elementor_version', '4.1.3'),
(1660, 157, '_elementor_pro_version', '4.1.1'),
(1661, 157, '_elementor_global_class_usage_indexed', '1'),
(1662, 157, '_elementor_global_class_usage_indexed_preview', '1'),
(1663, 157, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1664, 157, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1682, 159, '_elementor_page_settings', 'a:0:{}'),
(1683, 160, '_wp_page_template', 'elementor_header_footer'),
(1684, 160, '_elementor_edit_mode', 'builder'),
(1685, 160, '_elementor_template_type', 'wp-page'),
(1686, 160, '_elementor_version', '4.1.3'),
(1687, 160, '_elementor_pro_version', '4.1.1'),
(1688, 160, '_elementor_global_class_usage_indexed', '1'),
(1689, 160, '_elementor_global_class_usage_indexed_preview', '1'),
(1690, 160, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1691, 160, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1693, 160, '_elementor_page_settings', 'a:0:{}'),
(1695, 161, '_elementor_edit_mode', 'builder'),
(1696, 161, '_elementor_template_type', 'wp-page'),
(1697, 161, '_elementor_version', '4.1.3'),
(1698, 161, '_elementor_pro_version', '4.1.1'),
(1699, 161, '_elementor_global_class_usage_indexed', '1'),
(1700, 161, '_elementor_global_class_usage_indexed_preview', '1'),
(1701, 161, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1702, 161, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Health-And-Wellness-aa.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":47,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1706, 162, '_wp_page_template', 'elementor_header_footer'),
(1707, 162, '_elementor_edit_mode', 'builder'),
(1708, 162, '_elementor_template_type', 'wp-page'),
(1709, 162, '_elementor_version', '4.1.3'),
(1710, 162, '_elementor_pro_version', '4.1.1'),
(1711, 162, '_elementor_global_class_usage_indexed', '1'),
(1712, 162, '_elementor_global_class_usage_indexed_preview', '1'),
(1713, 162, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1714, 162, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Health-And-Wellness-aa.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":47,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6632, 574, '_elementor_global_class_usage_indexed_preview', '1'),
(6633, 574, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6634, 574, '_elementor_data', '[{\"id\":\"723c28e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"103e2d3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"00c4f2f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bdc0006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"00adcc8\"}]},\"elements\":[{\"id\":\"5b246aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0293850\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c43a09c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90cf249\"}],\"pp_display_conditions\":[{\"_id\":\"22db06d\"}]},\"elements\":[{\"id\":\"6c3d86b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"f792d6f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Arizona\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"1b37468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arizona\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1716, 162, '_elementor_page_settings', 'a:0:{}'),
(1717, 163, '_wp_page_template', 'elementor_header_footer'),
(1718, 163, '_elementor_edit_mode', 'builder'),
(1719, 163, '_elementor_template_type', 'wp-page'),
(1720, 163, '_elementor_version', '4.1.3'),
(1721, 163, '_elementor_pro_version', '4.1.1'),
(1722, 163, '_elementor_global_class_usage_indexed', '1'),
(1723, 163, '_elementor_global_class_usage_indexed_preview', '1'),
(1724, 163, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1725, 163, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Health-And-Wellness-aa.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":47,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6628, 574, '_elementor_edit_mode', 'builder'),
(6629, 574, '_elementor_template_type', 'wp-page'),
(6630, 574, '_elementor_version', '4.1.3'),
(6631, 574, '_elementor_pro_version', '4.1.1'),
(1727, 163, '_elementor_page_settings', 'a:0:{}'),
(1768, 167, '_wp_page_template', 'elementor_header_footer'),
(1769, 167, '_elementor_edit_mode', 'builder'),
(1770, 167, '_elementor_template_type', 'wp-page'),
(1771, 167, '_elementor_version', '4.1.3'),
(1772, 167, '_elementor_pro_version', '4.1.1'),
(1773, 167, '_elementor_global_class_usage_indexed', '1'),
(1774, 167, '_elementor_global_class_usage_indexed_preview', '1'),
(1775, 167, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1776, 167, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Health-And-Wellness-aa.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1728, 164, '_wp_page_template', 'elementor_header_footer'),
(1729, 164, '_elementor_edit_mode', 'builder'),
(1730, 164, '_elementor_template_type', 'wp-page'),
(1731, 164, '_elementor_version', '4.1.3'),
(1732, 164, '_elementor_pro_version', '4.1.1'),
(1733, 164, '_elementor_global_class_usage_indexed', '1'),
(1734, 164, '_elementor_global_class_usage_indexed_preview', '1'),
(1735, 164, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1736, 164, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Health-And-Wellness-aa.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Health-And-Wellness-aa.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6627, 574, '_elementor_global_class_usage_indexed', '1'),
(1742, 165, '_wp_page_template', 'elementor_header_footer'),
(1743, 165, '_elementor_edit_mode', 'builder'),
(1744, 165, '_elementor_template_type', 'wp-page'),
(1745, 165, '_elementor_version', '4.1.3'),
(1746, 165, '_elementor_pro_version', '4.1.1'),
(1747, 165, '_elementor_global_class_usage_indexed', '1'),
(1748, 165, '_elementor_global_class_usage_indexed_preview', '1'),
(1749, 165, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1750, 165, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Health-And-Wellness-aa.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Health-And-Wellness-aa.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1810, 170, '_wp_page_template', 'elementor_header_footer'),
(1784, 168, '_wp_page_template', 'elementor_header_footer'),
(1785, 168, '_elementor_edit_mode', 'builder'),
(1786, 168, '_elementor_template_type', 'wp-page'),
(1787, 168, '_elementor_version', '4.1.3'),
(1788, 168, '_elementor_pro_version', '4.1.1'),
(1789, 168, '_elementor_global_class_usage_indexed', '1'),
(1790, 168, '_elementor_global_class_usage_indexed_preview', '1'),
(1791, 168, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1792, 168, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Health-And-Wellness-aa.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1824, 171, '_wp_page_template', 'elementor_header_footer'),
(1825, 171, '_elementor_edit_mode', 'builder'),
(1826, 171, '_elementor_template_type', 'wp-page'),
(1827, 171, '_elementor_version', '4.1.3'),
(1828, 171, '_elementor_pro_version', '4.1.1'),
(1829, 171, '_elementor_global_class_usage_indexed', '1'),
(1830, 171, '_elementor_global_class_usage_indexed_preview', '1'),
(1831, 171, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1832, 171, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Health-And-Wellness-aa.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6624, 573, '_elementor_page_settings', 'a:0:{}'),
(6625, 574, '_wp_page_template', 'elementor_header_footer'),
(1752, 165, '_elementor_page_settings', 'a:0:{}'),
(1755, 166, '_wp_page_template', 'elementor_header_footer'),
(1756, 166, '_elementor_edit_mode', 'builder'),
(1757, 166, '_elementor_template_type', 'wp-page'),
(1758, 166, '_elementor_version', '4.1.3'),
(1759, 166, '_elementor_pro_version', '4.1.1'),
(1760, 166, '_elementor_global_class_usage_indexed', '1'),
(1761, 166, '_elementor_global_class_usage_indexed_preview', '1'),
(1762, 166, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1763, 166, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"a46dce5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Health-And-Wellness-aa.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Health-And-Wellness-aa.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1765, 166, '_elementor_page_settings', 'a:0:{}'),
(8445, 712, '_wp_page_template', 'elementor_header_footer'),
(8446, 712, '_elementor_global_class_usage_indexed', '1'),
(8447, 712, '_elementor_edit_mode', 'builder'),
(8448, 712, '_elementor_template_type', 'wp-page'),
(8449, 712, '_elementor_version', '4.1.3'),
(8450, 712, '_elementor_pro_version', '4.1.1'),
(8451, 712, '_elementor_global_class_usage_indexed_preview', '1'),
(8452, 712, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(8453, 712, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\",\"css_classes\":\"common_image_animation\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\",\"css_classes\":\"common_image_animation\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc1421c\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"fbe05c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"11c59e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\",\"css_classes\":\"common_image_animation\"},\"elements\":[{\"id\":\"df4e00a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7673fe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"806e853\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychotherapy\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b609356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Individual therapy<\\/li>\\n \\t<li>Couples\\/marriage therapy<\\/li>\\n \\t<li>Family therapy<\\/li>\\n \\t<li>Child\\/teen therapy<\\/li>\\n \\t<li>Online therapy<\\/li>\\n \\t<li>COMMON SPECIALTIES &amp; approaches<\\/li>\\n \\t<li>Anxiety therapy<\\/li>\\n \\t<li>Cognitive behavioral therapy (CBT)<\\/li>\\n \\t<li>Depression counseling<\\/li>\\n \\t<li>Dialectical behavior therapy (DBT)<\\/li>\\n \\t<li>Grief &amp; loss counseling<\\/li>\\n \\t<li>Relational therapy<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15c408\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7b01183\",\"elType\":\"widget\",\"settings\":{\"title\":\"Therapy can be highly beneficial for mental health for several reasons:\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3d35599\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"09c417e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"d99ddf0\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Safe Space\",\"_id\":\"776845c\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/dimension_9728408.svg\",\"id\":504},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Emotional Support\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/friendship_4760671.svg\",\"id\":509},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ca6452d\"},{\"title\":\"Self-Exploration\",\"subtitle\":\"\",\"description\":\"<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/medical_12751971.svg\",\"id\":513},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"81a0197\"},{\"title\":\"Coping Strategies\",\"subtitle\":\"\",\"description\":\"<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/advisory-services_12963796.svg\",\"id\":517},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5a9c4f4\"},{\"title\":\"Goal Setting\",\"subtitle\":\"\",\"description\":\"<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/setup_917115.svg\",\"id\":521},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0381d8b\"},{\"title\":\"Relationship Improvement\",\"subtitle\":\"\",\"description\":\"<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/employee-benefit_9888459.svg\",\"id\":525},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5d28a9d\"},{\"title\":\"Skill Development\",\"subtitle\":\"\",\"description\":\"<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mindful_18810720.svg\",\"id\":529},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ee22b3d\"},{\"title\":\"Tailored Approaches\",\"subtitle\":\"\",\"description\":\"<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/structure_7287549.svg\",\"id\":533},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"9d17efb\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"870829e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"8f5a2f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"01c35ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(1846, 173, '_wp_page_template', 'elementor_header_footer'),
(1794, 168, '_elementor_page_settings', 'a:0:{}'),
(1797, 169, '_wp_page_template', 'elementor_header_footer'),
(1798, 169, '_elementor_edit_mode', 'builder'),
(1799, 169, '_elementor_template_type', 'wp-page'),
(1800, 169, '_elementor_version', '4.1.3'),
(1801, 169, '_elementor_pro_version', '4.1.1'),
(1802, 169, '_elementor_global_class_usage_indexed', '1'),
(1803, 169, '_elementor_global_class_usage_indexed_preview', '1'),
(1804, 169, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1805, 169, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Health-And-Wellness-aa.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1807, 169, '_elementor_page_settings', 'a:0:{}'),
(8441, 711, '_elementor_page_settings', 'a:0:{}'),
(1811, 170, '_elementor_edit_mode', 'builder'),
(1812, 170, '_elementor_template_type', 'wp-page'),
(1813, 170, '_elementor_version', '4.1.3'),
(1814, 170, '_elementor_pro_version', '4.1.1'),
(1815, 170, '_elementor_global_class_usage_indexed', '1'),
(1816, 170, '_elementor_global_class_usage_indexed_preview', '1'),
(1817, 170, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1818, 170, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Health-And-Wellness-aa.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6614, 573, '_wp_page_template', 'elementor_header_footer'),
(1834, 171, '_elementor_page_settings', 'a:0:{}'),
(1835, 172, '_wp_page_template', 'elementor_header_footer'),
(1836, 172, '_elementor_edit_mode', 'builder'),
(1837, 172, '_elementor_template_type', 'wp-page'),
(1838, 172, '_elementor_version', '4.1.3'),
(1839, 172, '_elementor_pro_version', '4.1.1'),
(1840, 172, '_elementor_global_class_usage_indexed', '1'),
(1841, 172, '_elementor_global_class_usage_indexed_preview', '1'),
(1842, 172, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1843, 172, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Health-And-Wellness-aa.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6616, 573, '_elementor_global_class_usage_indexed', '1'),
(6617, 573, '_elementor_edit_mode', 'builder'),
(6618, 573, '_elementor_template_type', 'wp-page'),
(6619, 573, '_elementor_version', '4.1.3'),
(1845, 172, '_elementor_page_settings', 'a:0:{}'),
(1847, 173, '_elementor_edit_mode', 'builder'),
(1848, 173, '_elementor_template_type', 'wp-page'),
(1849, 173, '_elementor_version', '4.1.3'),
(1850, 173, '_elementor_pro_version', '4.1.1'),
(1851, 173, '_elementor_global_class_usage_indexed', '1'),
(1852, 173, '_elementor_global_class_usage_indexed_preview', '1'),
(1853, 173, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1854, 173, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Health-And-Wellness-aa.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6620, 573, '_elementor_pro_version', '4.1.1'),
(6621, 573, '_elementor_global_class_usage_indexed_preview', '1'),
(6622, 573, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(1886, 176, '_wp_page_template', 'elementor_header_footer'),
(1860, 174, '_wp_page_template', 'elementor_header_footer'),
(1861, 174, '_elementor_edit_mode', 'builder'),
(1862, 174, '_elementor_template_type', 'wp-page'),
(1863, 174, '_elementor_version', '4.1.3'),
(1864, 174, '_elementor_pro_version', '4.1.1'),
(1865, 174, '_elementor_global_class_usage_indexed', '1'),
(1866, 174, '_elementor_global_class_usage_indexed_preview', '1'),
(1867, 174, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1868, 174, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Health-And-Wellness-aa.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1930, 180, '_wp_page_template', 'elementor_header_footer'),
(1904, 178, '_wp_page_template', 'elementor_header_footer'),
(1905, 178, '_elementor_edit_mode', 'builder'),
(1906, 178, '_elementor_template_type', 'wp-page'),
(1907, 178, '_elementor_version', '4.1.3'),
(1908, 178, '_elementor_pro_version', '4.1.1'),
(1909, 178, '_elementor_global_class_usage_indexed', '1'),
(1910, 178, '_elementor_global_class_usage_indexed_preview', '1'),
(1911, 178, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1912, 178, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\",\"id\":71,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6623, 573, '_elementor_data', '[{\"id\":\"723c28e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"103e2d3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"00c4f2f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bdc0006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"00adcc8\"}]},\"elements\":[{\"id\":\"5b246aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0293850\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c43a09c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90cf249\"}],\"pp_display_conditions\":[{\"_id\":\"22db06d\"}]},\"elements\":[{\"id\":\"6c3d86b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"f792d6f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Arizona\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"1b37468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arizona\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1870, 174, '_elementor_page_settings', 'a:0:{}'),
(8432, 711, '_wp_page_template', 'elementor_header_footer'),
(8433, 711, '_elementor_global_class_usage_indexed', '1'),
(8434, 711, '_elementor_edit_mode', 'builder'),
(8435, 711, '_elementor_template_type', 'wp-page'),
(8436, 711, '_elementor_version', '4.1.3'),
(8437, 711, '_elementor_pro_version', '4.1.1'),
(8438, 711, '_elementor_global_class_usage_indexed_preview', '1'),
(8439, 711, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8440, 711, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc1421c\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"fbe05c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"11c59e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"df4e00a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7673fe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"806e853\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychotherapy\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b609356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Individual therapy<\\/li>\\n \\t<li>Couples\\/marriage therapy<\\/li>\\n \\t<li>Family therapy<\\/li>\\n \\t<li>Child\\/teen therapy<\\/li>\\n \\t<li>Online therapy<\\/li>\\n \\t<li>COMMON SPECIALTIES &amp; approaches<\\/li>\\n \\t<li>Anxiety therapy<\\/li>\\n \\t<li>Cognitive behavioral therapy (CBT)<\\/li>\\n \\t<li>Depression counseling<\\/li>\\n \\t<li>Dialectical behavior therapy (DBT)<\\/li>\\n \\t<li>Grief &amp; loss counseling<\\/li>\\n \\t<li>Relational therapy<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15c408\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7b01183\",\"elType\":\"widget\",\"settings\":{\"title\":\"Therapy can be highly beneficial for mental health for several reasons:\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3d35599\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"09c417e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"d99ddf0\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Safe Space\",\"_id\":\"776845c\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/dimension_9728408.svg\",\"id\":504},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Emotional Support\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/friendship_4760671.svg\",\"id\":509},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ca6452d\"},{\"title\":\"Self-Exploration\",\"subtitle\":\"\",\"description\":\"<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/medical_12751971.svg\",\"id\":513},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"81a0197\"},{\"title\":\"Coping Strategies\",\"subtitle\":\"\",\"description\":\"<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/advisory-services_12963796.svg\",\"id\":517},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5a9c4f4\"},{\"title\":\"Goal Setting\",\"subtitle\":\"\",\"description\":\"<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/setup_917115.svg\",\"id\":521},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0381d8b\"},{\"title\":\"Relationship Improvement\",\"subtitle\":\"\",\"description\":\"<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/employee-benefit_9888459.svg\",\"id\":525},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5d28a9d\"},{\"title\":\"Skill Development\",\"subtitle\":\"\",\"description\":\"<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mindful_18810720.svg\",\"id\":529},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ee22b3d\"},{\"title\":\"Tailored Approaches\",\"subtitle\":\"\",\"description\":\"<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/structure_7287549.svg\",\"id\":533},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"9d17efb\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"870829e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"8f5a2f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"01c35ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(1873, 175, '_wp_page_template', 'elementor_header_footer'),
(1874, 175, '_elementor_edit_mode', 'builder'),
(1875, 175, '_elementor_template_type', 'wp-page'),
(1876, 175, '_elementor_version', '4.1.3'),
(1877, 175, '_elementor_pro_version', '4.1.1'),
(1878, 175, '_elementor_global_class_usage_indexed', '1'),
(1879, 175, '_elementor_global_class_usage_indexed_preview', '1'),
(1880, 175, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1881, 175, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Health-And-Wellness-aa.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1883, 175, '_elementor_page_settings', 'a:0:{}'),
(1887, 176, '_elementor_edit_mode', 'builder'),
(1888, 176, '_elementor_template_type', 'wp-page'),
(1889, 176, '_elementor_version', '4.1.3'),
(1890, 176, '_elementor_pro_version', '4.1.1'),
(1891, 176, '_elementor_global_class_usage_indexed', '1'),
(1892, 176, '_elementor_global_class_usage_indexed_preview', '1'),
(1893, 176, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1894, 176, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\",\"id\":71,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6602, 572, '_wp_page_template', 'elementor_header_footer'),
(6580, 570, '_wp_page_template', 'elementor_header_footer'),
(6582, 570, '_elementor_global_class_usage_indexed', '1'),
(6583, 570, '_elementor_edit_mode', 'builder'),
(6584, 570, '_elementor_template_type', 'wp-page'),
(6585, 570, '_elementor_version', '4.1.3'),
(6586, 570, '_elementor_pro_version', '4.1.1'),
(6587, 570, '_elementor_global_class_usage_indexed_preview', '1'),
(6588, 570, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6589, 570, '_elementor_data', '[{\"id\":\"723c28e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"103e2d3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"00c4f2f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bdc0006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"00adcc8\"}]},\"elements\":[{\"id\":\"5b246aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0293850\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c43a09c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90cf249\"}],\"pp_display_conditions\":[{\"_id\":\"22db06d\"}]},\"elements\":[{\"id\":\"6c3d86b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"f792d6f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Arizona\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"1b37468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arizona\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6590, 570, '_elementor_page_settings', 'a:0:{}'),
(6591, 571, '_wp_page_template', 'elementor_header_footer'),
(6593, 571, '_elementor_global_class_usage_indexed', '1'),
(6594, 571, '_elementor_edit_mode', 'builder'),
(6595, 571, '_elementor_template_type', 'wp-page'),
(6596, 571, '_elementor_version', '4.1.3'),
(6597, 571, '_elementor_pro_version', '4.1.1'),
(6598, 571, '_elementor_global_class_usage_indexed_preview', '1'),
(6599, 571, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6600, 571, '_elementor_data', '[{\"id\":\"723c28e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"103e2d3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"00c4f2f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bdc0006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"00adcc8\"}]},\"elements\":[{\"id\":\"5b246aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0293850\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c43a09c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90cf249\"}],\"pp_display_conditions\":[{\"_id\":\"22db06d\"}]},\"elements\":[{\"id\":\"6c3d86b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"f792d6f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Arizona\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"1b37468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arizona\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6601, 571, '_elementor_page_settings', 'a:0:{}'),
(6604, 572, '_elementor_global_class_usage_indexed', '1'),
(6605, 572, '_elementor_edit_mode', 'builder'),
(6606, 572, '_elementor_template_type', 'wp-page'),
(6607, 572, '_elementor_version', '4.1.3'),
(6608, 572, '_elementor_pro_version', '4.1.1'),
(6609, 572, '_elementor_global_class_usage_indexed_preview', '1'),
(6610, 572, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6611, 572, '_elementor_data', '[{\"id\":\"723c28e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"103e2d3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"00c4f2f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bdc0006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"00adcc8\"}]},\"elements\":[{\"id\":\"5b246aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0293850\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c43a09c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90cf249\"}],\"pp_display_conditions\":[{\"_id\":\"22db06d\"}]},\"elements\":[{\"id\":\"6c3d86b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"f792d6f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Arizona\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"1b37468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arizona\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1966, 183, '_wp_page_template', 'elementor_header_footer'),
(1944, 181, '_wp_page_template', 'elementor_header_footer'),
(1945, 181, '_elementor_edit_mode', 'builder'),
(1946, 181, '_elementor_template_type', 'wp-page'),
(1947, 181, '_elementor_version', '4.1.3'),
(1948, 181, '_elementor_pro_version', '4.1.1'),
(1949, 181, '_elementor_global_class_usage_indexed', '1'),
(1950, 181, '_elementor_global_class_usage_indexed_preview', '1'),
(1951, 181, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1952, 181, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1914, 178, '_elementor_page_settings', 'a:0:{}'),
(8428, 710, '_elementor_page_settings', 'a:0:{}'),
(1917, 179, '_wp_page_template', 'elementor_header_footer'),
(1918, 179, '_elementor_edit_mode', 'builder'),
(1919, 179, '_elementor_template_type', 'wp-page'),
(1920, 179, '_elementor_version', '4.1.3'),
(1921, 179, '_elementor_pro_version', '4.1.1'),
(1922, 179, '_elementor_global_class_usage_indexed', '1'),
(1923, 179, '_elementor_global_class_usage_indexed_preview', '1'),
(1924, 179, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1925, 179, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\",\"id\":71,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1927, 179, '_elementor_page_settings', 'a:0:{}'),
(1931, 180, '_elementor_edit_mode', 'builder'),
(1932, 180, '_elementor_template_type', 'wp-page'),
(1933, 180, '_elementor_version', '4.1.3'),
(1934, 180, '_elementor_pro_version', '4.1.1'),
(1935, 180, '_elementor_global_class_usage_indexed', '1'),
(1936, 180, '_elementor_global_class_usage_indexed_preview', '1'),
(1937, 180, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1938, 180, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8949, 306, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>'),
(1954, 181, '_elementor_page_settings', 'a:0:{}'),
(1955, 182, '_wp_page_template', 'elementor_header_footer'),
(1956, 182, '_elementor_edit_mode', 'builder'),
(1957, 182, '_elementor_template_type', 'wp-page'),
(1958, 182, '_elementor_version', '4.1.3'),
(1959, 182, '_elementor_pro_version', '4.1.1'),
(1960, 182, '_elementor_global_class_usage_indexed', '1'),
(1961, 182, '_elementor_global_class_usage_indexed_preview', '1'),
(1962, 182, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1963, 182, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1965, 182, '_elementor_page_settings', 'a:0:{}'),
(1967, 183, '_elementor_edit_mode', 'builder'),
(1968, 183, '_elementor_template_type', 'wp-page'),
(1969, 183, '_elementor_version', '4.1.3'),
(1970, 183, '_elementor_pro_version', '4.1.1'),
(1971, 183, '_elementor_global_class_usage_indexed', '1'),
(1972, 183, '_elementor_global_class_usage_indexed_preview', '1'),
(1973, 183, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(1974, 183, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1998, 185, '_wp_page_template', 'elementor_header_footer'),
(1999, 185, '_elementor_edit_mode', 'builder'),
(2000, 185, '_elementor_template_type', 'wp-page'),
(2001, 185, '_elementor_version', '4.1.3'),
(2002, 185, '_elementor_pro_version', '4.1.1'),
(2003, 185, '_elementor_global_class_usage_indexed', '1'),
(2004, 185, '_elementor_global_class_usage_indexed_preview', '1'),
(2005, 185, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2006, 185, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2040, 188, '_wp_page_template', 'elementor_header_footer'),
(2041, 188, '_elementor_edit_mode', 'builder'),
(2042, 188, '_elementor_template_type', 'wp-page'),
(2043, 188, '_elementor_version', '4.1.3'),
(2044, 188, '_elementor_pro_version', '4.1.1'),
(2045, 188, '_elementor_global_class_usage_indexed', '1'),
(2046, 188, '_elementor_global_class_usage_indexed_preview', '1'),
(2047, 188, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(2048, 188, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(1990, 184, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(6506, 556, '_elementor_template_type', 'wp-page'),
(6507, 556, '_elementor_version', '4.1.3'),
(6508, 556, '_elementor_pro_version', '4.1.1'),
(6510, 556, '_elementor_global_class_usage_indexed_preview', '1'),
(6511, 556, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6512, 556, '_oembed_4405dc603c2c518b64fcded50dc66d98', '{{unknown}}'),
(6513, 564, '_wp_page_template', 'elementor_header_footer'),
(6515, 564, '_elementor_global_class_usage_indexed', '1'),
(6516, 564, '_elementor_edit_mode', 'builder'),
(6517, 564, '_elementor_template_type', 'wp-page'),
(6518, 564, '_elementor_version', '4.1.3'),
(6519, 564, '_elementor_pro_version', '4.1.1'),
(6520, 564, '_elementor_page_settings', 'a:0:{}'),
(6521, 564, '_elementor_global_class_usage_indexed_preview', '1'),
(6522, 564, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6523, 565, '_wp_page_template', 'elementor_header_footer'),
(6525, 565, '_elementor_global_class_usage_indexed', '1'),
(6526, 565, '_elementor_edit_mode', 'builder'),
(6527, 565, '_elementor_template_type', 'wp-page'),
(6528, 565, '_elementor_version', '4.1.3'),
(6529, 565, '_elementor_pro_version', '4.1.1'),
(6530, 565, '_elementor_page_settings', 'a:0:{}'),
(6531, 565, '_elementor_global_class_usage_indexed_preview', '1'),
(6532, 565, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6534, 566, '_wp_page_template', 'elementor_header_footer'),
(7752, 662, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6536, 566, '_elementor_global_class_usage_indexed', '1'),
(6537, 566, '_elementor_edit_mode', 'builder'),
(6538, 566, '_elementor_template_type', 'wp-page'),
(6539, 566, '_elementor_version', '4.1.3'),
(6540, 566, '_elementor_pro_version', '4.1.1'),
(6541, 566, '_elementor_global_class_usage_indexed_preview', '1'),
(6542, 566, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6543, 566, '_elementor_data', '[{\"id\":\"723c28e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"103e2d3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"00c4f2f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bdc0006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"00adcc8\"}]},\"elements\":[{\"id\":\"5b246aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0293850\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c43a09c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90cf249\"}],\"pp_display_conditions\":[{\"_id\":\"22db06d\"}]},\"elements\":[{\"id\":\"6c3d86b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"f792d6f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Arizona\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"1b37468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arizona\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6546, 567, '_wp_page_template', 'elementor_header_footer'),
(7749, 662, '_elementor_version', '4.1.3'),
(7750, 662, '_elementor_pro_version', '4.1.1'),
(7751, 662, '_elementor_global_class_usage_indexed_preview', '1'),
(6548, 567, '_elementor_global_class_usage_indexed', '1'),
(6549, 567, '_elementor_edit_mode', 'builder'),
(6550, 567, '_elementor_template_type', 'wp-page'),
(6551, 567, '_elementor_version', '4.1.3'),
(6552, 567, '_elementor_pro_version', '4.1.1'),
(6553, 567, '_elementor_global_class_usage_indexed_preview', '1'),
(6554, 567, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6555, 567, '_elementor_data', '[{\"id\":\"723c28e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"103e2d3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"00c4f2f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bdc0006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"00adcc8\"}]},\"elements\":[{\"id\":\"5b246aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0293850\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c43a09c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90cf249\"}],\"pp_display_conditions\":[{\"_id\":\"22db06d\"}]},\"elements\":[{\"id\":\"6c3d86b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"f792d6f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Arizona\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"1b37468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arizona\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6556, 567, '_elementor_page_settings', 'a:0:{}'),
(6557, 568, '_wp_page_template', 'elementor_header_footer'),
(7747, 662, '_elementor_edit_mode', 'builder'),
(7748, 662, '_elementor_template_type', 'wp-page'),
(6559, 568, '_elementor_global_class_usage_indexed', '1'),
(6560, 568, '_elementor_edit_mode', 'builder'),
(6561, 568, '_elementor_template_type', 'wp-page'),
(6562, 568, '_elementor_version', '4.1.3'),
(6563, 568, '_elementor_pro_version', '4.1.1'),
(6564, 568, '_elementor_global_class_usage_indexed_preview', '1'),
(6565, 568, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6566, 568, '_elementor_data', '[{\"id\":\"723c28e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"103e2d3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"00c4f2f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bdc0006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"00adcc8\"}]},\"elements\":[{\"id\":\"5b246aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0293850\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c43a09c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90cf249\"}],\"pp_display_conditions\":[{\"_id\":\"22db06d\"}]},\"elements\":[{\"id\":\"6c3d86b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"f792d6f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Arizona\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"1b37468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arizona\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6567, 568, '_elementor_page_settings', 'a:0:{}'),
(6568, 569, '_wp_page_template', 'elementor_header_footer'),
(7744, 661, '_elementor_page_settings', 'a:0:{}'),
(7745, 662, '_wp_page_template', 'elementor_header_footer'),
(7746, 662, '_elementor_global_class_usage_indexed', '1'),
(6570, 569, '_elementor_global_class_usage_indexed', '1'),
(6571, 569, '_elementor_edit_mode', 'builder'),
(6572, 569, '_elementor_template_type', 'wp-page'),
(6573, 569, '_elementor_version', '4.1.3'),
(6574, 569, '_elementor_pro_version', '4.1.1'),
(6575, 569, '_elementor_global_class_usage_indexed_preview', '1'),
(6576, 569, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6577, 569, '_elementor_data', '[{\"id\":\"723c28e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"103e2d3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"00c4f2f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bdc0006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"00adcc8\"}]},\"elements\":[{\"id\":\"5b246aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0293850\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c43a09c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90cf249\"}],\"pp_display_conditions\":[{\"_id\":\"22db06d\"}]},\"elements\":[{\"id\":\"6c3d86b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"f792d6f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Arizona\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"1b37468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arizona\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4931, 429, '_elementor_source', 'post'),
(4932, 429, '_elementor_edit_mode', 'builder'),
(4933, 429, '_elementor_template_type', 'header'),
(4934, 429, '_elementor_version', '4.1.3'),
(4935, 429, '_elementor_pro_version', '4.1.1'),
(4936, 429, '_elementor_global_class_usage_indexed', '1'),
(4937, 429, '_elementor_global_class_usage_indexed_preview', '1'),
(4938, 429, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(4939, 429, '_wp_page_template', 'default');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4940, 429, '_elementor_data', '[{\"id\":\"7cd2407b\",\"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\":\"4b376675\",\"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\":\"14e415c9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@optimalmentalwellness.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@optimalmentalwellness.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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5137f99d\",\"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\":\"416cdcb9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"904-901-7913\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:9049017913\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=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\":\"6090cb25\",\"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\"},\"elements\":[{\"id\":\"42e85872\",\"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\":\"5d51e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Optimal-Mental-Health-And-Wellness-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":300,\"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\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_position\":\"absolute\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"388619a3\",\"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\":\"2a70cfde\",\"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\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"500\",\"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=astglobalcolor6\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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\":[]},\"_flex_order_tablet_extra\":\"end\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"ca7841b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"590be00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"454cd36b\",\"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\\/optimalmentalwellness\\/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\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"5aa4113e\",\"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}]'),
(6502, 556, '_astra_content_layout_flag', 'disabled'),
(6533, 556, '_elementor_data', '[{\"id\":\"723c28e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"103e2d3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"00c4f2f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bdc0006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"00adcc8\"}]},\"elements\":[{\"id\":\"5b246aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0293850\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c43a09c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90cf249\"}],\"pp_display_conditions\":[{\"_id\":\"22db06d\"}]},\"elements\":[{\"id\":\"6c3d86b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f792d6f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Arizona\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"1b37468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arizona\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"841f41b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"7736eb9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Washington\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"f34a2a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Washington\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"315c520\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"c0bf036\",\"elType\":\"widget\",\"settings\":{\"address\":\"colorado\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"960777f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Colorado\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f15109\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"27d533e\",\"elType\":\"widget\",\"settings\":{\"address\":\"florida\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"97e54f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Florida\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f5247d6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"ef16923\",\"elType\":\"widget\",\"settings\":{\"address\":\"Oregon\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"e54df1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oregon\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6504, 556, 'ast-title-bar-display', 'disabled'),
(6505, 556, 'ast-featured-img', 'disabled'),
(2008, 185, '_elementor_page_settings', 'a:0:{}'),
(8399, 709, '_wp_page_template', 'elementor_header_footer'),
(8400, 709, '_elementor_global_class_usage_indexed', '1'),
(8401, 709, '_elementor_edit_mode', 'builder'),
(8402, 709, '_elementor_template_type', 'wp-page'),
(8403, 709, '_elementor_version', '4.1.3'),
(8404, 709, '_elementor_pro_version', '4.1.1'),
(8405, 709, '_elementor_global_class_usage_indexed_preview', '1'),
(8406, 709, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(8407, 709, '_elementor_data', '[{\"id\":\"ac1e13a\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f591f8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"567cfdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a7a518c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b98719c\"}]},\"elements\":[{\"id\":\"f627272\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5563ffc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"05b7cf4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"122bdd4\"}],\"pp_display_conditions\":[{\"_id\":\"f889efe\"}]},\"elements\":[{\"id\":\"26b48d2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9d9933e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"402ab08\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69abc97\"}],\"pp_display_conditions\":[{\"_id\":\"dc50305\"}],\"animation\":\"fadeInLeft\",\"css_classes\":\"common_image_animation\"},\"elements\":[{\"id\":\"d6c45ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/IMG_9815.jpg\",\"id\":440,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"838e566\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a90d849\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9d9933e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"402ab08\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69abc97\"}],\"pp_display_conditions\":[{\"_id\":\"dc50305\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"224a3be\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Provider\",\"pp_display_conditions\":[{\"_id\":\"8723de8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515aee8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arlene Johnson\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"8723de8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae218c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Arlene Johnson is a distinguished board -certified Nurse Practitioner holding a Masters Degree in Nursing Practice. Arlene is licensed in the state of Florida,Washington,Arizona,and Colorado as a Psychiatric Mental Health Nurse Practitioner . She obtained her Bachelor\\u2019s degree and Master\\u2019s degree from Walden University.<\\/p><p>Arlene\'s passion for mental health was ignited early on in her nursing career, and since then, being an advocate for those suffering from mental health conditions has been at the forefront. With well over a decade of experience in the healthcare field, ranging from treating acute to chronic conditions, Arlene believes in a comprehensive approach integrating both her Psychiatric and Medical background grounded in evidence-based practice to provide the highest quality of care. With her patient-centered care tailored to meet the needs of each individual patient, she not only fosters a caring therapeutic environment, but she also empowers her patients to become the best version of themselves.<br \\/><br \\/>Her years of extensive healthcare experience and unparalleled insight has helped individuals cultivate a path towards a balanced and fulfilling life of mental wellness!<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"6e0e683\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8951, 414, '_elementor_element_cache', '{\"timeout\":1784731959,\"value\":{\"content\":\"<div class=\\\"elementor-element elementor-element-36acd947 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"36acd947\\\" 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-a61f409 e-flex e-con-boxed e-con e-child\\\" data-id=\\\"a61f409\\\" 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-5b64f0b6 e-con-full e-flex e-con e-child\\\" data-id=\\\"5b64f0b6\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-f54abd0 elementor-widget elementor-widget-heading\\\" data-id=\\\"f54abd0\\\" 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-204810e elementor-widget-divider--view-line elementor-widget elementor-widget-divider\\\" data-id=\\\"204810e\\\" 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=\\\"1103d769b8569c2f8bdcdce2a5e36940\\\" data=\\\"eyJpZCI6IjFmM2FkY2JhIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiZWRpdG9yIjoiV2Ugc3RyaXZlIHRvIHByb3ZpZGUgb3VyIHBhdGllbnRzIHdpdGggdGhlIGhpZ2hlc3QgcXVhbGl0eSBvZiBjYXJlIHdoaWxlIHV0aWxpemluZyB0aGUgbW9zdCBjb21wcmVoZW5zaXZlIGFuZCBldmlkZW5jZS1iYXNlZCBtb2RlbHMgb2YgcHN5Y2hpYXRyaWMgaGVhbHRoIGFuZCB3ZWxsbmVzcy4gT3VyIGluZGl2aWR1YWxpemVkIHBhdGllbnQtY2VudGVyZWQgYXBwcm9hY2gsIGFsb25nIHdpdGggb3VyIGludGVncmF0ZWQgZm9jdXMsIGVuYWJsZXMgdXMgdG8gaGVscCBpbmRpdmlkdWFscyBhbmQgZmFtaWxpZXMgYWNoaWV2ZSB0aGVpciBkZXNpcmVkIG1lbnRhbCBoZWFsdGggb3V0Y29tZXMuIiwicHBfZGlzcGxheV9jb25kaXRpb25zIjpbeyJfaWQiOiJiMjRjOGM5IiwicHBfY29uZGl0aW9uX2RhdGVfdGltZV9iZWZvcmVfdmFsdWUiOiIyMDI0LTAyLTIyIDA3OjM2IiwicHBfY29uZGl0aW9uX2RhdGVfdmFsdWUiOiIyMDI1LTA4LTI0IHRvIDIwMjUtMDgtMzAiLCJwcF9jb25kaXRpb25fZGV2aWNlX3R5cGVfdmFsdWUiOiJtb2JpbGUifV0sInBwX2VsZW1lbnRzX3Rvb2x0aXBfY29udGVudCI6IlRvb2x0aXAgQ29udGVudCIsIl9fZ2xvYmFsc19fIjp7InRleHRfY29sb3IiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3I0In19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJ0ZXh0LWVkaXRvciJ9\\\"]\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-7f19265 e-con-full e-flex e-con e-child\\\" data-id=\\\"7f19265\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-65ebe43c elementor-widget elementor-widget-heading\\\" data-id=\\\"65ebe43c\\\" 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-3ba9c024 elementor-widget-divider--view-line elementor-widget elementor-widget-divider\\\" data-id=\\\"3ba9c024\\\" 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-1a4d853c elementor-list-item-link-inline elementor-icon-list--layout-traditional elementor-widget elementor-widget-icon-list\\\" data-id=\\\"1a4d853c\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"icon-list.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<ul class=\\\"elementor-icon-list-items\\\">\\n\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"https:\\/\\/maps.google.com\\/maps?ll=30.246008,-81.533169&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=5011%20Gate%20Pkwy%20Bldg%20100%2C%20Suite%20100%20Collier%20Building%2C%20Parking%20lot%20Jacksonville%2C%20FL%2032256%20USA\\\" target=\\\"_blank\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-map-marker-alt\\\" viewBox=\\\"0 0 384 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">5011 Gate Parkway Bldg 100 Suite 100  Jacksonville, FL 32256 United States<\\/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<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-map-marker-alt\\\" viewBox=\\\"0 0 384 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">2590 Welton Street suite 200 Denver,Colorado  80205<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"tel:8772967846\\\">\\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\\\">877 296 7846<\\/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:4702222746\\\">\\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\\\">470 222-2746<\\/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:%20info@optimalmentalwellness.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@optimalmentalwellness.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-1004a94f e-grid-align-left elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons\\\" data-id=\\\"1004a94f\\\" 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\\\">\\n\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-grid-item\\\">\\n\\t\\t\\t\\t\\t<a class=\\\"elementor-icon elementor-social-icon elementor-social-icon-instagram elementor-repeater-item-bc50426\\\" href=\\\"https:\\/\\/www.instagram.com\\/optimal_mentalhealth?igsh=Y3Z3NjFjYnQ0cXdo\\\" 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<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-67a9f141 e-con-full e-flex e-con e-child\\\" data-id=\\\"67a9f141\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-48dc4a5a elementor-widget elementor-widget-heading\\\" data-id=\\\"48dc4a5a\\\" 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\\\">Opening Hours<\\/h6>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-39d06425 elementor-widget-divider--view-line elementor-widget elementor-widget-divider\\\" data-id=\\\"39d06425\\\" 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=\\\"1103d769b8569c2f8bdcdce2a5e36940\\\" data=\\\"eyJpZCI6IjY0MWZjZmQ5IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiYnVzaW5lc3NfaG91cnMiOlt7Il9pZCI6ImRhNjRhY2UiLCJvcGVuaW5nX2hvdXJzIjoiMDk6MzAiLCJjbG9zaW5nX2hvdXJzIjoiMTY6MzAiLCJjbG9zZWRfdGV4dCI6IkNsb3NlZCJ9LHsib3BlbmluZ19ob3VycyI6IjA5OjMwIiwiY2xvc2luZ19ob3VycyI6IjE2OjMwIiwiY2xvc2VkX3RleHQiOiJDbG9zZWQiLCJkYXkiOiJUdWVzZGF5IiwiX2lkIjoiOWY0Y2YwYiJ9LHsib3BlbmluZ19ob3VycyI6IjA5OjMwIiwiY2xvc2luZ19ob3VycyI6IjE2OjMwIiwiY2xvc2VkX3RleHQiOiJDbG9zZWQiLCJkYXkiOiJXZWRuZXNkYXkiLCJfaWQiOiI3NzBiODc0In0seyJvcGVuaW5nX2hvdXJzIjoiMDk6MzAiLCJjbG9zaW5nX2hvdXJzIjoiMTY6MzAiLCJjbG9zZWRfdGV4dCI6IkNsb3NlZCIsImRheSI6IlRodXJzZGF5IiwiX2lkIjoiYmJiNGJlNSJ9LHsib3BlbmluZ19ob3VycyI6IjA5OjMwIiwiY2xvc2luZ19ob3VycyI6IjE2OjMwIiwiY2xvc2VkX3RleHQiOiJDbG9zZWQiLCJkYXkiOiJGcmlkYXkiLCJfaWQiOiIxYTEzOTFiIn0seyJkYXkiOiJTYXR1cmRheSIsImhpZ2hsaWdodCI6InllcyIsIm9wZW5pbmdfaG91cnMiOiIwODowMCIsImNsb3NpbmdfaG91cnMiOiIxMzowMCIsImNsb3NlZF90ZXh0IjoiQ2xvc2VkIiwiX19nbG9iYWxzX18iOnsiaGlnaGxpZ2h0X2NvbG9yIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yNCJ9LCJjbG9zZWQiOiIiLCJfaWQiOiIzNWE0ZTQ0In0seyJkYXkiOiJTdW5kYXkiLCJoaWdobGlnaHQiOiJ5ZXMiLCJvcGVuaW5nX2hvdXJzIjoiMDg6MDAiLCJjbG9zaW5nX2hvdXJzIjoiMTM6MDAiLCJjbG9zZWRfdGV4dCI6IkNsb3NlZCIsIl9fZ2xvYmFsc19fIjp7ImhpZ2hsaWdodF9jb2xvciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjQifSwiY2xvc2VkIjoiIiwiX2lkIjoiYjg1NjQ4YyJ9XSwiYnVzaW5lc3NfaG91cnNfY3VzdG9tIjpbeyJkYXkiOiJNb25kYXkiLCJfaWQiOiJjZWUyZjFlIiwidGltZSI6IjA5OjAwIEFNIC0gMDU6MDAgUE0iLCJjbG9zZWRfdGV4dCI6IkNsb3NlZCJ9LHsiZGF5IjoiVHVlc2RheSIsIl9pZCI6IjQ1YWUwYzUiLCJ0aW1lIjoiMDk6MDAgQU0gLSAwNTowMCBQTSIsImNsb3NlZF90ZXh0IjoiQ2xvc2VkIn0seyJkYXkiOiJXZWRuZXNkYXkiLCJfaWQiOiI4NmE2ZjAxIiwidGltZSI6IjA5OjAwIEFNIC0gMDU6MDAgUE0iLCJjbG9zZWRfdGV4dCI6IkNsb3NlZCJ9LHsiZGF5IjoiVGh1cnNkYXkiLCJfaWQiOiI3YTg2NGI3IiwidGltZSI6IjA5OjAwIEFNIC0gMDU6MDAgUE0iLCJjbG9zZWRfdGV4dCI6IkNsb3NlZCJ9LHsiZGF5IjoiRnJpZGF5IiwiX2lkIjoiNzgyOWNiMCIsInRpbWUiOiIwOTowMCBBTSAtIDA1OjAwIFBNIiwiY2xvc2VkX3RleHQiOiJDbG9zZWQifSx7ImRheSI6IlNhdHVyZGF5IiwiY2xvc2VkIjoieWVzIiwiaGlnaGxpZ2h0IjoieWVzIiwiaGlnaGxpZ2h0X2NvbG9yIjoiI2JjMTcwNSIsIl9pZCI6IjBhYjc2YzEiLCJ0aW1lIjoiMDk6MDAgQU0gLSAwNTowMCBQTSIsImNsb3NlZF90ZXh0IjoiQ2xvc2VkIn0seyJkYXkiOiJTdW5kYXkiLCJjbG9zZWQiOiJ5ZXMiLCJoaWdobGlnaHQiOiJ5ZXMiLCJoaWdobGlnaHRfY29sb3IiOiIjYmMxNzA1IiwiX2lkIjoiODcyZDg1ZSIsInRpbWUiOiIwOTowMCBBTSAtIDA1OjAwIFBNIiwiY2xvc2VkX3RleHQiOiJDbG9zZWQifV0sInJvd3NfcGFkZGluZyI6eyJ1bml0IjoicHgiLCJ0b3AiOiI1IiwicmlnaHQiOiIzIiwiYm90dG9tIjoiNSIsImxlZnQiOiIzIiwiaXNMaW5rZWQiOmZhbHNlfSwicHBfZGlzcGxheV9jb25kaXRpb25zIjpbeyJfaWQiOiJlZjgwNmNjIiwicHBfY29uZGl0aW9uX2RhdGVfdGltZV9iZWZvcmVfdmFsdWUiOiIyMDI0LTA2LTExIDEzOjI5IiwicHBfY29uZGl0aW9uX2RhdGVfdmFsdWUiOiIyMDI1LTA4LTI0IHRvIDIwMjUtMDgtMzAiLCJwcF9jb25kaXRpb25fZGV2aWNlX3R5cGVfdmFsdWUiOiJtb2JpbGUifV0sInBwX2VsZW1lbnRzX3Rvb2x0aXBfY29udGVudCI6IlRvb2x0aXAgQ29udGVudCIsIl9fZ2xvYmFsc19fIjp7ImNsb3NlZF9yb3dfZGF5X2NvbG9yIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yNCIsImNsb3NlZF9yb3dfdGV4X2NvbG9yIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yNCIsImRheV9jb2xvciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjQiLCJob3Vyc19jb2xvciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjQifX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6InBwLWJ1c2luZXNzLWhvdXJzIn0=\\\"]\\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-73ac53f3 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"73ac53f3\\\" 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-86a6b29 elementor-widget elementor-widget-heading\\\" data-id=\\\"86a6b29\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<span class=\\\"elementor-heading-title elementor-size-default\\\">\\u00a9 [copyright]. All Rights Reserved. Website Developed by\\u00a0<a target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a><\\/span>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\",\"scripts\":[],\"styles\":[]}}'),
(2011, 186, '_wp_page_template', 'elementor_header_footer'),
(2012, 186, '_elementor_edit_mode', 'builder'),
(2013, 186, '_elementor_template_type', 'wp-page'),
(2014, 186, '_elementor_version', '4.1.3'),
(2015, 186, '_elementor_pro_version', '4.1.1'),
(2016, 186, '_elementor_global_class_usage_indexed', '1'),
(2017, 186, '_elementor_global_class_usage_indexed_preview', '1'),
(2018, 186, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2019, 186, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6500, 556, '_elementor_global_class_usage_indexed', '1'),
(6501, 556, '_elementor_edit_mode', 'builder'),
(2021, 186, '_elementor_page_settings', 'a:0:{}'),
(8386, 708, '_wp_page_template', 'elementor_header_footer'),
(8387, 708, '_elementor_global_class_usage_indexed', '1'),
(8388, 708, '_elementor_edit_mode', 'builder'),
(8389, 708, '_elementor_template_type', 'wp-page'),
(8390, 708, '_elementor_version', '4.1.3'),
(8391, 708, '_elementor_pro_version', '4.1.1'),
(8392, 708, '_elementor_global_class_usage_indexed_preview', '1'),
(8393, 708, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(8394, 708, '_elementor_data', '[{\"id\":\"ac1e13a\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f591f8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"567cfdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a7a518c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b98719c\"}]},\"elements\":[{\"id\":\"f627272\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5563ffc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"05b7cf4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"122bdd4\"}],\"pp_display_conditions\":[{\"_id\":\"f889efe\"}]},\"elements\":[{\"id\":\"26b48d2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9d9933e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"402ab08\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69abc97\"}],\"pp_display_conditions\":[{\"_id\":\"dc50305\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"d6c45ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/IMG_9815.jpg\",\"id\":440,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"838e566\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a90d849\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9d9933e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"402ab08\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69abc97\"}],\"pp_display_conditions\":[{\"_id\":\"dc50305\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"224a3be\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Provider\",\"pp_display_conditions\":[{\"_id\":\"8723de8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515aee8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arlene Johnson\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"8723de8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae218c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Arlene Johnson is a distinguished board -certified Nurse Practitioner holding a Masters Degree in Nursing Practice. Arlene is licensed in the state of Florida,Washington,Arizona,and Colorado as a Psychiatric Mental Health Nurse Practitioner . She obtained her Bachelor\\u2019s degree and Master\\u2019s degree from Walden University.<\\/p><p>Arlene\'s passion for mental health was ignited early on in her nursing career, and since then, being an advocate for those suffering from mental health conditions has been at the forefront. With well over a decade of experience in the healthcare field, ranging from treating acute to chronic conditions, Arlene believes in a comprehensive approach integrating both her Psychiatric and Medical background grounded in evidence-based practice to provide the highest quality of care. With her patient-centered care tailored to meet the needs of each individual patient, she not only fosters a caring therapeutic environment, but she also empowers her patients to become the best version of themselves.<br \\/><br \\/>Her years of extensive healthcare experience and unparalleled insight has helped individuals cultivate a path towards a balanced and fulfilling life of mental wellness!<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"6e0e683\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8395, 708, '_elementor_page_settings', 'a:0:{}'),
(2024, 187, '_wp_page_template', 'elementor_header_footer'),
(2025, 187, '_elementor_edit_mode', 'builder'),
(2026, 187, '_elementor_template_type', 'wp-page'),
(2027, 187, '_elementor_version', '4.1.3'),
(2028, 187, '_elementor_pro_version', '4.1.1'),
(2029, 187, '_elementor_global_class_usage_indexed', '1'),
(2030, 187, '_elementor_global_class_usage_indexed_preview', '1'),
(2031, 187, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(2032, 187, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(2080, 191, '_wp_page_template', 'elementor_header_footer'),
(2081, 191, '_elementor_edit_mode', 'builder'),
(2082, 191, '_elementor_template_type', 'wp-page'),
(2083, 191, '_elementor_version', '4.1.3'),
(2084, 191, '_elementor_pro_version', '4.1.1'),
(2085, 191, '_elementor_global_class_usage_indexed', '1'),
(2086, 191, '_elementor_global_class_usage_indexed_preview', '1'),
(2087, 191, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2088, 191, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Psychiatric Evaluation\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychiatric Evaluation\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"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\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2050, 188, '_elementor_page_settings', 'a:0:{}'),
(8411, 12, '_elementor_page_settings', 'a:0:{}'),
(8412, 12, '_elementor_controls_usage', 'a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:4:{s:13:\"content_width\";i:3;s:5:\"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:4;}}s:8:\"advanced\";a: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:14:\"section_layout\";a:2:{s:11:\"css_classes\";i: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;}}}}}'),
(8382, 707, '_elementor_page_settings', 'a:0:{}'),
(2053, 189, '_wp_page_template', 'elementor_header_footer'),
(2054, 189, '_elementor_edit_mode', 'builder'),
(2055, 189, '_elementor_template_type', 'wp-page'),
(2056, 189, '_elementor_version', '4.1.3'),
(2057, 189, '_elementor_pro_version', '4.1.1'),
(2058, 189, '_elementor_global_class_usage_indexed', '1'),
(2059, 189, '_elementor_global_class_usage_indexed_preview', '1'),
(2060, 189, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(2061, 189, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(2063, 189, '_elementor_page_settings', 'a:0:{}'),
(2066, 190, '_wp_page_template', 'elementor_header_footer'),
(2067, 190, '_elementor_edit_mode', 'builder'),
(2068, 190, '_elementor_template_type', 'wp-page'),
(2069, 190, '_elementor_version', '4.1.3'),
(2070, 190, '_elementor_pro_version', '4.1.1'),
(2071, 190, '_elementor_global_class_usage_indexed', '1'),
(2072, 190, '_elementor_global_class_usage_indexed_preview', '1'),
(2073, 190, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2074, 190, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Psychiatric Evaluation\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychiatric Evaluation\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"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\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2090, 191, '_elementor_page_settings', 'a:0:{}'),
(2091, 192, '_wp_page_template', 'elementor_header_footer'),
(2092, 192, '_elementor_edit_mode', 'builder'),
(2093, 192, '_elementor_template_type', 'wp-page'),
(2094, 192, '_elementor_version', '4.1.3'),
(2095, 192, '_elementor_pro_version', '4.1.1'),
(2096, 192, '_elementor_global_class_usage_indexed', '1'),
(2097, 192, '_elementor_global_class_usage_indexed_preview', '1'),
(2098, 192, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(2099, 192, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Psychiatric Evaluation\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychiatric Evaluation\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"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\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2101, 192, '_elementor_page_settings', 'a:0:{}'),
(2102, 193, '_wp_page_template', 'elementor_header_footer'),
(2103, 193, '_elementor_edit_mode', 'builder'),
(2104, 193, '_elementor_template_type', 'wp-page'),
(2105, 193, '_elementor_version', '4.1.3'),
(2106, 193, '_elementor_pro_version', '4.1.1'),
(2107, 193, '_elementor_global_class_usage_indexed', '1'),
(2108, 193, '_elementor_global_class_usage_indexed_preview', '1'),
(2109, 193, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2110, 193, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Psychiatric Evaluation\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychiatric Evaluation\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2130, 195, '_wp_page_template', 'elementor_header_footer'),
(2131, 195, '_elementor_edit_mode', 'builder'),
(2132, 195, '_elementor_template_type', 'wp-page'),
(2133, 195, '_elementor_version', '4.1.3'),
(2134, 195, '_elementor_pro_version', '4.1.1'),
(2135, 195, '_elementor_global_class_usage_indexed', '1'),
(2136, 195, '_elementor_global_class_usage_indexed_preview', '1'),
(2137, 195, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(2138, 195, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Psychiatric Evaluation\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychiatric Evaluation\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2209, 202, '_wp_page_template', 'elementor_header_footer'),
(2185, 200, '_wp_page_template', 'elementor_header_footer'),
(2186, 200, '_elementor_edit_mode', 'builder'),
(2187, 200, '_elementor_template_type', 'wp-page'),
(2188, 200, '_elementor_version', '4.1.3'),
(2189, 200, '_elementor_pro_version', '4.1.1'),
(2190, 200, '_elementor_global_class_usage_indexed', '1'),
(2191, 200, '_elementor_global_class_usage_indexed_preview', '1'),
(2192, 200, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2193, 200, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Psychiatric Evaluation\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychiatric Evaluation\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2154, 197, '_wp_page_template', 'elementor_header_footer'),
(2155, 197, '_elementor_edit_mode', 'builder'),
(2156, 197, '_elementor_template_type', 'wp-page'),
(2157, 197, '_elementor_version', '4.1.3'),
(2158, 197, '_elementor_pro_version', '4.1.1'),
(2159, 197, '_elementor_global_class_usage_indexed', '1'),
(2160, 197, '_elementor_global_class_usage_indexed_preview', '1'),
(2161, 197, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(2162, 197, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Psychiatric Evaluation\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychiatric Evaluation\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2140, 195, '_elementor_page_settings', 'a:0:{}'),
(8351, 705, '_elementor_page_settings', 'a:0:{}'),
(8355, 706, '_wp_page_template', 'elementor_header_footer'),
(8356, 706, '_elementor_global_class_usage_indexed', '1'),
(8357, 706, '_elementor_edit_mode', 'builder'),
(8358, 706, '_elementor_template_type', 'wp-page'),
(8359, 706, '_elementor_version', '4.1.3'),
(8360, 706, '_elementor_pro_version', '4.1.1'),
(8361, 706, '_elementor_global_class_usage_indexed_preview', '1'),
(8362, 706, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(8363, 706, '_elementor_data', '[{\"id\":\"d470357\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"b9719ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"fceae5a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"common_image_animation\"},\"elements\":[{\"id\":\"8b82d55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7915aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"72e147b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"05c690f\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"790d19d\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"b32af58\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"},\"hide_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\":\"icon-list\"},{\"id\":\"da6b95c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"eacb348\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"1e29740\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"css_classes\":\"common_image_animation\"},\"elements\":[{\"id\":\"80acc11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a492158\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"97daae6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2142, 196, '_wp_page_template', 'elementor_header_footer'),
(2143, 196, '_elementor_edit_mode', 'builder'),
(2144, 196, '_elementor_template_type', 'wp-page'),
(2145, 196, '_elementor_version', '4.1.3'),
(2146, 196, '_elementor_pro_version', '4.1.1'),
(2147, 196, '_elementor_global_class_usage_indexed', '1'),
(2148, 196, '_elementor_global_class_usage_indexed_preview', '1');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2149, 196, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(2150, 196, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Psychiatric Evaluation\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychiatric Evaluation\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2152, 196, '_elementor_page_settings', 'a:0:{}'),
(8342, 705, '_wp_page_template', 'elementor_header_footer'),
(8343, 705, '_elementor_global_class_usage_indexed', '1'),
(8344, 705, '_elementor_edit_mode', 'builder'),
(8345, 705, '_elementor_template_type', 'wp-page'),
(8346, 705, '_elementor_version', '4.1.3'),
(8347, 705, '_elementor_pro_version', '4.1.1'),
(8348, 705, '_elementor_global_class_usage_indexed_preview', '1'),
(8349, 705, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(8350, 705, '_elementor_data', '[{\"id\":\"d470357\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"b9719ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"fceae5a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8b82d55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7915aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"72e147b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"05c690f\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"790d19d\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"b32af58\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"},\"hide_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\":\"icon-list\"},{\"id\":\"da6b95c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"eacb348\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"1e29740\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"80acc11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a492158\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"97daae6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8338, 704, '_elementor_page_settings', 'a:0:{}'),
(8876, 744, '_wp_page_template', 'elementor_header_footer'),
(8877, 744, '_elementor_edit_mode', 'builder'),
(8878, 744, '_elementor_template_type', 'wp-page'),
(8879, 744, '_elementor_version', '4.1.3'),
(8880, 744, '_elementor_pro_version', '4.1.1'),
(8881, 744, '_elementor_global_class_usage_indexed', '1'),
(8882, 744, '_elementor_global_class_usage_indexed_preview', '1'),
(8883, 744, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8884, 744, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":532,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":431,\"sizes\":[]}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"px\",\"size\":223,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"common_image_animation\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"},\"hide_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\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"css_classes\":\"common_image_animation \"},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/bg-contact-a.jpg\",\"id\":726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\",\"css_classes\":\"common_image_animation \"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(2250, 205, '_wp_page_template', 'elementor_header_footer'),
(2224, 203, '_wp_page_template', 'elementor_header_footer'),
(2225, 203, '_elementor_edit_mode', 'builder'),
(2226, 203, '_elementor_template_type', 'wp-page'),
(2227, 203, '_elementor_version', '4.1.3'),
(2228, 203, '_elementor_pro_version', '4.1.1'),
(2229, 203, '_elementor_global_class_usage_indexed', '1'),
(2230, 203, '_elementor_global_class_usage_indexed_preview', '1'),
(2231, 203, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2232, 203, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychiatric Evaluation\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2306, 209, '_wp_attached_file', '2026/06/psychotherapy-a.webp'),
(2307, 209, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:28:\"2026/06/psychotherapy-a.webp\";s:8:\"filesize\";i:126294;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"psychotherapy-a-300x200.webp\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:11668;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"psychotherapy-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:6446;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"psychotherapy-a-768x512.webp\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:36980;}}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:\"\";}}'),
(8256, 695, 'ast-site-content-layout', 'full-width-container'),
(8257, 695, 'site-sidebar-layout', 'no-sidebar'),
(8259, 695, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(8260, 695, '_edit_lock', '1781705452:1'),
(8262, 695, '_wp_page_template', 'default'),
(2212, 202, '_elementor_version', '4.1.3'),
(2213, 202, '_elementor_pro_version', '4.1.1'),
(2214, 202, '_elementor_global_class_usage_indexed', '1'),
(2215, 202, '_elementor_global_class_usage_indexed_preview', '1'),
(2216, 202, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(2217, 202, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychiatric Evaluation\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2210, 202, '_elementor_edit_mode', 'builder'),
(2211, 202, '_elementor_template_type', 'wp-page'),
(2183, 199, '_wp_attached_file', '2026/06/Medication-Nutritional-d.jpg'),
(2184, 199, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:666;s:4:\"file\";s:36:\"2026/06/Medication-Nutritional-d.jpg\";s:8:\"filesize\";i:77485;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"Medication-Nutritional-d-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16786;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Medication-Nutritional-d-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8192;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"Medication-Nutritional-d-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72728;}}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:\"\";}}'),
(2195, 200, '_elementor_page_settings', 'a:0:{}'),
(8287, 701, '_elementor_edit_mode', 'builder'),
(8288, 701, '_elementor_template_type', 'single-post'),
(8289, 702, '_elementor_edit_mode', 'builder'),
(8290, 702, '_elementor_template_type', 'single-post'),
(8291, 701, '_elementor_version', '4.1.3'),
(8292, 701, '_elementor_pro_version', '4.1.1'),
(8293, 701, '_elementor_global_class_usage_indexed', '1'),
(8294, 701, '_elementor_global_class_usage_indexed_preview', '1'),
(8295, 701, '_astra_content_layout_flag', 'disabled'),
(8312, 701, '_elementor_data', '[{\"id\":\"5fd6ac2b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fb7dbd7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"54d7e5d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9364e87\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c016760\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:52\"}]},\"elements\":[{\"id\":\"67f7a25d\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"post-featured-image\\\" settings=\\\"%7B%22fallback%22%3A%7B%22url%22%3A%22%22%2C%22id%22%3A%22%22%2C%22size%22%3A%22%22%7D%7D\\\"]\"},\"pp_display_conditions\":[{\"_id\":\"d6fd5fe\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:52\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"theme-post-featured-image\"},{\"id\":\"6fc10e63\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"010fdf6\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:52\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-post-title\"},{\"id\":\"616e06a3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"icon_list\":[{\"selected_icon\":{\"value\":\"fas fa-calendar\",\"library\":\"fa-solid\"},\"_id\":\"1c18d28\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\"}],\"pp_display_conditions\":[{\"_id\":\"636b958\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:52\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"post-info\"},{\"id\":\"491e1f07\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"pp_display_conditions\":[{\"_id\":\"ba1e304\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:52\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"theme-post-content\"},{\"id\":\"2d4f204c\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"prev_label\":\"Previous\",\"next_label\":\"Next\",\"pp_display_conditions\":[{\"_id\":\"9496c7f\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:52\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"label_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor6\",\"arrow_color\":\"globals\\/colors?id=astglobalcolor6\",\"sep_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"post-navigation\"}],\"isInner\":false}]'),
(8297, 701, 'ast-title-bar-display', 'disabled'),
(8298, 701, 'ast-featured-img', 'disabled'),
(8299, 701, 'ast-site-content-layout', 'full-width-container'),
(8300, 701, 'site-sidebar-layout', 'no-sidebar'),
(8302, 701, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(8303, 701, '_edit_lock', '1781705664:1'),
(8306, 371, '_elementor_template_type', 'wp-post'),
(8307, 371, '_elementor_version', '4.1.3'),
(8308, 371, '_elementor_pro_version', '4.1.1'),
(8309, 371, '_elementor_page_settings', 'a:0:{}'),
(8310, 371, '_elementor_global_class_usage_indexed_preview', '1'),
(8311, 701, '_wp_page_template', 'default'),
(8313, 703, '_elementor_edit_mode', 'builder'),
(8314, 703, '_elementor_template_type', 'single-post'),
(8315, 703, '_elementor_version', '4.1.3'),
(8316, 703, '_elementor_pro_version', '4.1.1'),
(8317, 703, '_elementor_global_class_usage_indexed', '1'),
(8318, 703, '_elementor_global_class_usage_indexed_preview', '1'),
(8319, 703, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(8321, 703, '_wp_page_template', 'default'),
(8322, 703, '_elementor_data', '[{\"id\":\"5fd6ac2b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fb7dbd7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"54d7e5d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9364e87\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c016760\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:52\"}]},\"elements\":[{\"id\":\"67f7a25d\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"post-featured-image\\\" settings=\\\"%7B%22fallback%22%3A%7B%22url%22%3A%22%22%2C%22id%22%3A%22%22%2C%22size%22%3A%22%22%7D%7D\\\"]\"},\"pp_display_conditions\":[{\"_id\":\"d6fd5fe\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:52\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"theme-post-featured-image\"},{\"id\":\"6fc10e63\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"010fdf6\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:52\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-post-title\"},{\"id\":\"616e06a3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"icon_list\":[{\"selected_icon\":{\"value\":\"fas fa-calendar\",\"library\":\"fa-solid\"},\"_id\":\"1c18d28\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\"}],\"pp_display_conditions\":[{\"_id\":\"636b958\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:52\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"post-info\"},{\"id\":\"491e1f07\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"pp_display_conditions\":[{\"_id\":\"ba1e304\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:52\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"theme-post-content\"},{\"id\":\"2d4f204c\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"prev_label\":\"Previous\",\"next_label\":\"Next\",\"pp_display_conditions\":[{\"_id\":\"9496c7f\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:52\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"label_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor6\",\"arrow_color\":\"globals\\/colors?id=astglobalcolor6\",\"sep_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"post-navigation\"}],\"isInner\":false}]'),
(8323, 701, '_elementor_page_settings', 'a:0:{}');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8324, 701, '_elementor_controls_usage', 'a:6:{s:25:\"theme-post-featured-image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}}}s:16:\"theme-post-title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i: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:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:2:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;}}}}s:9:\"post-info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:18:\"theme-post-content\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:15:\"post-navigation\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:2:{s:14:\"flex_direction\";i:1;s:11:\"boxed_width\";i:1;}}s:5:\"style\";a:1:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(8325, 701, '_elementor_conditions', 'a:1:{i:0;s:21:\"include/singular/post\";}'),
(2197, 201, '_wp_page_template', 'elementor_header_footer'),
(2198, 201, '_elementor_edit_mode', 'builder'),
(2199, 201, '_elementor_template_type', 'wp-page'),
(2200, 201, '_elementor_version', '4.1.3'),
(2201, 201, '_elementor_pro_version', '4.1.1'),
(2202, 201, '_elementor_global_class_usage_indexed', '1'),
(2203, 201, '_elementor_global_class_usage_indexed_preview', '1'),
(2204, 201, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(2205, 201, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Psychiatric Evaluation\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychiatric Evaluation\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2207, 201, '_elementor_page_settings', 'a:0:{}'),
(8264, 697, '_elementor_edit_mode', 'builder'),
(8265, 697, '_elementor_template_type', 'archive'),
(8266, 697, '_elementor_version', '4.1.3'),
(8267, 697, '_elementor_pro_version', '4.1.1'),
(8268, 697, '_elementor_global_class_usage_indexed', '1'),
(8269, 697, '_elementor_global_class_usage_indexed_preview', '1'),
(8270, 697, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(8271, 697, '_wp_page_template', 'default'),
(8272, 697, '_elementor_data', '[{\"id\":\"ed5be77\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"aabc669\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"efaf986\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6604bbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"cbee15c\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":12,\"pagination_type\":\"numbers\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(8274, 695, '_elementor_page_settings', 'a:0:{}'),
(8275, 695, '_elementor_controls_usage', 'a:3:{s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:2:{s:13:\"content_width\";i:2;s:14:\"flex_direction\";i:1;}}s:5:\"style\";a:2:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:3;}s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:2;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"posts\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:14:\"section_layout\";a:5:{s:28:\"classic_columns_mobile_extra\";i:1;s:27:\"classic_thumbnail_size_size\";i:1;s:22:\"classic_excerpt_length\";i:1;s:17:\"classic_meta_data\";i:1;s:22:\"classic_posts_per_page\";i:1;}s:18:\"section_pagination\";a:2:{s:21:\"pagination_page_limit\";i:1;s:15:\"pagination_type\";i:1;}}s:5:\"style\";a:2:{s:26:\"classic_section_design_box\";a:3:{s:23:\"classic_content_padding\";i:1;s:34:\"classic_box_shadow_box_shadow_type\";i:1;s:29:\"classic_box_shadow_box_shadow\";i:1;}s:30:\"classic_section_design_content\";a:12:{s:19:\"classic_title_color\";i:1;s:35:\"classic_title_typography_typography\";i:1;s:34:\"classic_title_typography_font_size\";i:1;s:21:\"classic_title_spacing\";i:1;s:18:\"classic_meta_color\";i:1;s:34:\"classic_meta_typography_typography\";i:1;s:33:\"classic_meta_typography_font_size\";i:1;s:21:\"classic_excerpt_color\";i:1;s:37:\"classic_excerpt_typography_typography\";i:1;s:36:\"classic_excerpt_typography_font_size\";i:1;s:39:\"classic_read_more_typography_typography\";i:1;s:38:\"classic_read_more_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(8276, 695, '_elementor_conditions', 'a:1:{i:0;s:28:\"include/archive/post_archive\";}'),
(8484, 714, '_elementor_source', 'post'),
(8485, 714, '_elementor_edit_mode', 'builder'),
(8486, 714, '_elementor_template_type', 'header'),
(8487, 714, '_elementor_version', '4.1.3'),
(8488, 714, '_elementor_pro_version', '4.1.1'),
(8489, 714, '_elementor_global_class_usage_indexed', '1'),
(8490, 714, '_elementor_global_class_usage_indexed_preview', '1'),
(8491, 714, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(8492, 714, '_wp_page_template', 'default'),
(8493, 714, '_elementor_data', '[{\"id\":\"7cd2407b\",\"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},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4b376675\",\"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\":\"14e415c9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@optimalmentalwellness.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@optimalmentalwellness.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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5137f99d\",\"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\":\"416cdcb9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"904-901-7913\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:9049017913\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=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\":\"6090cb25\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"background_background\":\"classic\",\"z_index\":99,\"css_classes\":\"header_sections\",\"sticky\":\"top\",\"sticky_effects_offset\":50,\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"42e85872\",\"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\":\"5d51e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Optimal-Mental-Health-And-Wellness-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":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\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_position\":\"absolute\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"_offset_x_widescreen\":{\"size\":-1,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-1,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"388619a3\",\"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\":\"2a70cfde\",\"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\":30,\"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\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"500\",\"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=astglobalcolor6\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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=astglobalcolor6\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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=astglobalcolor6\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor6\",\"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\":\"ca7841b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"590be00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"454cd36b\",\"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\":432,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Mental-Health-And-Wellness-av.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.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\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"5aa4113e\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"},{\"id\":\"b8f44e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"align\":\"center\",\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"pp_condition_key\":\"static_page\",\"pp_condition_static_page_value\":\"blog\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(8244, 695, '_elementor_edit_mode', 'builder'),
(8245, 695, '_elementor_template_type', 'archive'),
(8246, 696, '_elementor_edit_mode', 'builder'),
(8247, 696, '_elementor_template_type', 'archive'),
(8248, 695, '_elementor_version', '4.1.3'),
(8249, 695, '_elementor_pro_version', '4.1.1'),
(8250, 695, '_elementor_global_class_usage_indexed', '1'),
(8251, 695, '_elementor_global_class_usage_indexed_preview', '1'),
(8252, 695, '_astra_content_layout_flag', 'disabled'),
(8263, 695, '_elementor_data', '[{\"id\":\"ed5be77\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"aabc669\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"efaf986\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6604bbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"cbee15c\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":12,\"pagination_type\":\"numbers\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(8254, 695, 'ast-title-bar-display', 'disabled'),
(8255, 695, 'ast-featured-img', 'disabled'),
(2292, 208, '_wp_page_template', 'elementor_header_footer'),
(2266, 206, '_wp_page_template', 'elementor_header_footer'),
(2267, 206, '_elementor_edit_mode', 'builder');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2268, 206, '_elementor_template_type', 'wp-page'),
(2269, 206, '_elementor_version', '4.1.3'),
(2270, 206, '_elementor_pro_version', '4.1.1'),
(2271, 206, '_elementor_global_class_usage_indexed', '1'),
(2272, 206, '_elementor_global_class_usage_indexed_preview', '1'),
(2273, 206, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(2274, 206, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychiatric Evaluation\",\"subtitle\":\"\",\"description\":\"Individual therapy. Couples\\/marriage therapy.\\nFamily therapy. Child\\/teen therapy. Online\\ntherapy. COMMON SPECIALTIES & approaches\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2234, 203, '_elementor_page_settings', 'a:0:{}'),
(8470, 713, '_elementor_data', '[{\"id\":\"7cd2407b\",\"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},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4b376675\",\"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\":\"14e415c9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@optimalmentalwellness.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@optimalmentalwellness.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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5137f99d\",\"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\":\"416cdcb9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"904-901-7913\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:9049017913\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=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\":\"6090cb25\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"background_background\":\"classic\",\"z_index\":99,\"css_classes\":\"header_sections\",\"sticky\":\"top\",\"sticky_effects_offset\":50,\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"42e85872\",\"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\":\"5d51e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Optimal-Mental-Health-And-Wellness-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":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\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_position\":\"absolute\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"_offset_x_widescreen\":{\"size\":-1,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-1,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"388619a3\",\"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\":\"2a70cfde\",\"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\":30,\"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\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"500\",\"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=astglobalcolor6\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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=astglobalcolor6\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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\":[]},\"_flex_order_tablet_extra\":\"end\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"ca7841b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"590be00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"454cd36b\",\"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\":432,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Mental-Health-And-Wellness-av.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.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\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"5aa4113e\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"},{\"id\":\"b8f44e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"align\":\"center\",\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"pp_condition_key\":\"static_page\",\"pp_condition_static_page_value\":\"blog\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(2237, 204, '_wp_page_template', 'elementor_header_footer'),
(2238, 204, '_elementor_edit_mode', 'builder'),
(2239, 204, '_elementor_template_type', 'wp-page'),
(2240, 204, '_elementor_version', '4.1.3'),
(2241, 204, '_elementor_pro_version', '4.1.1'),
(2242, 204, '_elementor_global_class_usage_indexed', '1'),
(2243, 204, '_elementor_global_class_usage_indexed_preview', '1'),
(2244, 204, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2245, 204, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychiatric Evaluation\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2247, 204, '_elementor_page_settings', 'a:0:{}'),
(8222, 693, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(2251, 205, '_elementor_edit_mode', 'builder'),
(2252, 205, '_elementor_template_type', 'wp-page'),
(2253, 205, '_elementor_version', '4.1.3'),
(2254, 205, '_elementor_pro_version', '4.1.1'),
(2255, 205, '_elementor_global_class_usage_indexed', '1'),
(2256, 205, '_elementor_global_class_usage_indexed_preview', '1'),
(2257, 205, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(2258, 205, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychiatric Evaluation\",\"subtitle\":\"\",\"description\":\"Individual therapy. Couples\\/marriage therapy.\\nFamily therapy. Child\\/teen therapy. Online\\ntherapy. COMMON SPECIALTIES & approaches\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(7836, 669, '_wp_page_template', 'elementor_header_footer'),
(7837, 669, '_elementor_edit_mode', 'builder'),
(7838, 669, '_elementor_template_type', 'wp-page'),
(7839, 669, '_elementor_version', '4.1.3'),
(7840, 669, '_elementor_pro_version', '4.1.1'),
(7841, 669, '_elementor_global_class_usage_indexed', '1'),
(7842, 669, '_elementor_global_class_usage_indexed_preview', '1'),
(7843, 669, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7844, 669, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":532,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":431,\"sizes\":[]}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"},\"hide_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\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(2330, 212, '_wp_page_template', 'elementor_header_footer'),
(2308, 210, '_wp_page_template', 'elementor_header_footer'),
(2309, 210, '_elementor_edit_mode', 'builder'),
(2310, 210, '_elementor_template_type', 'wp-page'),
(2311, 210, '_elementor_version', '4.1.3'),
(2312, 210, '_elementor_pro_version', '4.1.1'),
(2313, 210, '_elementor_global_class_usage_indexed', '1'),
(2314, 210, '_elementor_global_class_usage_indexed_preview', '1'),
(2315, 210, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2316, 210, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"Individual therapy. Couples\\/marriage therapy.\\nFamily therapy. Child\\/teen therapy. Online\\ntherapy. COMMON SPECIALTIES & approaches\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2276, 206, '_elementor_page_settings', 'a:0:{}'),
(8228, 694, '_elementor_source', 'post'),
(8229, 694, '_elementor_edit_mode', 'builder'),
(8230, 694, '_elementor_template_type', 'header'),
(8231, 694, '_elementor_version', '4.1.3'),
(8232, 694, '_elementor_pro_version', '4.1.1'),
(8233, 694, '_elementor_global_class_usage_indexed', '1'),
(8234, 694, '_elementor_global_class_usage_indexed_preview', '1'),
(8235, 694, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(8236, 694, '_wp_page_template', 'default'),
(8237, 694, '_elementor_data', '[{\"id\":\"7cd2407b\",\"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},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4b376675\",\"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\":\"14e415c9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@optimalmentalwellness.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@optimalmentalwellness.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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5137f99d\",\"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\":\"416cdcb9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"904-901-7913\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:9049017913\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=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\":\"6090cb25\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"background_background\":\"classic\",\"z_index\":99,\"css_classes\":\"header_sections\",\"sticky\":\"top\",\"sticky_effects_offset\":50,\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"42e85872\",\"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\":\"5d51e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Optimal-Mental-Health-And-Wellness-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":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\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_position\":\"absolute\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"_offset_x_widescreen\":{\"size\":-1,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-1,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"388619a3\",\"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\":\"2a70cfde\",\"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\":30,\"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\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"500\",\"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=astglobalcolor6\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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=astglobalcolor6\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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\":[]},\"_flex_order_tablet_extra\":\"end\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"ca7841b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"590be00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"454cd36b\",\"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\":432,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Mental-Health-And-Wellness-av.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"5aa4113e\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"},{\"id\":\"b8f44e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"align\":\"center\",\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"pp_condition_key\":\"static_page\",\"pp_condition_static_page_value\":\"blog\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(2279, 207, '_wp_page_template', 'elementor_header_footer'),
(2280, 207, '_elementor_edit_mode', 'builder'),
(2281, 207, '_elementor_template_type', 'wp-page'),
(2282, 207, '_elementor_version', '4.1.3'),
(2283, 207, '_elementor_pro_version', '4.1.1'),
(2284, 207, '_elementor_global_class_usage_indexed', '1'),
(2285, 207, '_elementor_global_class_usage_indexed_preview', '1'),
(2286, 207, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2287, 207, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychiatric Evaluation\",\"subtitle\":\"\",\"description\":\"Individual therapy. Couples\\/marriage therapy.\\nFamily therapy. Child\\/teen therapy. Online\\ntherapy. COMMON SPECIALTIES & approaches\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2289, 207, '_elementor_page_settings', 'a:0:{}'),
(8204, 692, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(2293, 208, '_elementor_edit_mode', 'builder'),
(2294, 208, '_elementor_template_type', 'wp-page'),
(2295, 208, '_elementor_version', '4.1.3'),
(2296, 208, '_elementor_pro_version', '4.1.1'),
(2297, 208, '_elementor_global_class_usage_indexed', '1'),
(2298, 208, '_elementor_global_class_usage_indexed_preview', '1'),
(2299, 208, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(2300, 208, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"Individual therapy. Couples\\/marriage therapy.\\nFamily therapy. Child\\/teen therapy. Online\\ntherapy. COMMON SPECIALTIES & approaches\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2318, 210, '_elementor_page_settings', 'a:0:{}'),
(2319, 211, '_wp_page_template', 'elementor_header_footer'),
(2320, 211, '_elementor_edit_mode', 'builder'),
(2321, 211, '_elementor_template_type', 'wp-page'),
(2322, 211, '_elementor_version', '4.1.3'),
(2323, 211, '_elementor_pro_version', '4.1.1'),
(2324, 211, '_elementor_global_class_usage_indexed', '1'),
(2325, 211, '_elementor_global_class_usage_indexed_preview', '1'),
(2326, 211, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2327, 211, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"Individual therapy. Couples\\/marriage therapy.\\nFamily therapy. Child\\/teen therapy. Online\\ntherapy. COMMON SPECIALTIES & approaches\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2329, 211, '_elementor_page_settings', 'a:0:{}'),
(2331, 212, '_elementor_edit_mode', 'builder'),
(2332, 212, '_elementor_template_type', 'wp-page'),
(2333, 212, '_elementor_version', '4.1.3'),
(2334, 212, '_elementor_pro_version', '4.1.1'),
(2335, 212, '_elementor_global_class_usage_indexed', '1'),
(2336, 212, '_elementor_global_class_usage_indexed_preview', '1'),
(2337, 212, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(2338, 212, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2346, 214, '_wp_page_template', 'elementor_header_footer'),
(2347, 214, '_elementor_edit_mode', 'builder'),
(2348, 214, '_elementor_template_type', 'wp-page'),
(2349, 214, '_elementor_version', '4.1.3'),
(2350, 214, '_elementor_pro_version', '4.1.1'),
(2351, 214, '_elementor_global_class_usage_indexed', '1'),
(2352, 214, '_elementor_global_class_usage_indexed_preview', '1'),
(2353, 214, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2354, 214, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2414, 219, '_wp_page_template', 'elementor_header_footer'),
(2388, 217, '_wp_page_template', 'elementor_header_footer'),
(2389, 217, '_elementor_edit_mode', 'builder'),
(2390, 217, '_elementor_template_type', 'wp-page'),
(2391, 217, '_elementor_version', '4.1.3'),
(2392, 217, '_elementor_pro_version', '4.1.1'),
(2393, 217, '_elementor_global_class_usage_indexed', '1'),
(2394, 217, '_elementor_global_class_usage_indexed_preview', '1'),
(2395, 217, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(2396, 217, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2474, 224, '_wp_page_template', 'elementor_header_footer'),
(2475, 224, '_elementor_edit_mode', 'builder'),
(2476, 224, '_elementor_template_type', 'wp-page'),
(2477, 224, '_elementor_version', '4.1.3'),
(2478, 224, '_elementor_pro_version', '4.1.1'),
(2479, 224, '_elementor_global_class_usage_indexed', '1'),
(2480, 224, '_elementor_global_class_usage_indexed_preview', '1'),
(2481, 224, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2482, 224, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2344, 213, '_wp_attached_file', '2026/06/Psychiatric-Evaluation-aa.jpg'),
(2345, 213, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:37:\"2026/06/Psychiatric-Evaluation-aa.jpg\";s:8:\"filesize\";i:71092;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Psychiatric-Evaluation-aa-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15446;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Psychiatric-Evaluation-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:7142;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"Psychiatric-Evaluation-aa-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65675;}}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:\"\";}}'),
(2356, 214, '_elementor_page_settings', 'a:0:{}'),
(8193, 16, '_elementor_global_class_usage_indexed', '1'),
(2359, 215, '_wp_page_template', 'elementor_header_footer'),
(2360, 215, '_elementor_edit_mode', 'builder'),
(2361, 215, '_elementor_template_type', 'wp-page'),
(2362, 215, '_elementor_version', '4.1.3'),
(2363, 215, '_elementor_pro_version', '4.1.1'),
(2364, 215, '_elementor_global_class_usage_indexed', '1'),
(2365, 215, '_elementor_global_class_usage_indexed_preview', '1'),
(2366, 215, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(2367, 215, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2369, 215, '_elementor_page_settings', 'a:0:{}'),
(8557, 720, '_wp_page_template', 'elementor_header_footer'),
(8558, 720, '_elementor_edit_mode', 'builder'),
(8559, 720, '_elementor_template_type', 'wp-page'),
(8560, 720, '_elementor_version', '4.1.3'),
(8561, 720, '_elementor_pro_version', '4.1.1'),
(8562, 720, '_elementor_global_class_usage_indexed', '1'),
(8563, 720, '_elementor_global_class_usage_indexed_preview', '1'),
(8564, 720, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8565, 720, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":532,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":431,\"sizes\":[]}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"px\",\"size\":223,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"common_image_animation\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"},\"hide_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\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"css_classes\":\"common_image_animation \"},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/contact-bd-a.jpg\",\"id\":715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]},\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\",\"css_classes\":\"common_image_animation \"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(2372, 216, '_wp_page_template', 'elementor_header_footer'),
(2373, 216, '_elementor_edit_mode', 'builder'),
(2374, 216, '_elementor_template_type', 'wp-page'),
(2375, 216, '_elementor_version', '4.1.3'),
(2376, 216, '_elementor_pro_version', '4.1.1'),
(2377, 216, '_elementor_global_class_usage_indexed', '1'),
(2378, 216, '_elementor_global_class_usage_indexed_preview', '1'),
(2379, 216, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2380, 216, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(7846, 669, '_elementor_page_settings', 'a:0:{}'),
(7847, 670, '_wp_page_template', 'elementor_header_footer'),
(7848, 670, '_elementor_edit_mode', 'builder'),
(7849, 670, '_elementor_template_type', 'wp-page'),
(7850, 670, '_elementor_version', '4.1.3'),
(7851, 670, '_elementor_pro_version', '4.1.1'),
(7852, 670, '_elementor_global_class_usage_indexed', '1'),
(7853, 670, '_elementor_global_class_usage_indexed_preview', '1'),
(7854, 670, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7855, 670, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":532,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":431,\"sizes\":[]}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"},\"hide_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\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(2462, 223, '_wp_page_template', 'elementor_header_footer'),
(2440, 221, '_wp_page_template', 'elementor_header_footer'),
(2441, 221, '_elementor_edit_mode', 'builder'),
(2442, 221, '_elementor_template_type', 'wp-page'),
(2443, 221, '_elementor_version', '4.1.3'),
(2444, 221, '_elementor_pro_version', '4.1.1'),
(2445, 221, '_elementor_global_class_usage_indexed', '1'),
(2446, 221, '_elementor_global_class_usage_indexed_preview', '1'),
(2447, 221, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2448, 221, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2398, 217, '_elementor_page_settings', 'a:0:{}'),
(2401, 218, '_wp_page_template', 'elementor_header_footer'),
(2402, 218, '_elementor_edit_mode', 'builder'),
(2403, 218, '_elementor_template_type', 'wp-page'),
(2404, 218, '_elementor_version', '4.1.3'),
(2405, 218, '_elementor_pro_version', '4.1.1'),
(2406, 218, '_elementor_global_class_usage_indexed', '1'),
(2407, 218, '_elementor_global_class_usage_indexed_preview', '1'),
(2408, 218, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(2409, 218, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2411, 218, '_elementor_page_settings', 'a:0:{}'),
(8544, 719, '_wp_page_template', 'elementor_header_footer'),
(8520, 717, '_wp_page_template', 'elementor_header_footer'),
(8521, 717, '_elementor_edit_mode', 'builder'),
(8522, 717, '_elementor_template_type', 'wp-page'),
(8523, 717, '_elementor_version', '4.1.3'),
(8524, 717, '_elementor_pro_version', '4.1.1'),
(8525, 717, '_elementor_global_class_usage_indexed', '1'),
(8526, 717, '_elementor_global_class_usage_indexed_preview', '1'),
(8527, 717, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8528, 717, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":532,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":431,\"sizes\":[]}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"px\",\"size\":223,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"common_image_animation\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"},\"hide_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\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"css_classes\":\"common_image_animation \"},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\",\"css_classes\":\"common_image_animation \"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(2415, 219, '_elementor_edit_mode', 'builder'),
(2416, 219, '_elementor_template_type', 'wp-page'),
(2417, 219, '_elementor_version', '4.1.3'),
(2418, 219, '_elementor_pro_version', '4.1.1'),
(2419, 219, '_elementor_global_class_usage_indexed', '1'),
(2420, 219, '_elementor_global_class_usage_indexed_preview', '1'),
(2421, 219, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2422, 219, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2463, 223, '_elementor_edit_mode', 'builder'),
(2464, 223, '_elementor_template_type', 'wp-page'),
(2465, 223, '_elementor_version', '4.1.3'),
(2466, 223, '_elementor_pro_version', '4.1.1'),
(2467, 223, '_elementor_global_class_usage_indexed', '1'),
(2468, 223, '_elementor_global_class_usage_indexed_preview', '1'),
(2469, 223, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(2470, 223, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2450, 221, '_elementor_page_settings', 'a:0:{}'),
(2451, 222, '_wp_page_template', 'elementor_header_footer'),
(2452, 222, '_elementor_edit_mode', 'builder'),
(2453, 222, '_elementor_template_type', 'wp-page'),
(2454, 222, '_elementor_version', '4.1.3'),
(2455, 222, '_elementor_pro_version', '4.1.1'),
(2456, 222, '_elementor_global_class_usage_indexed', '1'),
(2457, 222, '_elementor_global_class_usage_indexed_preview', '1'),
(2458, 222, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2459, 222, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2461, 222, '_elementor_page_settings', 'a:0:{}'),
(2484, 224, '_elementor_page_settings', 'a:0:{}'),
(2485, 225, '_wp_page_template', 'elementor_header_footer'),
(2486, 225, '_elementor_edit_mode', 'builder'),
(2487, 225, '_elementor_template_type', 'wp-page'),
(2488, 225, '_elementor_version', '4.1.3'),
(2489, 225, '_elementor_pro_version', '4.1.1'),
(2490, 225, '_elementor_global_class_usage_indexed', '1'),
(2491, 225, '_elementor_global_class_usage_indexed_preview', '1'),
(2492, 225, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(2493, 225, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(6491, 562, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(2495, 225, '_elementor_page_settings', 'a:0:{}'),
(2658, 238, '_elementor_template_type', 'wp-page'),
(2659, 238, '_elementor_version', '4.1.3'),
(2660, 238, '_elementor_pro_version', '4.1.1'),
(2661, 238, '_elementor_global_class_usage_indexed', '1'),
(2536, 229, '_wp_page_template', 'elementor_header_footer'),
(2537, 229, '_elementor_edit_mode', 'builder'),
(2496, 226, '_wp_page_template', 'elementor_header_footer'),
(2497, 226, '_elementor_edit_mode', 'builder'),
(2498, 226, '_elementor_template_type', 'wp-page'),
(2499, 226, '_elementor_version', '4.1.3'),
(2500, 226, '_elementor_pro_version', '4.1.1'),
(2501, 226, '_elementor_global_class_usage_indexed', '1'),
(2502, 226, '_elementor_global_class_usage_indexed_preview', '1'),
(2503, 226, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2504, 226, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"custom_css\":\".services_sections .pp-info-box-icon-wrap{\\n    position: relative;\\n    overflow: visible;\\n}\\n\\n\\/* Curved Bottom Shape *\\/\\n.services_sections .pp-info-box-icon-wrap::after{\\n    content: \\\"\\\";\\n    position: absolute;\\n    left: 0;\\n    bottom: -1px;\\n    width: 100%;\\n    height: 20px;\\n    background: #6C63FF; \\/* \\u0986\\u09aa\\u09a8\\u09be\\u09b0 color *\\/\\n    \\n    \\/* \\u098f\\u099f\\u09be-\\u0987 \\u09ae\\u09c2\\u09b2 magic *\\/\\n    border-radius: 0 0 100% 100%;\\n\\n    z-index: 2;\\n}\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2510, 227, '_wp_page_template', 'elementor_header_footer'),
(2511, 227, '_elementor_edit_mode', 'builder'),
(2512, 227, '_elementor_template_type', 'wp-page'),
(2513, 227, '_elementor_version', '4.1.3'),
(2514, 227, '_elementor_pro_version', '4.1.1'),
(2515, 227, '_elementor_global_class_usage_indexed', '1'),
(2516, 227, '_elementor_global_class_usage_indexed_preview', '1'),
(2517, 227, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(2518, 227, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"custom_css\":\".services_sections .pp-info-box-icon-wrap{\\n    position: relative;\\n    overflow: visible;\\n}\\n\\n\\/* Curved Bottom Shape *\\/\\n.services_sections .pp-info-box-icon-wrap::after{\\n    content: \\\"\\\";\\n    position: absolute;\\n    left: 0;\\n    bottom: -1px;\\n    width: 100%;\\n    height: 20px;\\n    background: #6C63FF; \\/* \\u0986\\u09aa\\u09a8\\u09be\\u09b0 color *\\/\\n    \\n    \\/* \\u098f\\u099f\\u09be-\\u0987 \\u09ae\\u09c2\\u09b2 magic *\\/\\n    border-radius: 0 0 100% 100%;\\n\\n    z-index: 2;\\n}\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2594, 233, '_wp_page_template', 'elementor_header_footer'),
(2657, 238, '_elementor_edit_mode', 'builder'),
(2552, 230, '_wp_page_template', 'elementor_header_footer'),
(2553, 230, '_elementor_edit_mode', 'builder'),
(2554, 230, '_elementor_template_type', 'wp-page'),
(2555, 230, '_elementor_version', '4.1.3'),
(2556, 230, '_elementor_pro_version', '4.1.1'),
(2557, 230, '_elementor_global_class_usage_indexed', '1'),
(2558, 230, '_elementor_global_class_usage_indexed_preview', '1'),
(2559, 230, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2560, 230, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"custom_css\":\".services_sections .pp-info-box-icon-wrap{\\n    position: relative;\\n    overflow: visible;\\n}\\n\\n.services_sections .pp-info-box-icon-wrap::after{\\n    content: \\\"\\\";\\n    position: absolute;\\n    left: 0;\\n    bottom: -1px;\\n    width: 100%;\\n    height: 22px;\\n    background: #000;\\n    \\n    border-radius: 0 0 80px 80px;\\n    z-index: 2;\\n}\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2520, 227, '_elementor_page_settings', 'a:0:{}'),
(2523, 228, '_wp_page_template', 'elementor_header_footer'),
(2524, 228, '_elementor_edit_mode', 'builder'),
(2525, 228, '_elementor_template_type', 'wp-page'),
(2526, 228, '_elementor_version', '4.1.3'),
(2527, 228, '_elementor_pro_version', '4.1.1'),
(2528, 228, '_elementor_global_class_usage_indexed', '1'),
(2529, 228, '_elementor_global_class_usage_indexed_preview', '1'),
(2530, 228, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(2531, 228, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"custom_css\":\".services_sections .pp-info-box-icon-wrap{\\n    position: relative;\\n    overflow: visible;\\n}\\n\\n\\/* Curved Bottom Shape *\\/\\n.services_sections .pp-info-box-icon-wrap::after{\\n    content: \\\"\\\";\\n    position: absolute;\\n    left: 0;\\n    bottom: -1px;\\n    width: 100%;\\n    height: 20px;\\n    background: #6C63FF; \\/* \\u0986\\u09aa\\u09a8\\u09be\\u09b0 color *\\/\\n    \\n    \\/* \\u098f\\u099f\\u09be-\\u0987 \\u09ae\\u09c2\\u09b2 magic *\\/\\n    border-radius: 0 0 100% 100%;\\n\\n    z-index: 2;\\n}\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2533, 228, '_elementor_page_settings', 'a:0:{}'),
(2538, 229, '_elementor_template_type', 'wp-page'),
(2539, 229, '_elementor_version', '4.1.3'),
(2540, 229, '_elementor_pro_version', '4.1.1'),
(2541, 229, '_elementor_global_class_usage_indexed', '1'),
(2542, 229, '_elementor_global_class_usage_indexed_preview', '1'),
(2543, 229, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2544, 229, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"custom_css\":\".services_sections .pp-info-box-icon-wrap{\\n    position: relative;\\n    overflow: visible;\\n}\\n\\n.services_sections .pp-info-box-icon-wrap::after{\\n    content: \\\"\\\";\\n    position: absolute;\\n    left: 0;\\n    bottom: -1px;\\n    width: 100%;\\n    height: 22px;\\n    background: #000;\\n    \\n    border-radius: 0 0 80px 80px;\\n    z-index: 2;\\n}\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(8175, 690, '_elementor_page_settings', 'a:0:{}'),
(8176, 691, '_wp_page_template', 'elementor_header_footer'),
(8177, 691, '_elementor_edit_mode', 'builder'),
(8178, 691, '_elementor_template_type', 'wp-page'),
(8179, 691, '_elementor_version', '4.1.3'),
(8180, 691, '_elementor_pro_version', '4.1.1'),
(8181, 691, '_elementor_global_class_usage_indexed', '1'),
(8182, 691, '_elementor_global_class_usage_indexed_preview', '1'),
(8183, 691, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8184, 691, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":532,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":431,\"sizes\":[]}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"px\",\"size\":223,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"common_image_animation\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"},\"hide_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\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"css_classes\":\"common_image_animation \"},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\",\"css_classes\":\"common_image_animation \"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(2620, 235, '_wp_page_template', 'elementor_header_footer'),
(2595, 233, '_elementor_edit_mode', 'builder'),
(2596, 233, '_elementor_template_type', 'wp-page'),
(2597, 233, '_elementor_version', '4.1.3'),
(2598, 233, '_elementor_pro_version', '4.1.1'),
(2599, 233, '_elementor_global_class_usage_indexed', '1'),
(2600, 233, '_elementor_global_class_usage_indexed_preview', '1'),
(2601, 233, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2602, 233, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top\":\"curve\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"custom_css\":\".services_sections .pp-info-box-icon-wrap{\\n    position: relative;\\n    overflow: visible;\\n}\\n\\n.services_sections .pp-info-box-icon-wrap::after{\\n    content: \\\"\\\";\\n    position: absolute;\\n    left: 0;\\n    bottom: -1px;\\n    width: 100%;\\n    height: 22px;\\n    background: #000;\\n    \\n    border-radius: 0 0 80px 80px;\\n    z-index: 2;\\n}\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2562, 230, '_elementor_page_settings', 'a:0:{}'),
(2565, 231, '_wp_page_template', 'elementor_header_footer'),
(2566, 231, '_elementor_edit_mode', 'builder'),
(2567, 231, '_elementor_template_type', 'wp-page'),
(2568, 231, '_elementor_version', '4.1.3'),
(2569, 231, '_elementor_pro_version', '4.1.1'),
(2570, 231, '_elementor_global_class_usage_indexed', '1'),
(2571, 231, '_elementor_global_class_usage_indexed_preview', '1'),
(2572, 231, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(2573, 231, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"custom_css\":\".services_sections .pp-info-box-icon-wrap{\\n    position: relative;\\n    overflow: visible;\\n}\\n\\n.services_sections .pp-info-box-icon-wrap::after{\\n    content: \\\"\\\";\\n    position: absolute;\\n    left: 0;\\n    bottom: -1px;\\n    width: 100%;\\n    height: 22px;\\n    background: #000;\\n    \\n    border-radius: 0 0 80px 80px;\\n    z-index: 2;\\n}\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2575, 231, '_elementor_page_settings', 'a:0:{}'),
(8586, 722, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8587, 722, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":532,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":431,\"sizes\":[]}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"px\",\"size\":223,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"common_image_animation\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"},\"hide_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\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"css_classes\":\"common_image_animation \"},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/contact-bd-a.jpg\",\"id\":715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\",\"css_classes\":\"common_image_animation \"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(2656, 238, '_wp_page_template', 'elementor_header_footer'),
(2578, 232, '_wp_page_template', 'elementor_header_footer'),
(2579, 232, '_elementor_edit_mode', 'builder'),
(2580, 232, '_elementor_template_type', 'wp-page'),
(2581, 232, '_elementor_version', '4.1.3'),
(2582, 232, '_elementor_pro_version', '4.1.1'),
(2583, 232, '_elementor_global_class_usage_indexed', '1'),
(2584, 232, '_elementor_global_class_usage_indexed_preview', '1'),
(2585, 232, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2586, 232, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top\":\"curve\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"custom_css\":\".services_sections .pp-info-box-icon-wrap{\\n    position: relative;\\n    overflow: visible;\\n}\\n\\n.services_sections .pp-info-box-icon-wrap::after{\\n    content: \\\"\\\";\\n    position: absolute;\\n    left: 0;\\n    bottom: -1px;\\n    width: 100%;\\n    height: 22px;\\n    background: #000;\\n    \\n    border-radius: 0 0 80px 80px;\\n    z-index: 2;\\n}\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(7891, 673, '_elementor_source', 'post'),
(7892, 673, '_elementor_edit_mode', 'builder'),
(7893, 673, '_elementor_template_type', 'header'),
(7894, 673, '_elementor_version', '4.1.3'),
(7895, 673, '_elementor_pro_version', '4.1.1'),
(7896, 673, '_elementor_global_class_usage_indexed', '1'),
(7897, 673, '_elementor_global_class_usage_indexed_preview', '1'),
(7898, 673, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(7899, 673, '_wp_page_template', 'default'),
(7900, 673, '_elementor_data', '[{\"id\":\"7cd2407b\",\"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},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4b376675\",\"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\":\"14e415c9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@optimalmentalwellness.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@optimalmentalwellness.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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5137f99d\",\"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\":\"416cdcb9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"904-901-7913\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:9049017913\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=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\":\"6090cb25\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"background_background\":\"classic\",\"css_classes\":\"header_sections\",\"sticky\":\"top\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"42e85872\",\"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\":\"5d51e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Optimal-Mental-Health-And-Wellness-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":300,\"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\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_position\":\"absolute\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"388619a3\",\"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\":\"2a70cfde\",\"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\":30,\"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\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"500\",\"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=astglobalcolor6\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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=astglobalcolor6\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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\":[]},\"_flex_order_tablet_extra\":\"end\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"ca7841b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"590be00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"454cd36b\",\"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\":432,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Mental-Health-And-Wellness-av.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"5aa4113e\",\"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}]'),
(2634, 236, '_wp_page_template', 'elementor_header_footer'),
(2635, 236, '_elementor_edit_mode', 'builder'),
(2636, 236, '_elementor_template_type', 'wp-page'),
(2637, 236, '_elementor_version', '4.1.3'),
(2638, 236, '_elementor_pro_version', '4.1.1'),
(2639, 236, '_elementor_global_class_usage_indexed', '1'),
(2640, 236, '_elementor_global_class_usage_indexed_preview', '1'),
(2641, 236, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2642, 236, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"custom_css\":\".services_sections .pp-info-box-icon-wrap{\\n    position: relative;\\n    overflow: visible;\\n}\\n\\n.services_sections .pp-info-box-icon-wrap::after{\\n    content: \\\"\\\";\\n    position: absolute;\\n    left: 0;\\n    bottom: -1px;\\n    width: 100%;\\n    height: 22px;\\n    background: #000;\\n    \\n    border-radius: 0 0 80px 80px;\\n    z-index: 2;\\n}\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2604, 233, '_elementor_page_settings', 'a:0:{}'),
(8584, 722, '_elementor_global_class_usage_indexed', '1'),
(8585, 722, '_elementor_global_class_usage_indexed_preview', '1'),
(8164, 689, '_elementor_page_settings', 'a:0:{}'),
(8165, 690, '_wp_page_template', 'elementor_header_footer'),
(8166, 690, '_elementor_edit_mode', 'builder'),
(8167, 690, '_elementor_template_type', 'wp-page'),
(8168, 690, '_elementor_version', '4.1.3'),
(8169, 690, '_elementor_pro_version', '4.1.1'),
(8170, 690, '_elementor_global_class_usage_indexed', '1'),
(8171, 690, '_elementor_global_class_usage_indexed_preview', '1'),
(8172, 690, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8173, 690, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":532,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":431,\"sizes\":[]}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"px\",\"size\":223,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"common_image_animation\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"},\"hide_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\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"css_classes\":\"common_image_animation \"},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(2607, 234, '_wp_page_template', 'elementor_header_footer'),
(2608, 234, '_elementor_edit_mode', 'builder'),
(2609, 234, '_elementor_template_type', 'wp-page'),
(2610, 234, '_elementor_version', '4.1.3'),
(2611, 234, '_elementor_pro_version', '4.1.1'),
(2612, 234, '_elementor_global_class_usage_indexed', '1'),
(2613, 234, '_elementor_global_class_usage_indexed_preview', '1'),
(2614, 234, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2615, 234, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top\":\"curve\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"custom_css\":\".services_sections .pp-info-box-icon-wrap{\\n    position: relative;\\n    overflow: visible;\\n}\\n\\n.services_sections .pp-info-box-icon-wrap::after{\\n    content: \\\"\\\";\\n    position: absolute;\\n    left: 0;\\n    bottom: -1px;\\n    width: 100%;\\n    height: 22px;\\n    background: #000;\\n    \\n    border-radius: 0 0 80px 80px;\\n    z-index: 2;\\n}\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(7820, 667, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7821, 667, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":532,\"sizes\":[]}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"},\"hide_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\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(2617, 234, '_elementor_page_settings', 'a:0:{}'),
(8581, 722, '_elementor_template_type', 'wp-page'),
(8582, 722, '_elementor_version', '4.1.3'),
(8583, 722, '_elementor_pro_version', '4.1.1'),
(2621, 235, '_elementor_edit_mode', 'builder'),
(2622, 235, '_elementor_template_type', 'wp-page'),
(2623, 235, '_elementor_version', '4.1.3'),
(2624, 235, '_elementor_pro_version', '4.1.1'),
(2625, 235, '_elementor_global_class_usage_indexed', '1'),
(2626, 235, '_elementor_global_class_usage_indexed_preview', '1'),
(2627, 235, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2628, 235, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"custom_css\":\".services_sections .pp-info-box-icon-wrap{\\n    position: relative;\\n    overflow: visible;\\n}\\n\\n.services_sections .pp-info-box-icon-wrap::after{\\n    content: \\\"\\\";\\n    position: absolute;\\n    left: 0;\\n    bottom: -1px;\\n    width: 100%;\\n    height: 22px;\\n    background: #000;\\n    \\n    border-radius: 0 0 80px 80px;\\n    z-index: 2;\\n}\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(6462, 561, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(7755, 18, '_elementor_page_settings', 'a:0:{}'),
(7756, 18, '_elementor_controls_usage', 'a:2:{s:18:\"aab_booking_widget\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"section_general\";a:1:{s:17:\"show_progress_bar\";i:1;}s:13:\"section_theme\";a:1:{s:12:\"theme_preset\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_style_colors\";a:2:{s:13:\"primary_color\";i:1;s:15:\"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:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:1:{s:13:\"content_width\";i:1;}}s:5:\"style\";a:1:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:2;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}s:14:\"section_layout\";a:2:{s:7:\"padding\";i:1;s:11:\"css_classes\";i:1;}}}}}'),
(8843, 20, '_elementor_page_settings', 'a:0:{}'),
(8844, 20, '_elementor_controls_usage', 'a:8:{s:8:\"icon-box\";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: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:2:{s:17:\"section_style_box\";a:3:{s:8:\"position\";i:1;s:15:\"position_mobile\";i:1;s:26:\"content_vertical_alignment\";i:1;}s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:17:\"pp-business-hours\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:18:\"section_price_menu\";a:3:{s:16:\"business_timings\";i:1;s:14:\"business_hours\";i:1;s:21:\"business_hours_custom\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_rows_style\";a:3:{s:7:\"stripes\";i:1;s:12:\"rows_padding\";i:1;s:11:\"rows_margin\";i:1;}s:28:\"section_business_hours_style\";a:2:{s:27:\"title_typography_typography\";i:1;s:27:\"hours_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"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:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:7:{s:13:\"content_width\";i:3;s:5:\"width\";i:2;s:20:\"flex_justify_content\";i:1;s:10:\"min_height\";i:1;s:16:\"flex_align_items\";i:1;s:14:\"flex_direction\";i:2;s:8:\"flex_gap\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:2;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:5;}s:14:\"section_border\";a:3:{s:13:\"border_radius\";i:3;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:4;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:5;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:2;}}}}s:9:\"icon-list\";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:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:3:{s:9:\"icon_size\";i:1;s:11:\"text_indent\";i:1;s:24:\"icon_self_vertical_align\";i:1;}s:18:\"section_text_style\";a:2:{s:26:\"icon_typography_typography\";i:1;s:25:\"icon_typography_font_size\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:1;s:16:\"_flex_align_self\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:15:\"_section_border\";a:3:{s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:4:{s:19:\"section_form_fields\";a: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:8:\"email_to\";i:1;s:13:\"email_subject\";i:1;s:10:\"email_from\";i:1;s:15:\"email_from_name\";i:1;s:13:\"form_metadata\";i:1;}s:15:\"section_email_2\";a:2:{s:15:\"email_subject_2\";i:1;s:17:\"email_from_name_2\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_form_style\";a:6:{s:10:\"column_gap\";i:1;s:13:\"label_spacing\";i:1;s:27:\"label_typography_typography\";i:1;s:26:\"label_typography_font_size\";i:1;s:7:\"row_gap\";i:1;s:12:\"html_spacing\";i:1;}s:19:\"section_field_style\";a: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;}}}}}'),
(7812, 666, '_elementor_page_settings', 'a:0:{}'),
(7813, 667, '_wp_page_template', 'elementor_header_footer'),
(7814, 667, '_elementor_edit_mode', 'builder'),
(7815, 667, '_elementor_template_type', 'wp-page'),
(7816, 667, '_elementor_version', '4.1.3'),
(7817, 667, '_elementor_pro_version', '4.1.1'),
(7818, 667, '_elementor_global_class_usage_indexed', '1'),
(7819, 667, '_elementor_global_class_usage_indexed_preview', '1'),
(2644, 236, '_elementor_page_settings', 'a:0:{}'),
(2645, 237, '_wp_page_template', 'elementor_header_footer'),
(2646, 237, '_elementor_edit_mode', 'builder'),
(2647, 237, '_elementor_template_type', 'wp-page'),
(2648, 237, '_elementor_version', '4.1.3'),
(2649, 237, '_elementor_pro_version', '4.1.1'),
(2650, 237, '_elementor_global_class_usage_indexed', '1'),
(2651, 237, '_elementor_global_class_usage_indexed_preview', '1'),
(2652, 237, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(2653, 237, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"custom_css\":\".services_sections .pp-info-box-icon-wrap{\\n    position: relative;\\n    overflow: visible;\\n}\\n\\n.services_sections .pp-info-box-icon-wrap::after{\\n    content: \\\"\\\";\\n    position: absolute;\\n    left: 0;\\n    bottom: -1px;\\n    width: 100%;\\n    height: 22px;\\n    background: #000;\\n    \\n    border-radius: 0 0 80px 80px;\\n    z-index: 2;\\n}\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2655, 237, '_elementor_page_settings', 'a:0:{}'),
(2662, 238, '_elementor_global_class_usage_indexed_preview', '1'),
(2663, 238, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2664, 238, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2672, 240, '_wp_page_template', 'elementor_header_footer'),
(2673, 240, '_elementor_edit_mode', 'builder'),
(2674, 240, '_elementor_template_type', 'wp-page'),
(2675, 240, '_elementor_version', '4.1.3'),
(2676, 240, '_elementor_pro_version', '4.1.1'),
(2677, 240, '_elementor_global_class_usage_indexed', '1'),
(2678, 240, '_elementor_global_class_usage_indexed_preview', '1'),
(2679, 240, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(2680, 240, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2714, 243, '_wp_page_template', 'elementor_header_footer'),
(2715, 243, '_elementor_edit_mode', 'builder'),
(2716, 243, '_elementor_template_type', 'wp-page'),
(2717, 243, '_elementor_version', '4.1.3'),
(2718, 243, '_elementor_pro_version', '4.1.1'),
(2719, 243, '_elementor_global_class_usage_indexed', '1'),
(2720, 243, '_elementor_global_class_usage_indexed_preview', '1'),
(2721, 243, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2722, 243, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2682, 240, '_elementor_page_settings', 'a:0:{}'),
(8578, 721, '_elementor_page_settings', 'a:0:{}'),
(8579, 722, '_wp_page_template', 'elementor_header_footer'),
(8580, 722, '_elementor_edit_mode', 'builder'),
(2685, 241, '_wp_page_template', 'elementor_header_footer'),
(2686, 241, '_elementor_edit_mode', 'builder'),
(2687, 241, '_elementor_template_type', 'wp-page'),
(2688, 241, '_elementor_version', '4.1.3'),
(2689, 241, '_elementor_pro_version', '4.1.1'),
(2690, 241, '_elementor_global_class_usage_indexed', '1'),
(2691, 241, '_elementor_global_class_usage_indexed_preview', '1'),
(2692, 241, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(2693, 241, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<\\/p><p>\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2695, 241, '_elementor_page_settings', 'a:0:{}'),
(8872, 743, '_elementor_page_settings', 'a:0:{}'),
(2698, 242, '_wp_page_template', 'elementor_header_footer'),
(2699, 242, '_elementor_edit_mode', 'builder'),
(2700, 242, '_elementor_template_type', 'wp-page'),
(2701, 242, '_elementor_version', '4.1.3'),
(2702, 242, '_elementor_pro_version', '4.1.1'),
(2703, 242, '_elementor_global_class_usage_indexed', '1'),
(2704, 242, '_elementor_global_class_usage_indexed_preview', '1'),
(2705, 242, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2706, 242, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2778, 249, '_wp_page_template', 'elementor_header_footer'),
(2756, 247, '_wp_page_template', 'elementor_header_footer'),
(2757, 247, '_elementor_edit_mode', 'builder'),
(2758, 247, '_elementor_template_type', 'wp-page'),
(2759, 247, '_elementor_version', '4.1.3'),
(2760, 247, '_elementor_pro_version', '4.1.1'),
(2761, 247, '_elementor_global_class_usage_indexed', '1'),
(2762, 247, '_elementor_global_class_usage_indexed_preview', '1'),
(2763, 247, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(2764, 247, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2754, 246, '_wp_attached_file', '2026/06/453006.jpg'),
(2755, 246, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:18:\"2026/06/453006.jpg\";s:8:\"filesize\";i:115700;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"453006-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22433;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"453006-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7394;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"453006-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103748;}}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:\"\";}}'),
(2724, 243, '_elementor_page_settings', 'a:0:{}'),
(2727, 244, '_wp_page_template', 'elementor_header_footer'),
(2728, 244, '_elementor_edit_mode', 'builder'),
(2729, 244, '_elementor_template_type', 'wp-page'),
(2730, 244, '_elementor_version', '4.1.3'),
(2731, 244, '_elementor_pro_version', '4.1.1'),
(2732, 244, '_elementor_global_class_usage_indexed', '1'),
(2733, 244, '_elementor_global_class_usage_indexed_preview', '1'),
(2734, 244, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2735, 244, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/nottom-welnes.jpg\",\"id\":177,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2737, 244, '_elementor_page_settings', 'a:0:{}'),
(8141, 688, '_elementor_edit_mode', 'builder'),
(8142, 688, '_elementor_template_type', 'wp-page'),
(8143, 688, '_elementor_version', '4.1.3'),
(8144, 688, '_elementor_pro_version', '4.1.1'),
(8145, 688, '_elementor_global_class_usage_indexed', '1'),
(8146, 688, '_elementor_global_class_usage_indexed_preview', '1'),
(8147, 688, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8148, 688, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":532,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":431,\"sizes\":[]}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"px\",\"size\":223,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"common_image_animation\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"},\"hide_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\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"css_classes\":\"common_image_animation \"},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(2818, 252, '_wp_page_template', 'elementor_header_footer'),
(2740, 245, '_wp_page_template', 'elementor_header_footer'),
(2741, 245, '_elementor_edit_mode', 'builder'),
(2742, 245, '_elementor_template_type', 'wp-page'),
(2743, 245, '_elementor_version', '4.1.3'),
(2744, 245, '_elementor_pro_version', '4.1.1'),
(2745, 245, '_elementor_global_class_usage_indexed', '1'),
(2746, 245, '_elementor_global_class_usage_indexed_preview', '1'),
(2747, 245, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2748, 245, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2766, 247, '_elementor_page_settings', 'a:0:{}'),
(2767, 248, '_wp_page_template', 'elementor_header_footer'),
(2768, 248, '_elementor_edit_mode', 'builder'),
(2769, 248, '_elementor_template_type', 'wp-page'),
(2770, 248, '_elementor_version', '4.1.3'),
(2771, 248, '_elementor_pro_version', '4.1.1'),
(2772, 248, '_elementor_global_class_usage_indexed', '1'),
(2773, 248, '_elementor_global_class_usage_indexed_preview', '1'),
(2774, 248, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(2775, 248, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2777, 248, '_elementor_page_settings', 'a:0:{}'),
(2779, 249, '_elementor_edit_mode', 'builder'),
(2780, 249, '_elementor_template_type', 'wp-page'),
(2781, 249, '_elementor_version', '4.1.3'),
(2782, 249, '_elementor_pro_version', '4.1.1'),
(2783, 249, '_elementor_global_class_usage_indexed', '1'),
(2784, 249, '_elementor_global_class_usage_indexed_preview', '1'),
(2785, 249, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2786, 249, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2792, 250, '_wp_page_template', 'elementor_header_footer'),
(2793, 250, '_elementor_edit_mode', 'builder'),
(2794, 250, '_elementor_template_type', 'wp-page'),
(2795, 250, '_elementor_version', '4.1.3'),
(2796, 250, '_elementor_pro_version', '4.1.1'),
(2797, 250, '_elementor_global_class_usage_indexed', '1'),
(2798, 250, '_elementor_global_class_usage_indexed_preview', '1'),
(2799, 250, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(2800, 250, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2834, 253, '_wp_page_template', 'elementor_header_footer'),
(2835, 253, '_elementor_edit_mode', 'builder'),
(2836, 253, '_elementor_template_type', 'wp-page'),
(2837, 253, '_elementor_version', '4.1.3'),
(2838, 253, '_elementor_pro_version', '4.1.1'),
(2839, 253, '_elementor_global_class_usage_indexed', '1'),
(2840, 253, '_elementor_global_class_usage_indexed_preview', '1'),
(2841, 253, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2842, 253, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2916, 259, '_wp_page_template', 'elementor_header_footer'),
(2917, 259, '_elementor_edit_mode', 'builder'),
(2918, 259, '_elementor_template_type', 'wp-page'),
(2919, 259, '_elementor_version', '4.1.3'),
(2920, 259, '_elementor_pro_version', '4.1.1'),
(2921, 259, '_elementor_global_class_usage_indexed', '1'),
(2922, 259, '_elementor_global_class_usage_indexed_preview', '1'),
(2923, 259, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(2924, 259, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2802, 250, '_elementor_page_settings', 'a:0:{}'),
(8137, 687, '_elementor_page_settings', 'a:0:{}'),
(2805, 251, '_wp_page_template', 'elementor_header_footer'),
(2806, 251, '_elementor_edit_mode', 'builder'),
(2807, 251, '_elementor_template_type', 'wp-page'),
(2808, 251, '_elementor_version', '4.1.3'),
(2809, 251, '_elementor_pro_version', '4.1.1'),
(2810, 251, '_elementor_global_class_usage_indexed', '1'),
(2811, 251, '_elementor_global_class_usage_indexed_preview', '1'),
(2812, 251, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2813, 251, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2815, 251, '_elementor_page_settings', 'a:0:{}'),
(2819, 252, '_elementor_edit_mode', 'builder'),
(2820, 252, '_elementor_template_type', 'wp-page'),
(2821, 252, '_elementor_version', '4.1.3'),
(2822, 252, '_elementor_pro_version', '4.1.1'),
(2823, 252, '_elementor_global_class_usage_indexed', '1'),
(2824, 252, '_elementor_global_class_usage_indexed_preview', '1'),
(2825, 252, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(2826, 252, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2876, 256, '_wp_page_template', 'elementor_header_footer'),
(2877, 256, '_elementor_edit_mode', 'builder'),
(2878, 256, '_elementor_template_type', 'wp-page'),
(2879, 256, '_elementor_version', '4.1.3'),
(2880, 256, '_elementor_pro_version', '4.1.1'),
(2881, 256, '_elementor_global_class_usage_indexed', '1'),
(2882, 256, '_elementor_global_class_usage_indexed_preview', '1'),
(2883, 256, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2884, 256, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2844, 253, '_elementor_page_settings', 'a:0:{}'),
(8127, 687, '_wp_page_template', 'elementor_header_footer'),
(8128, 687, '_elementor_edit_mode', 'builder'),
(8129, 687, '_elementor_template_type', 'wp-page'),
(8130, 687, '_elementor_version', '4.1.3'),
(8131, 687, '_elementor_pro_version', '4.1.1'),
(8132, 687, '_elementor_global_class_usage_indexed', '1'),
(8133, 687, '_elementor_global_class_usage_indexed_preview', '1'),
(8134, 687, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8135, 687, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":532,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":431,\"sizes\":[]}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"px\",\"size\":223,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"common_image_animation\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"},\"hide_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\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(2847, 254, '_wp_page_template', 'elementor_header_footer'),
(2848, 254, '_elementor_edit_mode', 'builder'),
(2849, 254, '_elementor_template_type', 'wp-page'),
(2850, 254, '_elementor_version', '4.1.3'),
(2851, 254, '_elementor_pro_version', '4.1.1'),
(2852, 254, '_elementor_global_class_usage_indexed', '1'),
(2853, 254, '_elementor_global_class_usage_indexed_preview', '1'),
(2854, 254, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2855, 254, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2857, 254, '_elementor_page_settings', 'a:0:{}'),
(2860, 255, '_wp_page_template', 'elementor_header_footer'),
(2861, 255, '_elementor_edit_mode', 'builder'),
(2862, 255, '_elementor_template_type', 'wp-page'),
(2863, 255, '_elementor_version', '4.1.3'),
(2864, 255, '_elementor_pro_version', '4.1.1'),
(2865, 255, '_elementor_global_class_usage_indexed', '1'),
(2866, 255, '_elementor_global_class_usage_indexed_preview', '1'),
(2867, 255, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(2868, 255, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2886, 256, '_elementor_page_settings', 'a:0:{}'),
(8124, 686, '_elementor_page_settings', 'a:0:{}'),
(2889, 257, '_wp_page_template', 'elementor_header_footer'),
(2890, 257, '_elementor_edit_mode', 'builder'),
(2891, 257, '_elementor_template_type', 'wp-page'),
(2892, 257, '_elementor_version', '4.1.3'),
(2893, 257, '_elementor_pro_version', '4.1.1'),
(2894, 257, '_elementor_global_class_usage_indexed', '1'),
(2895, 257, '_elementor_global_class_usage_indexed_preview', '1'),
(2896, 257, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2897, 257, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2899, 257, '_elementor_page_settings', 'a:0:{}'),
(2902, 258, '_wp_page_template', 'elementor_header_footer'),
(2903, 258, '_elementor_edit_mode', 'builder'),
(2904, 258, '_elementor_template_type', 'wp-page'),
(2905, 258, '_elementor_version', '4.1.3'),
(2906, 258, '_elementor_pro_version', '4.1.1'),
(2907, 258, '_elementor_global_class_usage_indexed', '1'),
(2908, 258, '_elementor_global_class_usage_indexed_preview', '1'),
(2909, 258, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(2910, 258, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(8154, 689, '_wp_page_template', 'elementor_header_footer'),
(8155, 689, '_elementor_edit_mode', 'builder'),
(8156, 689, '_elementor_template_type', 'wp-page'),
(8157, 689, '_elementor_version', '4.1.3'),
(8158, 689, '_elementor_pro_version', '4.1.1'),
(8159, 689, '_elementor_global_class_usage_indexed', '1'),
(8160, 689, '_elementor_global_class_usage_indexed_preview', '1'),
(8161, 689, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8162, 689, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":532,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":431,\"sizes\":[]}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"px\",\"size\":223,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"common_image_animation\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"},\"hide_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\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"css_classes\":\"common_image_animation \"},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(2926, 259, '_elementor_page_settings', 'a:0:{}'),
(2927, 260, '_wp_page_template', 'elementor_header_footer'),
(2928, 260, '_elementor_edit_mode', 'builder'),
(2929, 260, '_elementor_template_type', 'wp-page'),
(2930, 260, '_elementor_version', '4.1.3'),
(2931, 260, '_elementor_pro_version', '4.1.1'),
(2932, 260, '_elementor_global_class_usage_indexed', '1'),
(2933, 260, '_elementor_global_class_usage_indexed_preview', '1'),
(2934, 260, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2935, 260, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2937, 260, '_elementor_page_settings', 'a:0:{}'),
(2938, 261, '_wp_page_template', 'elementor_header_footer'),
(2939, 261, '_elementor_edit_mode', 'builder'),
(2940, 261, '_elementor_template_type', 'wp-page'),
(2941, 261, '_elementor_version', '4.1.3'),
(2942, 261, '_elementor_pro_version', '4.1.1'),
(2943, 261, '_elementor_global_class_usage_indexed', '1'),
(2944, 261, '_elementor_global_class_usage_indexed_preview', '1'),
(2945, 261, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(2946, 261, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2978, 264, '_wp_page_template', 'elementor_header_footer'),
(2952, 262, '_wp_page_template', 'elementor_header_footer'),
(2953, 262, '_elementor_edit_mode', 'builder'),
(2954, 262, '_elementor_template_type', 'wp-page'),
(2955, 262, '_elementor_version', '4.1.3'),
(2956, 262, '_elementor_pro_version', '4.1.1'),
(2957, 262, '_elementor_global_class_usage_indexed', '1'),
(2958, 262, '_elementor_global_class_usage_indexed_preview', '1'),
(2959, 262, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2960, 262, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3054, 270, '_wp_page_template', 'elementor_header_footer'),
(2992, 265, '_wp_page_template', 'elementor_header_footer'),
(2993, 265, '_elementor_edit_mode', 'builder'),
(2994, 265, '_elementor_template_type', 'wp-page'),
(2995, 265, '_elementor_version', '4.1.3'),
(2996, 265, '_elementor_pro_version', '4.1.1'),
(2997, 265, '_elementor_global_class_usage_indexed', '1'),
(2998, 265, '_elementor_global_class_usage_indexed_preview', '1'),
(2999, 265, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(3000, 265, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(6481, 562, '_elementor_source', 'post'),
(6482, 562, '_elementor_edit_mode', 'builder'),
(2962, 262, '_elementor_page_settings', 'a:0:{}'),
(2965, 263, '_wp_page_template', 'elementor_header_footer'),
(2966, 263, '_elementor_edit_mode', 'builder'),
(2967, 263, '_elementor_template_type', 'wp-page'),
(2968, 263, '_elementor_version', '4.1.3'),
(2969, 263, '_elementor_pro_version', '4.1.1'),
(2970, 263, '_elementor_global_class_usage_indexed', '1'),
(2971, 263, '_elementor_global_class_usage_indexed_preview', '1'),
(2972, 263, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2973, 263, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2975, 263, '_elementor_page_settings', 'a:0:{}'),
(2979, 264, '_elementor_edit_mode', 'builder'),
(2980, 264, '_elementor_template_type', 'wp-page'),
(2981, 264, '_elementor_version', '4.1.3'),
(2982, 264, '_elementor_pro_version', '4.1.1'),
(2983, 264, '_elementor_global_class_usage_indexed', '1'),
(2984, 264, '_elementor_global_class_usage_indexed_preview', '1'),
(2985, 264, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(2986, 264, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(6483, 562, '_elementor_template_type', 'header'),
(6484, 562, '_elementor_version', '4.1.3'),
(6485, 562, '_elementor_pro_version', '4.1.1'),
(6486, 562, '_elementor_global_class_usage_indexed', '1'),
(6487, 562, '_elementor_global_class_usage_indexed_preview', '1'),
(6488, 562, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6489, 562, '_wp_page_template', 'default');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6490, 562, '_elementor_data', '[{\"id\":\"7cd2407b\",\"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},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4b376675\",\"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\":\"14e415c9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@optimalmentalwellness.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@optimalmentalwellness.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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5137f99d\",\"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\":\"416cdcb9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"904-901-7913\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:9049017913\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=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\":\"6090cb25\",\"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\"},\"elements\":[{\"id\":\"42e85872\",\"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\":\"5d51e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Optimal-Mental-Health-And-Wellness-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":300,\"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\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_position\":\"absolute\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"388619a3\",\"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\":\"2a70cfde\",\"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\":30,\"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\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"500\",\"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=astglobalcolor6\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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=astglobalcolor6\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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\":[]},\"_flex_order_tablet_extra\":\"end\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"ca7841b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"590be00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"454cd36b\",\"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\":432,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Mental-Health-And-Wellness-av.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"5aa4113e\",\"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}]'),
(7878, 672, '_elementor_version', '4.1.3'),
(7879, 672, '_elementor_pro_version', '4.1.1'),
(7880, 672, '_elementor_global_class_usage_indexed', '1'),
(7881, 672, '_elementor_global_class_usage_indexed_preview', '1'),
(7882, 672, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(7883, 672, '_wp_page_template', 'default'),
(7884, 672, '_elementor_data', '[{\"id\":\"7cd2407b\",\"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},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4b376675\",\"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\":\"14e415c9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@optimalmentalwellness.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@optimalmentalwellness.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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5137f99d\",\"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\":\"416cdcb9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"904-901-7913\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:9049017913\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=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\":\"6090cb25\",\"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\",\"css_classes\":\"header_sections\"},\"elements\":[{\"id\":\"42e85872\",\"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\":\"5d51e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Optimal-Mental-Health-And-Wellness-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":300,\"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\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_position\":\"absolute\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"388619a3\",\"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\":\"2a70cfde\",\"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\":30,\"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\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"500\",\"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=astglobalcolor6\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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=astglobalcolor6\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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\":[]},\"_flex_order_tablet_extra\":\"end\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"ca7841b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"590be00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"454cd36b\",\"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\":432,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Mental-Health-And-Wellness-av.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"5aa4113e\",\"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}]'),
(3002, 265, '_elementor_page_settings', 'a:0:{}'),
(3003, 266, '_wp_page_template', 'elementor_header_footer'),
(3004, 266, '_elementor_edit_mode', 'builder'),
(3005, 266, '_elementor_template_type', 'wp-page'),
(3006, 266, '_elementor_version', '4.1.3'),
(3007, 266, '_elementor_pro_version', '4.1.1'),
(3008, 266, '_elementor_global_class_usage_indexed', '1'),
(3009, 266, '_elementor_global_class_usage_indexed_preview', '1'),
(3010, 266, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3011, 266, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(7875, 672, '_elementor_source', 'post'),
(7876, 672, '_elementor_edit_mode', 'builder'),
(7877, 672, '_elementor_template_type', 'header'),
(3013, 266, '_elementor_page_settings', 'a:0:{}'),
(3014, 267, '_wp_page_template', 'elementor_header_footer'),
(3015, 267, '_elementor_edit_mode', 'builder'),
(3016, 267, '_elementor_template_type', 'wp-page'),
(3017, 267, '_elementor_version', '4.1.3'),
(3018, 267, '_elementor_pro_version', '4.1.1'),
(3019, 267, '_elementor_global_class_usage_indexed', '1'),
(3020, 267, '_elementor_global_class_usage_indexed_preview', '1'),
(3021, 267, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(3022, 267, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_rand_opacity\":\"true\",\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3055, 270, '_elementor_edit_mode', 'builder'),
(3028, 268, '_wp_page_template', 'elementor_header_footer'),
(3029, 268, '_elementor_edit_mode', 'builder'),
(3030, 268, '_elementor_template_type', 'wp-page'),
(3031, 268, '_elementor_version', '4.1.3'),
(3032, 268, '_elementor_pro_version', '4.1.1'),
(3033, 268, '_elementor_global_class_usage_indexed', '1'),
(3034, 268, '_elementor_global_class_usage_indexed_preview', '1'),
(3035, 268, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3036, 268, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_rand_opacity\":\"true\",\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3071, 271, '_wp_page_template', 'elementor_header_footer'),
(3072, 271, '_elementor_edit_mode', 'builder'),
(3073, 271, '_elementor_template_type', 'wp-page'),
(3074, 271, '_elementor_version', '4.1.3'),
(3075, 271, '_elementor_pro_version', '4.1.1'),
(3076, 271, '_elementor_global_class_usage_indexed', '1'),
(3077, 271, '_elementor_global_class_usage_indexed_preview', '1'),
(3078, 271, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(3079, 271, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3038, 268, '_elementor_page_settings', 'a:0:{}'),
(8776, 737, '_wp_page_template', 'elementor_header_footer'),
(8777, 737, '_elementor_global_class_usage_indexed', '1'),
(8778, 737, '_elementor_edit_mode', 'builder'),
(8779, 737, '_elementor_template_type', 'wp-page'),
(8780, 737, '_elementor_version', '4.1.3'),
(8781, 737, '_elementor_pro_version', '4.1.1'),
(8782, 737, '_elementor_global_class_usage_indexed_preview', '1'),
(8783, 737, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8784, 737, '_elementor_data', '[{\"id\":\"930c0f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e9b1af4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40}},\"elements\":[{\"id\":\"88a3c22\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":616,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mental-contact-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"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\":\"f3587d7\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[{\"id\":\"9d88ee6\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d778882\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f882cf8\",\"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\":\"05:30 AM - 08:30 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sat - Sun\",\"highlight\":\"\",\"highlight_color\":\"#bc1705\",\"_id\":\"5b4030f\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"8:00 AM - 1:00 PM\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"rows_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"5\",\"bottom\":\"8\",\"left\":\"5\",\"isLinked\":false},\"rows_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"hours_typography_typography\":\"custom\",\"hours_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"hours_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"327b8dd\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"745f907\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"cafb309\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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=astglobalcolor6\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"636d4e2\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d38a337\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"info@optimalmentalwellness.org\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8785, 737, '_elementor_page_settings', 'a:0:{}'),
(8789, 738, '_wp_page_template', 'elementor_header_footer'),
(8790, 738, '_elementor_global_class_usage_indexed', '1'),
(8791, 738, '_elementor_edit_mode', 'builder'),
(8792, 738, '_elementor_template_type', 'wp-page'),
(8793, 738, '_elementor_version', '4.1.3'),
(8794, 738, '_elementor_pro_version', '4.1.1'),
(8795, 738, '_elementor_global_class_usage_indexed_preview', '1'),
(8796, 738, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(8797, 738, '_elementor_data', '[{\"id\":\"930c0f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e9b1af4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40}},\"elements\":[{\"id\":\"88a3c22\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":616,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mental-contact-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"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\":\"f3587d7\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[{\"id\":\"9d88ee6\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d778882\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f882cf8\",\"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\":\"09:30 AM - 04:30 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sat - Sun\",\"highlight\":\"\",\"highlight_color\":\"#bc1705\",\"_id\":\"5b4030f\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\",\"closed\":\"\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"rows_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"5\",\"bottom\":\"8\",\"left\":\"5\",\"isLinked\":false},\"rows_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"hours_typography_typography\":\"custom\",\"hours_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"hours_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"327b8dd\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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:\\/\\/clinikehr.com\\/book\\/optimal-mental-health-and-wellness-group\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"745f907\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"cafb309\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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=astglobalcolor6\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"636d4e2\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d38a337\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"info@optimalmentalwellness.org\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3041, 269, '_wp_page_template', 'elementor_header_footer'),
(3042, 269, '_elementor_edit_mode', 'builder'),
(3043, 269, '_elementor_template_type', 'wp-page'),
(3044, 269, '_elementor_version', '4.1.3'),
(3045, 269, '_elementor_pro_version', '4.1.1'),
(3046, 269, '_elementor_global_class_usage_indexed', '1'),
(3047, 269, '_elementor_global_class_usage_indexed_preview', '1'),
(3048, 269, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3049, 269, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_rand_opacity\":\"true\",\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3051, 269, '_elementor_page_settings', 'a:0:{}'),
(3056, 270, '_elementor_template_type', 'wp-page'),
(3057, 270, '_elementor_version', '4.1.3'),
(3058, 270, '_elementor_pro_version', '4.1.1'),
(3059, 270, '_elementor_global_class_usage_indexed', '1'),
(3060, 270, '_elementor_global_class_usage_indexed_preview', '1'),
(3061, 270, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:6235a6c47f65a3aca2fc5a7c56ad64e4'),
(3062, 270, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(7857, 670, '_elementor_page_settings', 'a:0:{}'),
(7858, 671, '_wp_page_template', 'elementor_header_footer'),
(7859, 671, '_elementor_edit_mode', 'builder'),
(7860, 671, '_elementor_template_type', 'wp-page'),
(7861, 671, '_elementor_version', '4.1.3'),
(7862, 671, '_elementor_pro_version', '4.1.1'),
(7863, 671, '_elementor_global_class_usage_indexed', '1'),
(7864, 671, '_elementor_global_class_usage_indexed_preview', '1'),
(7865, 671, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7866, 671, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":532,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":431,\"sizes\":[]}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"px\",\"size\":223,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"},\"hide_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\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(7802, 666, '_wp_page_template', 'elementor_header_footer'),
(7803, 666, '_elementor_edit_mode', 'builder'),
(7804, 666, '_elementor_template_type', 'wp-page'),
(7805, 666, '_elementor_version', '4.1.3'),
(7806, 666, '_elementor_pro_version', '4.1.1'),
(7807, 666, '_elementor_global_class_usage_indexed', '1'),
(7808, 666, '_elementor_global_class_usage_indexed_preview', '1'),
(7809, 666, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7810, 666, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":532,\"sizes\":[]}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"},\"hide_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\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(3111, 274, '_wp_page_template', 'elementor_header_footer'),
(3112, 274, '_elementor_edit_mode', 'builder'),
(3113, 274, '_elementor_template_type', 'wp-page'),
(3114, 274, '_elementor_version', '4.1.3'),
(3115, 274, '_elementor_pro_version', '4.1.1'),
(3116, 274, '_elementor_global_class_usage_indexed', '1'),
(3117, 274, '_elementor_global_class_usage_indexed_preview', '1'),
(3118, 274, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3119, 274, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"pp_display_conditions\":[{\"_id\":\"9861331\"}]},\"elements\":[],\"isInner\":false}]'),
(3081, 271, '_elementor_page_settings', 'a:0:{}'),
(8098, 685, '_wp_page_template', 'elementor_header_footer'),
(8099, 685, '_elementor_edit_mode', 'builder'),
(8100, 685, '_elementor_template_type', 'wp-page'),
(8101, 685, '_elementor_version', '4.1.3'),
(8102, 685, '_elementor_pro_version', '4.1.1'),
(8103, 685, '_elementor_global_class_usage_indexed', '1'),
(8104, 685, '_elementor_global_class_usage_indexed_preview', '1'),
(8105, 685, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8106, 685, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":532,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":431,\"sizes\":[]}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"px\",\"size\":223,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"common_image_animation\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"},\"hide_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\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(3084, 272, '_wp_page_template', 'elementor_header_footer'),
(3085, 272, '_elementor_edit_mode', 'builder'),
(3086, 272, '_elementor_template_type', 'wp-page'),
(3087, 272, '_elementor_version', '4.1.3'),
(3088, 272, '_elementor_pro_version', '4.1.1'),
(3089, 272, '_elementor_global_class_usage_indexed', '1'),
(3090, 272, '_elementor_global_class_usage_indexed_preview', '1'),
(3091, 272, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3092, 272, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3094, 272, '_elementor_page_settings', 'a:0:{}'),
(3097, 273, '_wp_page_template', 'elementor_header_footer'),
(3098, 273, '_elementor_edit_mode', 'builder'),
(3099, 273, '_elementor_template_type', 'wp-page'),
(3100, 273, '_elementor_version', '4.1.3'),
(3101, 273, '_elementor_pro_version', '4.1.1'),
(3102, 273, '_elementor_global_class_usage_indexed', '1'),
(3103, 273, '_elementor_global_class_usage_indexed_preview', '1'),
(3104, 273, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(3105, 273, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"pp_display_conditions\":[{\"_id\":\"9861331\"}]},\"elements\":[],\"isInner\":false}]'),
(3121, 274, '_elementor_page_settings', 'a:0:{}'),
(3122, 275, '_wp_page_template', 'elementor_header_footer'),
(3123, 275, '_elementor_edit_mode', 'builder'),
(3124, 275, '_elementor_template_type', 'wp-page'),
(3125, 275, '_elementor_version', '4.1.3'),
(3126, 275, '_elementor_pro_version', '4.1.1'),
(3127, 275, '_elementor_global_class_usage_indexed', '1'),
(3128, 275, '_elementor_global_class_usage_indexed_preview', '1'),
(3129, 275, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3130, 275, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"pp_display_conditions\":[{\"_id\":\"9861331\"}]},\"elements\":[],\"isInner\":false}]'),
(3132, 275, '_elementor_page_settings', 'a:0:{}'),
(3133, 276, '_wp_page_template', 'elementor_header_footer'),
(3134, 276, '_elementor_edit_mode', 'builder'),
(3135, 276, '_elementor_template_type', 'wp-page'),
(3136, 276, '_elementor_version', '4.1.3'),
(3137, 276, '_elementor_pro_version', '4.1.1'),
(3138, 276, '_elementor_global_class_usage_indexed', '1'),
(3139, 276, '_elementor_global_class_usage_indexed_preview', '1'),
(3140, 276, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(3141, 276, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}]},\"elements\":[{\"id\":\"03010df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3145, 277, '_wp_page_template', 'elementor_header_footer'),
(3146, 277, '_elementor_edit_mode', 'builder'),
(3147, 277, '_elementor_template_type', 'wp-page'),
(3148, 277, '_elementor_version', '4.1.3'),
(3149, 277, '_elementor_pro_version', '4.1.1');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3150, 277, '_elementor_global_class_usage_indexed', '1'),
(3151, 277, '_elementor_global_class_usage_indexed_preview', '1'),
(3152, 277, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(3153, 277, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}]},\"elements\":[{\"id\":\"03010df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3155, 277, '_elementor_page_settings', 'a:0:{}'),
(3156, 278, '_wp_page_template', 'elementor_header_footer'),
(3157, 278, '_elementor_edit_mode', 'builder'),
(3158, 278, '_elementor_template_type', 'wp-page'),
(3159, 278, '_elementor_version', '4.1.3'),
(3160, 278, '_elementor_pro_version', '4.1.1'),
(3161, 278, '_elementor_global_class_usage_indexed', '1'),
(3162, 278, '_elementor_global_class_usage_indexed_preview', '1'),
(3163, 278, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3164, 278, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}]},\"elements\":[{\"id\":\"03010df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3166, 278, '_elementor_page_settings', 'a:0:{}'),
(3167, 279, '_wp_page_template', 'elementor_header_footer'),
(3168, 279, '_elementor_edit_mode', 'builder'),
(3169, 279, '_elementor_template_type', 'wp-page'),
(3170, 279, '_elementor_version', '4.1.3'),
(3171, 279, '_elementor_pro_version', '4.1.1'),
(3172, 279, '_elementor_global_class_usage_indexed', '1'),
(3173, 279, '_elementor_global_class_usage_indexed_preview', '1'),
(3174, 279, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3175, 279, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}]},\"elements\":[{\"id\":\"03010df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"acad0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Mental Health Support\",\"pp_display_conditions\":[{\"_id\":\"041cea8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3179, 280, '_wp_page_template', 'elementor_header_footer'),
(3180, 280, '_elementor_edit_mode', 'builder'),
(3181, 280, '_elementor_template_type', 'wp-page'),
(3182, 280, '_elementor_version', '4.1.3'),
(3183, 280, '_elementor_pro_version', '4.1.1'),
(3184, 280, '_elementor_global_class_usage_indexed', '1'),
(3185, 280, '_elementor_global_class_usage_indexed_preview', '1'),
(3186, 280, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3187, 280, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}]},\"elements\":[{\"id\":\"03010df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"acad0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Mental Health Support\",\"pp_display_conditions\":[{\"_id\":\"041cea8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3189, 280, '_elementor_page_settings', 'a:0:{}'),
(3190, 281, '_wp_page_template', 'elementor_header_footer'),
(3191, 281, '_elementor_edit_mode', 'builder'),
(3192, 281, '_elementor_template_type', 'wp-page'),
(3193, 281, '_elementor_version', '4.1.3'),
(3194, 281, '_elementor_pro_version', '4.1.1'),
(3195, 281, '_elementor_global_class_usage_indexed', '1'),
(3196, 281, '_elementor_global_class_usage_indexed_preview', '1'),
(3197, 281, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3198, 281, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}]},\"elements\":[{\"id\":\"03010df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"acad0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Mental Health Support\",\"pp_display_conditions\":[{\"_id\":\"041cea8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3200, 281, '_elementor_page_settings', 'a:0:{}'),
(3201, 282, '_wp_page_template', 'elementor_header_footer'),
(3202, 282, '_elementor_edit_mode', 'builder'),
(3203, 282, '_elementor_template_type', 'wp-page'),
(3204, 282, '_elementor_version', '4.1.3'),
(3205, 282, '_elementor_pro_version', '4.1.1'),
(3206, 282, '_elementor_global_class_usage_indexed', '1'),
(3207, 282, '_elementor_global_class_usage_indexed_preview', '1'),
(3208, 282, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3209, 282, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}]},\"elements\":[{\"id\":\"03010df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"acad0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Mental Health Support\",\"pp_display_conditions\":[{\"_id\":\"041cea8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30b7258\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"position\":\"inline-start\",\"pp_display_conditions\":[{\"_id\":\"eedad94\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3213, 283, '_wp_page_template', 'elementor_header_footer'),
(3214, 283, '_elementor_edit_mode', 'builder'),
(3215, 283, '_elementor_template_type', 'wp-page'),
(3216, 283, '_elementor_version', '4.1.3'),
(3217, 283, '_elementor_pro_version', '4.1.1'),
(3218, 283, '_elementor_global_class_usage_indexed', '1'),
(3219, 283, '_elementor_global_class_usage_indexed_preview', '1'),
(3220, 283, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3221, 283, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}]},\"elements\":[{\"id\":\"03010df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"acad0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Mental Health Support\",\"pp_display_conditions\":[{\"_id\":\"041cea8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30b7258\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"position\":\"inline-start\",\"pp_display_conditions\":[{\"_id\":\"eedad94\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3223, 283, '_elementor_page_settings', 'a:0:{}'),
(3224, 284, '_wp_page_template', 'elementor_header_footer'),
(3225, 284, '_elementor_edit_mode', 'builder'),
(3226, 284, '_elementor_template_type', 'wp-page'),
(3227, 284, '_elementor_version', '4.1.3'),
(3228, 284, '_elementor_pro_version', '4.1.1'),
(3229, 284, '_elementor_global_class_usage_indexed', '1'),
(3230, 284, '_elementor_global_class_usage_indexed_preview', '1'),
(3231, 284, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3232, 284, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}]},\"elements\":[{\"id\":\"03010df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"acad0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Mental Health Support\",\"pp_display_conditions\":[{\"_id\":\"041cea8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30b7258\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"position\":\"inline-start\",\"pp_display_conditions\":[{\"_id\":\"eedad94\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3234, 284, '_elementor_page_settings', 'a:0:{}'),
(3235, 285, '_wp_page_template', 'elementor_header_footer'),
(3236, 285, '_elementor_edit_mode', 'builder'),
(3237, 285, '_elementor_template_type', 'wp-page'),
(3238, 285, '_elementor_version', '4.1.3'),
(3239, 285, '_elementor_pro_version', '4.1.1'),
(3240, 285, '_elementor_global_class_usage_indexed', '1'),
(3241, 285, '_elementor_global_class_usage_indexed_preview', '1'),
(3242, 285, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3243, 285, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"acad0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Mental Health Support\",\"pp_display_conditions\":[{\"_id\":\"041cea8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3247, 286, '_wp_page_template', 'elementor_header_footer'),
(3248, 286, '_elementor_edit_mode', 'builder'),
(3249, 286, '_elementor_template_type', 'wp-page'),
(3250, 286, '_elementor_version', '4.1.3'),
(3251, 286, '_elementor_pro_version', '4.1.1'),
(3252, 286, '_elementor_global_class_usage_indexed', '1'),
(3253, 286, '_elementor_global_class_usage_indexed_preview', '1'),
(3254, 286, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3255, 286, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"acad0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Mental Health Support\",\"pp_display_conditions\":[{\"_id\":\"041cea8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3257, 286, '_elementor_page_settings', 'a:0:{}'),
(3258, 287, '_wp_page_template', 'elementor_header_footer'),
(3259, 287, '_elementor_edit_mode', 'builder'),
(3260, 287, '_elementor_template_type', 'wp-page'),
(3261, 287, '_elementor_version', '4.1.3'),
(3262, 287, '_elementor_pro_version', '4.1.1'),
(3263, 287, '_elementor_global_class_usage_indexed', '1'),
(3264, 287, '_elementor_global_class_usage_indexed_preview', '1'),
(3265, 287, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3266, 287, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"acad0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Mental Health Support\",\"pp_display_conditions\":[{\"_id\":\"041cea8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3268, 287, '_elementor_page_settings', 'a:0:{}'),
(3269, 288, '_wp_page_template', 'elementor_header_footer'),
(3270, 288, '_elementor_edit_mode', 'builder'),
(3271, 288, '_elementor_template_type', 'wp-page'),
(3272, 288, '_elementor_version', '4.1.3'),
(3273, 288, '_elementor_pro_version', '4.1.1'),
(3274, 288, '_elementor_global_class_usage_indexed', '1'),
(3275, 288, '_elementor_global_class_usage_indexed_preview', '1'),
(3276, 288, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3277, 288, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"acad0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Mental Health Support\",\"pp_display_conditions\":[{\"_id\":\"041cea8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3281, 289, '_wp_page_template', 'elementor_header_footer'),
(3282, 289, '_elementor_edit_mode', 'builder'),
(3283, 289, '_elementor_template_type', 'wp-page'),
(3284, 289, '_elementor_version', '4.1.3'),
(3285, 289, '_elementor_pro_version', '4.1.1'),
(3286, 289, '_elementor_global_class_usage_indexed', '1'),
(3287, 289, '_elementor_global_class_usage_indexed_preview', '1'),
(3288, 289, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3289, 289, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"acad0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Mental Health Support\",\"pp_display_conditions\":[{\"_id\":\"041cea8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3291, 289, '_elementor_page_settings', 'a:0:{}'),
(3292, 290, '_wp_page_template', 'elementor_header_footer'),
(3293, 290, '_elementor_edit_mode', 'builder'),
(3294, 290, '_elementor_template_type', 'wp-page'),
(3295, 290, '_elementor_version', '4.1.3'),
(3296, 290, '_elementor_pro_version', '4.1.1'),
(3297, 290, '_elementor_global_class_usage_indexed', '1'),
(3298, 290, '_elementor_global_class_usage_indexed_preview', '1'),
(3299, 290, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3300, 290, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"acad0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Mental Health Support\",\"pp_display_conditions\":[{\"_id\":\"041cea8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3302, 290, '_elementor_page_settings', 'a:0:{}'),
(3303, 291, '_wp_page_template', 'elementor_header_footer'),
(3304, 291, '_elementor_edit_mode', 'builder'),
(3305, 291, '_elementor_template_type', 'wp-page'),
(3306, 291, '_elementor_version', '4.1.3'),
(3307, 291, '_elementor_pro_version', '4.1.1'),
(3308, 291, '_elementor_global_class_usage_indexed', '1'),
(3309, 291, '_elementor_global_class_usage_indexed_preview', '1'),
(3310, 291, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3311, 291, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"acad0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Mental Health Support\",\"pp_display_conditions\":[{\"_id\":\"041cea8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3317, 292, '_wp_page_template', 'elementor_header_footer'),
(3318, 292, '_elementor_edit_mode', 'builder'),
(3319, 292, '_elementor_template_type', 'wp-page'),
(3320, 292, '_elementor_version', '4.1.3'),
(3321, 292, '_elementor_pro_version', '4.1.1'),
(3322, 292, '_elementor_global_class_usage_indexed', '1'),
(3323, 292, '_elementor_global_class_usage_indexed_preview', '1'),
(3324, 292, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3325, 292, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"acad0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Mental Health Support\",\"pp_display_conditions\":[{\"_id\":\"041cea8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3357, 295, '_wp_page_template', 'elementor_header_footer'),
(3358, 295, '_elementor_edit_mode', 'builder'),
(3359, 295, '_elementor_template_type', 'wp-page'),
(3360, 295, '_elementor_version', '4.1.3'),
(3361, 295, '_elementor_pro_version', '4.1.1'),
(3362, 295, '_elementor_global_class_usage_indexed', '1'),
(3363, 295, '_elementor_global_class_usage_indexed_preview', '1'),
(3364, 295, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3365, 295, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"acad0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Mental Health Support\",\"pp_display_conditions\":[{\"_id\":\"041cea8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3327, 292, '_elementor_page_settings', 'a:0:{}'),
(8095, 684, '_elementor_page_settings', 'a:0:{}'),
(3330, 293, '_wp_page_template', 'elementor_header_footer'),
(3331, 293, '_elementor_edit_mode', 'builder'),
(3332, 293, '_elementor_template_type', 'wp-page'),
(3333, 293, '_elementor_version', '4.1.3'),
(3334, 293, '_elementor_pro_version', '4.1.1'),
(3335, 293, '_elementor_global_class_usage_indexed', '1'),
(3336, 293, '_elementor_global_class_usage_indexed_preview', '1'),
(3337, 293, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3338, 293, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"acad0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Mental Health Support\",\"pp_display_conditions\":[{\"_id\":\"041cea8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3340, 293, '_elementor_page_settings', 'a:0:{}'),
(3343, 294, '_wp_page_template', 'elementor_header_footer'),
(3344, 294, '_elementor_edit_mode', 'builder'),
(3345, 294, '_elementor_template_type', 'wp-page'),
(3346, 294, '_elementor_version', '4.1.3'),
(3347, 294, '_elementor_pro_version', '4.1.1'),
(3348, 294, '_elementor_global_class_usage_indexed', '1'),
(3349, 294, '_elementor_global_class_usage_indexed_preview', '1'),
(3350, 294, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3351, 294, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"acad0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Mental Health Support\",\"pp_display_conditions\":[{\"_id\":\"041cea8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3367, 295, '_elementor_page_settings', 'a:0:{}'),
(3368, 296, '_wp_page_template', 'elementor_header_footer'),
(3369, 296, '_elementor_edit_mode', 'builder'),
(3370, 296, '_elementor_template_type', 'wp-page'),
(3371, 296, '_elementor_version', '4.1.3'),
(3372, 296, '_elementor_pro_version', '4.1.1'),
(3373, 296, '_elementor_global_class_usage_indexed', '1'),
(3374, 296, '_elementor_global_class_usage_indexed_preview', '1'),
(3375, 296, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3376, 296, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"acad0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Mental Health Support\",\"pp_display_conditions\":[{\"_id\":\"041cea8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3378, 296, '_elementor_page_settings', 'a:0:{}'),
(3379, 297, '_wp_page_template', 'elementor_header_footer'),
(3380, 297, '_elementor_edit_mode', 'builder'),
(3381, 297, '_elementor_template_type', 'wp-page'),
(3382, 297, '_elementor_version', '4.1.3'),
(3383, 297, '_elementor_pro_version', '4.1.1'),
(3384, 297, '_elementor_global_class_usage_indexed', '1'),
(3385, 297, '_elementor_global_class_usage_indexed_preview', '1'),
(3386, 297, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3387, 297, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"acad0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Mental Health Support\",\"pp_display_conditions\":[{\"_id\":\"041cea8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3399, 300, '_wp_page_template', 'elementor_header_footer'),
(3400, 300, '_elementor_edit_mode', 'builder'),
(3401, 300, '_elementor_template_type', 'wp-page'),
(3402, 300, '_elementor_version', '4.1.3'),
(3403, 300, '_elementor_pro_version', '4.1.1'),
(3404, 300, '_elementor_global_class_usage_indexed', '1'),
(3405, 300, '_elementor_global_class_usage_indexed_preview', '1'),
(3406, 300, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3407, 300, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"acad0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Mental Health Support\",\"pp_display_conditions\":[{\"_id\":\"041cea8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3461, 305, '_wp_page_template', 'elementor_header_footer'),
(3439, 303, '_wp_page_template', 'elementor_header_footer'),
(3440, 303, '_elementor_edit_mode', 'builder'),
(3441, 303, '_elementor_template_type', 'wp-page'),
(3442, 303, '_elementor_version', '4.1.3'),
(3443, 303, '_elementor_pro_version', '4.1.1'),
(3444, 303, '_elementor_global_class_usage_indexed', '1'),
(3445, 303, '_elementor_global_class_usage_indexed_preview', '1'),
(3446, 303, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3447, 303, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"acad0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Mental Health Support\",\"pp_display_conditions\":[{\"_id\":\"041cea8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3393, 298, '_wp_attached_file', '2026/06/tool_15518412.svg'),
(3394, 298, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:1365;s:5:\"width\";i:128;s:6:\"height\";i:128;}'),
(3396, 299, '_wp_attached_file', '2026/06/stethoscope_2666276.svg'),
(3397, 299, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:3184;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(7949, 676, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(8741, 414, '_elementor_page_settings', 'a:0:{}'),
(8742, 414, '_elementor_controls_usage', 'a:7:{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: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:17:\"pp-business-hours\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:18:\"section_price_menu\";a:2:{s:14:\"business_hours\";i:1;s:21:\"business_hours_custom\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_rows_style\";a:1:{s:12:\"rows_padding\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(3409, 300, '_elementor_page_settings', 'a:0:{}'),
(8085, 684, '_wp_page_template', 'elementor_header_footer'),
(8086, 684, '_elementor_edit_mode', 'builder'),
(8087, 684, '_elementor_template_type', 'wp-page'),
(8088, 684, '_elementor_version', '4.1.3'),
(8089, 684, '_elementor_pro_version', '4.1.1'),
(8090, 684, '_elementor_global_class_usage_indexed', '1'),
(8091, 684, '_elementor_global_class_usage_indexed_preview', '1'),
(8092, 684, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8093, 684, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":532,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":431,\"sizes\":[]}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"px\",\"size\":223,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"},\"hide_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\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(3412, 301, '_wp_page_template', 'elementor_header_footer'),
(3413, 301, '_elementor_edit_mode', 'builder'),
(3414, 301, '_elementor_template_type', 'wp-page'),
(3415, 301, '_elementor_version', '4.1.3'),
(3416, 301, '_elementor_pro_version', '4.1.1'),
(3417, 301, '_elementor_global_class_usage_indexed', '1'),
(3418, 301, '_elementor_global_class_usage_indexed_preview', '1'),
(3419, 301, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3420, 301, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"acad0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Mental Health Support\",\"pp_display_conditions\":[{\"_id\":\"041cea8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3422, 301, '_elementor_page_settings', 'a:0:{}'),
(8772, 736, '_elementor_page_settings', 'a:0:{}'),
(8082, 683, '_elementor_page_settings', 'a:0:{}'),
(3425, 302, '_wp_page_template', 'elementor_header_footer'),
(3426, 302, '_elementor_edit_mode', 'builder'),
(3427, 302, '_elementor_template_type', 'wp-page'),
(3428, 302, '_elementor_version', '4.1.3'),
(3429, 302, '_elementor_pro_version', '4.1.1'),
(3430, 302, '_elementor_global_class_usage_indexed', '1'),
(3431, 302, '_elementor_global_class_usage_indexed_preview', '1'),
(3432, 302, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3433, 302, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"acad0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Mental Health Support\",\"pp_display_conditions\":[{\"_id\":\"041cea8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8729, 734, '_elementor_source', 'post'),
(8730, 734, '_elementor_edit_mode', 'builder'),
(8731, 734, '_elementor_template_type', 'footer'),
(8732, 734, '_elementor_version', '4.1.3'),
(8733, 734, '_elementor_pro_version', '4.1.1'),
(8072, 683, '_wp_page_template', 'elementor_header_footer'),
(8073, 683, '_elementor_edit_mode', 'builder'),
(8074, 683, '_elementor_template_type', 'wp-page'),
(8075, 683, '_elementor_version', '4.1.3'),
(8076, 683, '_elementor_pro_version', '4.1.1'),
(8077, 683, '_elementor_global_class_usage_indexed', '1'),
(8078, 683, '_elementor_global_class_usage_indexed_preview', '1'),
(8079, 683, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8080, 683, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":532,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":431,\"sizes\":[]}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"px\",\"size\":223,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"},\"hide_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\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(3449, 303, '_elementor_page_settings', 'a:0:{}'),
(3450, 304, '_wp_page_template', 'elementor_header_footer'),
(3451, 304, '_elementor_edit_mode', 'builder'),
(3452, 304, '_elementor_template_type', 'wp-page'),
(3453, 304, '_elementor_version', '4.1.3'),
(3454, 304, '_elementor_pro_version', '4.1.1'),
(3455, 304, '_elementor_global_class_usage_indexed', '1'),
(3456, 304, '_elementor_global_class_usage_indexed_preview', '1'),
(3457, 304, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3458, 304, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"acad0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Mental Health Support\",\"pp_display_conditions\":[{\"_id\":\"041cea8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3460, 304, '_elementor_page_settings', 'a:0:{}'),
(3462, 305, '_elementor_edit_mode', 'builder'),
(3463, 305, '_elementor_template_type', 'wp-page'),
(3464, 305, '_elementor_version', '4.1.3'),
(3465, 305, '_elementor_pro_version', '4.1.1'),
(3466, 305, '_elementor_global_class_usage_indexed', '1'),
(3467, 305, '_elementor_global_class_usage_indexed_preview', '1'),
(3468, 305, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3469, 305, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"acad0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Mental Health Support\",\"pp_display_conditions\":[{\"_id\":\"041cea8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3476, 307, '_wp_page_template', 'elementor_header_footer'),
(3477, 307, '_elementor_edit_mode', 'builder'),
(3478, 307, '_elementor_template_type', 'wp-page'),
(3479, 307, '_elementor_version', '4.1.3'),
(3480, 307, '_elementor_pro_version', '4.1.1'),
(3481, 307, '_elementor_global_class_usage_indexed', '1'),
(3482, 307, '_elementor_global_class_usage_indexed_preview', '1'),
(3483, 307, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3484, 307, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"acad0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Mental Health Support\",\"pp_display_conditions\":[{\"_id\":\"041cea8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3473, 306, '_wp_attached_file', '2026/06/brainstorm_1786985.svg'),
(3474, 306, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:11514;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(3486, 307, '_elementor_page_settings', 'a:0:{}'),
(3487, 308, '_wp_page_template', 'elementor_header_footer'),
(3488, 308, '_elementor_edit_mode', 'builder'),
(3489, 308, '_elementor_template_type', 'wp-page'),
(3490, 308, '_elementor_version', '4.1.3'),
(3491, 308, '_elementor_pro_version', '4.1.1'),
(3492, 308, '_elementor_global_class_usage_indexed', '1'),
(3493, 308, '_elementor_global_class_usage_indexed_preview', '1'),
(3494, 308, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3495, 308, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"acad0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Mental Health Support\",\"pp_display_conditions\":[{\"_id\":\"041cea8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3497, 308, '_elementor_page_settings', 'a:0:{}'),
(3498, 309, '_wp_page_template', 'elementor_header_footer'),
(3499, 309, '_elementor_edit_mode', 'builder'),
(3500, 309, '_elementor_template_type', 'wp-page'),
(3501, 309, '_elementor_version', '4.1.3'),
(3502, 309, '_elementor_pro_version', '4.1.1'),
(3503, 309, '_elementor_global_class_usage_indexed', '1'),
(3504, 309, '_elementor_global_class_usage_indexed_preview', '1'),
(3505, 309, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3506, 309, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"acad0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Mental Health Support\",\"pp_display_conditions\":[{\"_id\":\"041cea8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3513, 311, '_wp_page_template', 'elementor_header_footer'),
(3514, 311, '_elementor_edit_mode', 'builder'),
(3515, 311, '_elementor_template_type', 'wp-page'),
(3516, 311, '_elementor_version', '4.1.3'),
(3517, 311, '_elementor_pro_version', '4.1.1'),
(3518, 311, '_elementor_global_class_usage_indexed', '1'),
(3519, 311, '_elementor_global_class_usage_indexed_preview', '1'),
(3520, 311, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3521, 311, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"acad0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Mental Health Support\",\"pp_display_conditions\":[{\"_id\":\"041cea8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3510, 310, '_wp_attached_file', '2026/06/music_14332530.svg'),
(3511, 310, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:2663;s:5:\"width\";i:64;s:6:\"height\";i:64;}'),
(6367, 555, '_wp_page_template', 'elementor_header_footer'),
(6368, 555, '_elementor_global_class_usage_indexed', '1'),
(6369, 555, '_elementor_edit_mode', 'builder'),
(6370, 555, '_elementor_template_type', 'wp-page'),
(6371, 555, '_elementor_version', '4.1.3'),
(6372, 555, '_elementor_pro_version', '4.1.1'),
(6373, 555, '_elementor_global_class_usage_indexed_preview', '1'),
(6374, 555, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6375, 555, '_elementor_data', '[{\"id\":\"da73fa4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d02edf6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4e16dda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31fbd95\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fea417b\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]}},\"elements\":[{\"id\":\"4d9a2fd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d6765c8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bfc4e15\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b820045\"}],\"pp_display_conditions\":[{\"_id\":\"e129900\",\"pp_condition_device_type_value\":\"mobile\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fdb1f51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently Asked Questions \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5c91e8e\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d893c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please reach us at <a href=\\\"mailto:info@optimalmentalwellness.org\\\">info@optimalmentalwellness.org<\\/a> if you cannot find an answer to your question.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e110c47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"02985d8\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Do you accept insurance?\",\"_id\":\"235e06a\",\"faq_answer\":\"<p>Our office is currently in network with:<\\/p><ul><li>Aetna<\\/li><li>Cigna<\\/li><li>Oscar<\\/li><li>United Health Care<\\/li><\\/ul><p>** All appointments utilizing insurance, must have insurance submitted and verified two days prior to appointment date. There is no exception.**<\\/p>\"},{\"tab_title\":\"Do you provide self pay options?\",\"_id\":\"3543826\",\"faq_answer\":\"<p>No Insurance? No Problem.<\\/p><p>Cash Pay rates are as followed:<\\/p><ul><li>$200 Initial evaluation 60 minutes (Mandatory for all NEW patients)<\\/li><li>$125 Follow-up appt 30 minutes (medication adjustments\\/refills)<\\/li><li>$65 Psychotherapy add on to follow up 45 mins<\\/li><li>$45 Psychotherapy add on to follow up 30 mins<\\/li><li>$135 Psychotherapy 50 mins<\\/li><\\/ul>\"},{\"tab_title\":\"Do you prescribe controlled substances?\",\"faq_answer\":\"<p>We do prescribe some controlled substances depending on your diagnosis.<\\/p>\",\"_id\":\"6f4f62a\"},{\"tab_title\":\"Do you accept students for clinical hours?\",\"faq_answer\":\"<p>We do prescribe some controlled substances depending on your diagnosis.<\\/p>\",\"_id\":\"0758f4e\"}],\"faqs_items_bottom_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"faq_items_border_color\":\"#E3E9F0\",\"faq_items_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"question_bg_color\":\"#FFFFFF\",\"question_typography_typography\":\"custom\",\"question_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"question_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"answer_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"0541a67\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"question_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"faq_items_border_color\":\"\",\"question_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"question_bg_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"question_text_color_active\":\"globals\\/colors?id=astglobalcolor4\",\"question_bg_color_active\":\"globals\\/colors?id=astglobalcolor0\",\"answer_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"question_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-faq\"}],\"isInner\":true}],\"isInner\":true}]'),
(3523, 311, '_elementor_page_settings', 'a:0:{}'),
(3524, 312, '_wp_page_template', 'elementor_header_footer'),
(3525, 312, '_elementor_edit_mode', 'builder'),
(3526, 312, '_elementor_template_type', 'wp-page'),
(3527, 312, '_elementor_version', '4.1.3'),
(3528, 312, '_elementor_pro_version', '4.1.1'),
(3529, 312, '_elementor_global_class_usage_indexed', '1'),
(3530, 312, '_elementor_global_class_usage_indexed_preview', '1'),
(3531, 312, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3532, 312, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"acad0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Mental Health Support\",\"pp_display_conditions\":[{\"_id\":\"041cea8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3534, 312, '_elementor_page_settings', 'a:0:{}'),
(3575, 316, '_wp_page_template', 'elementor_header_footer'),
(3535, 313, '_wp_page_template', 'elementor_header_footer'),
(3536, 313, '_elementor_edit_mode', 'builder'),
(3537, 313, '_elementor_template_type', 'wp-page'),
(3538, 313, '_elementor_version', '4.1.3'),
(3539, 313, '_elementor_pro_version', '4.1.1'),
(3540, 313, '_elementor_global_class_usage_indexed', '1'),
(3541, 313, '_elementor_global_class_usage_indexed_preview', '1'),
(3542, 313, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3543, 313, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"acad0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Mental Health Support\",\"pp_display_conditions\":[{\"_id\":\"041cea8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3576, 316, '_elementor_edit_mode', 'builder'),
(3549, 314, '_wp_page_template', 'elementor_header_footer'),
(3550, 314, '_elementor_edit_mode', 'builder'),
(3551, 314, '_elementor_template_type', 'wp-page'),
(3552, 314, '_elementor_version', '4.1.3'),
(3553, 314, '_elementor_pro_version', '4.1.1'),
(3554, 314, '_elementor_global_class_usage_indexed', '1'),
(3555, 314, '_elementor_global_class_usage_indexed_preview', '1'),
(3556, 314, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3557, 314, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"acad0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Mental Health Support\",\"pp_display_conditions\":[{\"_id\":\"041cea8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3654, 322, '_elementor_global_class_usage_indexed', '1'),
(3655, 322, '_elementor_global_class_usage_indexed_preview', '1'),
(3656, 322, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(3619, 320, '_wp_page_template', 'elementor_header_footer'),
(3593, 318, '_wp_page_template', 'elementor_header_footer'),
(3594, 318, '_elementor_edit_mode', 'builder'),
(3595, 318, '_elementor_template_type', 'wp-page'),
(3596, 318, '_elementor_version', '4.1.3'),
(3597, 318, '_elementor_pro_version', '4.1.1'),
(3598, 318, '_elementor_global_class_usage_indexed', '1'),
(3599, 318, '_elementor_global_class_usage_indexed_preview', '1'),
(3600, 318, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3601, 318, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3688, 325, '_wp_page_template', 'elementor_header_footer'),
(3689, 325, '_elementor_edit_mode', 'builder'),
(3690, 325, '_elementor_template_type', 'wp-page'),
(3649, 322, '_wp_page_template', 'elementor_header_footer'),
(3650, 322, '_elementor_edit_mode', 'builder'),
(3651, 322, '_elementor_template_type', 'wp-page'),
(3652, 322, '_elementor_version', '4.1.3'),
(3653, 322, '_elementor_pro_version', '4.1.1'),
(3559, 314, '_elementor_page_settings', 'a:0:{}'),
(3562, 315, '_wp_page_template', 'elementor_header_footer'),
(3563, 315, '_elementor_edit_mode', 'builder'),
(3564, 315, '_elementor_template_type', 'wp-page'),
(3565, 315, '_elementor_version', '4.1.3'),
(3566, 315, '_elementor_pro_version', '4.1.1'),
(3567, 315, '_elementor_global_class_usage_indexed', '1'),
(3568, 315, '_elementor_global_class_usage_indexed_preview', '1'),
(3569, 315, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3570, 315, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"acad0fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency Mental Health Support\",\"pp_display_conditions\":[{\"_id\":\"041cea8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3572, 315, '_elementor_page_settings', 'a:0:{}'),
(8745, 735, '_elementor_source', 'post'),
(8746, 735, '_elementor_edit_mode', 'builder'),
(8747, 735, '_elementor_template_type', 'header'),
(8748, 735, '_elementor_version', '4.1.3'),
(8749, 735, '_elementor_pro_version', '4.1.1'),
(8750, 735, '_elementor_global_class_usage_indexed', '1'),
(8751, 735, '_elementor_global_class_usage_indexed_preview', '1'),
(8752, 735, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(8753, 735, '_wp_page_template', 'default'),
(8754, 735, '_elementor_data', '[{\"id\":\"7cd2407b\",\"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},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4b376675\",\"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\":\"14e415c9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@optimalmentalwellness.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@optimalmentalwellness.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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5137f99d\",\"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\":\"416cdcb9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"877 296 7846\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:8772967846\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=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\":\"6090cb25\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"background_background\":\"classic\",\"z_index\":99,\"css_classes\":\"header_sections\",\"sticky\":\"top\",\"sticky_effects_offset\":50,\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"42e85872\",\"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\":\"5d51e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Optimal-Mental-Health-And-Wellness-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":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\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_position\":\"absolute\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"_offset_x_widescreen\":{\"size\":-1,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-1,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"388619a3\",\"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\":\"2a70cfde\",\"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\":30,\"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\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"500\",\"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=astglobalcolor6\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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=astglobalcolor6\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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=astglobalcolor6\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor6\",\"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\":\"ca7841b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/clinikehr.com\\/book\\/optimal-mental-health-and-wellness-group\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"590be00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"454cd36b\",\"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\":432,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Mental-Health-And-Wellness-av.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.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\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"5aa4113e\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"},{\"id\":\"b8f44e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"align\":\"center\",\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"pp_condition_key\":\"static_page\",\"pp_condition_static_page_value\":\"blog\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8938, 48, '_elementor_page_assets', 'a:2:{s:6:\"styles\";a:5:{i:0;s:16:\"widget-icon-list\";i:1;s:12:\"widget-image\";i:2;s:8:\"e-sticky\";i:3;s:18:\"e-animation-zoomIn\";i:4;s:14:\"widget-heading\";}s:7:\"scripts\";a:4:{i:0;s:18:\"elementor-frontend\";i:1;s:16:\"jquery-smartmenu\";i:2;s:16:\"pp-advanced-menu\";i:3;s:8:\"e-sticky\";}}'),
(8939, 414, '_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\";}}'),
(8940, 7, '_elementor_css', 'a:6:{s:4:\"time\";i:1784645557;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:\"\";}'),
(8941, 10, '_elementor_page_assets', 'a:2:{s:6:\"styles\";a:10:{i:0;s:14:\"widget-divider\";i:1;s:14:\"widget-heading\";i:2;s:18:\"e-animation-zoomIn\";i:3;s:8:\"e-swiper\";i:4;s:12:\"widget-image\";i:5;s:22:\"e-animation-fadeInLeft\";i:6;s:16:\"widget-icon-list\";i:7;s:23:\"e-animation-fadeInRight\";i:8;s:20:\"e-animation-fadeInUp\";i:9;s:12:\"widget-posts\";}s:7:\"scripts\";a:4:{i:0;s:18:\"elementor-frontend\";i:1;s:6:\"swiper\";i:2;s:18:\"powerpack-frontend\";i:3;s:12:\"imagesloaded\";}}'),
(8942, 10, '_elementor_css', 'a:6:{s:4:\"time\";i:1784645558;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:3:\"svg\";i:5;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(8943, 48, '_elementor_css', 'a:6:{s:4:\"time\";i:1784645558;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:\"5d51e937\";i:1;s:8:\"5aa4113e\";i:2;s:8:\"5aa4113e\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(8944, 414, '_elementor_css', 'a:6:{s:4:\"time\";i:1784645558;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:4;s:10:\"fa-regular\";i:5;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(8945, 48, '_elementor_element_cache', '{\"timeout\":1784731958,\"value\":{\"content\":\"<div class=\\\"elementor-element elementor-element-7cd2407b elementor-hidden-mobile_extra elementor-hidden-mobile e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"7cd2407b\\\" 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-4b376675 e-flex e-con-boxed e-con e-child\\\" data-id=\\\"4b376675\\\" 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-14e415c9 elementor-icon-list--layout-inline elementor-list-item-link-inline elementor-mobile_extra-align-center elementor-widget elementor-widget-icon-list\\\" data-id=\\\"14e415c9\\\" 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@optimalmentalwellness.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@optimalmentalwellness.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-5137f99d e-flex e-con-boxed e-con e-child\\\" data-id=\\\"5137f99d\\\" 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-416cdcb9 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=\\\"416cdcb9\\\" 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:8772967846\\\">\\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\\\">877 296 7846<\\/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-6090cb25 header_sections e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"6090cb25\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;sticky&quot;:&quot;top&quot;,&quot;sticky_effects_offset&quot;:50,&quot;sticky_on&quot;:[&quot;widescreen&quot;,&quot;desktop&quot;,&quot;tablet_extra&quot;,&quot;tablet&quot;,&quot;mobile_extra&quot;,&quot;mobile&quot;],&quot;sticky_offset&quot;:0,&quot;sticky_anchor_link_offset&quot;:0}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-42e85872 e-con-full e-flex e-con e-child\\\" data-id=\\\"42e85872\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t[elementor-element k=\\\"1103d769b8569c2f8bdcdce2a5e36940\\\" data=\\\"eyJpZCI6IjVkNTFlOTM3IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiaW1hZ2UiOnsiaWQiOjUyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9vcHRpbWFsbWVudGFsd2VsbG5lc3NcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzA2XC9PcHRpbWFsLU1lbnRhbC1IZWFsdGgtQW5kLVdlbGxuZXNzLWxvZ28tYS5wbmciLCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJpbWFnZV9zaXplIjoiZnVsbCIsImxpbmtfdG8iOiJjdXN0b20iLCJhbGlnbiI6ImxlZnQiLCJzcGFjZSI6eyJ1bml0IjoicHgiLCJzaXplIjoiIiwic2l6ZXMiOltdfSwic3BhY2VfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOiIiLCJzaXplcyI6W119LCJzcGFjZV9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MTk3LCJzaXplcyI6W119LCJwcF9kaXNwbGF5X2NvbmRpdGlvbnMiOlt7Il9pZCI6IjQwMWM5ZjciLCJwcF9jb25kaXRpb25fZGF0ZV92YWx1ZSI6IjIwMjUtMDgtMjQgdG8gMjAyNS0wOC0zMCIsInBwX2NvbmRpdGlvbl9kYXRlX3RpbWVfYmVmb3JlX3ZhbHVlIjoiMjAyNS0wOC0zMCAxMTowNyJ9XSwicHBfZWxlbWVudHNfdG9vbHRpcF9jb250ZW50IjoiVG9vbHRpcCBDb250ZW50IiwiX19keW5hbWljX18iOnsibGluayI6IltlbGVtZW50b3ItdGFnIGlkPVwiNjQ1ZWFjNFwiIG5hbWU9XCJzaXRlLXVybFwiIHNldHRpbmdzPVwiJTdCJTdEXCJdIn0sIl9wYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjUiLCJyaWdodCI6IjUiLCJib3R0b20iOiI1IiwibGVmdCI6IjUiLCJpc0xpbmtlZCI6dHJ1ZX0sIl9wb3NpdGlvbiI6ImFic29sdXRlIiwiX2JhY2tncm91bmRfYmFja2dyb3VuZCI6ImNsYXNzaWMiLCJfX2dsb2JhbHNfXyI6eyJfYmFja2dyb3VuZF9jb2xvciI6IiJ9LCJfYm9yZGVyX3JhZGl1cyI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwic3BhY2VfdGFibGV0X2V4dHJhIjp7InVuaXQiOiJweCIsInNpemUiOjIyMCwic2l6ZXMiOltdfSwid2lkdGgiOnsidW5pdCI6IiUiLCJzaXplIjoxMDAsInNpemVzIjpbXX0sIl9lbGVtZW50X3dpZHRoIjoiaW5pdGlhbCIsIl9lbGVtZW50X2N1c3RvbV93aWR0aCI6eyJ1bml0IjoicHgiLCJzaXplIjoyOTksInNpemVzIjpbXX0sIl9vZmZzZXRfeF93aWRlc2NyZWVuIjp7InNpemUiOi0xLCJ1bml0IjoicHgifSwiX29mZnNldF95X3dpZGVzY3JlZW4iOnsic2l6ZSI6LTEsInVuaXQiOiJweCJ9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiaW1hZ2UifQ==\\\"]\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-388619a3 e-con-full e-flex e-con e-child\\\" data-id=\\\"388619a3\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t[elementor-element k=\\\"1103d769b8569c2f8bdcdce2a5e36940\\\" data=\\\"eyJpZCI6IjJhNzBjZmRlIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiYWxpZ25faXRlbXMiOiJyaWdodCIsInBvaW50ZXIiOiJub25lIiwibWVudV90eXBlIjoib2ZmLWNhbnZhcyIsInRvZ2dsZV9sYWJlbCI6Ik1lbnUiLCJ0b2dnbGVfYWxpZ24iOiJyaWdodCIsImNvbG9yX21lbnVfaXRlbSI6IiMwMDAwMDAiLCJjb2xvcl9tZW51X2l0ZW1faG92ZXIiOiIjOWI0ODVmIiwiY29sb3JfbWVudV9pdGVtX2FjdGl2ZSI6IiM5YjQ4NWYiLCJwYWRkaW5nX2hvcml6b250YWxfbWVudV9pdGVtIjp7InVuaXQiOiJweCIsInNpemUiOjAsInNpemVzIjpbXX0sInBhZGRpbmdfdmVydGljYWxfbWVudV9pdGVtIjp7InVuaXQiOiJweCIsInNpemUiOjUsInNpemVzIjpbXX0sIm1lbnVfc3BhY2VfYmV0d2VlbiI6eyJ1bml0IjoicHgiLCJzaXplIjozMCwic2l6ZXMiOltdfSwiY29sb3JfZHJvcGRvd25faXRlbSI6IiNmZmZmZmYiLCJiYWNrZ3JvdW5kX2NvbG9yX2Ryb3Bkb3duX2l0ZW0iOiIjMjE4ZGNkIiwiY29sb3JfZHJvcGRvd25faXRlbV9ob3ZlciI6IiNmZmZmZmYiLCJiYWNrZ3JvdW5kX2NvbG9yX2Ryb3Bkb3duX2l0ZW1faG92ZXIiOiIjOWI0ODVmIiwiY29sb3JfZHJvcGRvd25faXRlbV9hY3RpdmUiOiIjZmZmZmZmIiwiYmFja2dyb3VuZF9jb2xvcl9kcm9wZG93bl9pdGVtX2FjdGl2ZSI6IiM5YjQ4NWYiLCJ0b2dnbGVfY29sb3IiOiIjMDAwMDAwIiwidG9nZ2xlX2JhY2tncm91bmRfY29sb3IiOiIjMDIwMTAxMDAiLCJ0b2dnbGVfY29sb3JfaG92ZXIiOiIjMDAwMDAwIiwidG9nZ2xlX2JhY2tncm91bmRfY29sb3JfaG92ZXIiOiIjMDIwMTAxMDAiLCJvZmZjYW52YXNfcG9zaXRpb24iOiJyaWdodCIsIm92ZXJsYXlfYmdfY29sb3IiOiIjZmZmZmZmIiwibW9iaWxlX2xpbmtfY29sb3IiOiIjMDAwMDAwIiwibW9iaWxlX3N1Yl9saW5rX2JnX2NvbG9yIjoiI2ZmZmZmZiIsIm1vYmlsZV9zdWJfbGlua19jb2xvciI6IiMwMDAwMDAiLCJtb2JpbGVfbGlua19ob3ZlciI6IiNmZmZmZmYiLCJtb2JpbGVfbGlua19iZ19ob3ZlciI6IiMyMThkY2QiLCJtb2JpbGVfc3ViX2xpbmtfYmdfaG92ZXIiOiIjMjE4ZGNkIiwibW9iaWxlX3N1Yl9saW5rX2hvdmVyIjoiI2ZmZmZmZiIsImNsb3NlX2ljb25fY29sb3IiOiIjMDAwMDAwIiwiY2xvc2VfaWNvbl9iYWNrZ3JvdW5kX2NvbG9yIjoiIzAyMDEwMTAwIiwiY2xvc2VfaWNvbl9iYWNrZ3JvdW5kX2NvbG9yX2hvdmVyIjoiIzAyMDEwMTAwIiwibWVudV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJtZW51X3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjE2LCJzaXplcyI6W119LCJtZW51X3R5cG9ncmFwaHlfZm9udF93ZWlnaHQiOiI1MDAiLCJkcm9wZG93bl90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJkcm9wZG93bl90eXBvZ3JhcGh5X2ZvbnRfc2l6ZSI6eyJ1bml0IjoicHgiLCJzaXplIjoxNiwic2l6ZXMiOltdfSwiZHJvcGRvd25fdHlwb2dyYXBoeV9mb250X3dlaWdodCI6IjUwMCIsInBwX2Rpc3BsYXlfY29uZGl0aW9ucyI6W3siX2lkIjoiZDQxZjI0YiIsInBwX2NvbmRpdGlvbl9kYXRlX3ZhbHVlIjoiMjAyNS0wOC0yNCB0byAyMDI1LTA4LTMwIiwicHBfY29uZGl0aW9uX2RhdGVfdGltZV9iZWZvcmVfdmFsdWUiOiIyMDI1LTA4LTMwIDExOjA3In1dLCJwcF9lbGVtZW50c190b29sdGlwX2NvbnRlbnQiOiJUb29sdGlwIENvbnRlbnQiLCJfX2dsb2JhbHNfXyI6eyJjb2xvcl9tZW51X2l0ZW0iOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3IzIiwiY29sb3JfbWVudV9pdGVtX2hvdmVyIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yNiIsImNvbG9yX21lbnVfaXRlbV9hY3RpdmUiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3I2IiwiY29sb3JfZHJvcGRvd25faXRlbSI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjQiLCJiYWNrZ3JvdW5kX2NvbG9yX2Ryb3Bkb3duX2l0ZW0iOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3IwIiwiY29sb3JfZHJvcGRvd25faXRlbV9ob3ZlciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjQiLCJiYWNrZ3JvdW5kX2NvbG9yX2Ryb3Bkb3duX2l0ZW1faG92ZXIiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3I2IiwiY29sb3JfZHJvcGRvd25faXRlbV9hY3RpdmUiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3I0IiwiYmFja2dyb3VuZF9jb2xvcl9kcm9wZG93bl9pdGVtX2FjdGl2ZSI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjYiLCJ0b2dnbGVfY29sb3IiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3IzIiwidG9nZ2xlX2NvbG9yX2hvdmVyIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yMyIsIm92ZXJsYXlfYmdfY29sb3IiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3I0IiwibW9iaWxlX2xpbmtfY29sb3IiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3IzIiwibW9iaWxlX3N1Yl9saW5rX2JnX2NvbG9yIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yNCIsIm1vYmlsZV9zdWJfbGlua19jb2xvciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjMiLCJtb2JpbGVfbGlua19ob3ZlciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjQiLCJtb2JpbGVfbGlua19iZ19ob3ZlciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjYiLCJtb2JpbGVfc3ViX2xpbmtfYmdfaG92ZXIiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3I2IiwibW9iaWxlX3N1Yl9saW5rX2hvdmVyIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yNCIsImNsb3NlX2ljb25fY29sb3IiOiIiLCJjbG9zZV9pY29uX2NvbG9yX2hvdmVyIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yMyIsImRyb3Bkb3duX2RpdmlkZXJfY29sb3IiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3IyIn0sImRyb3Bkb3duX2RpdmlkZXJfYm9yZGVyIjoic29saWQiLCJkcm9wZG93bl9kaXZpZGVyX3dpZHRoIjp7InVuaXQiOiJweCIsInNpemUiOjEsInNpemVzIjpbXX0sIl9mbGV4X29yZGVyX3RhYmxldF9leHRyYSI6ImVuZCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJwcC1hZHZhbmNlZC1tZW51In0=\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-ca7841b elementor-hidden-mobile_extra elementor-hidden-mobile elementor-widget elementor-widget-button\\\" data-id=\\\"ca7841b\\\" 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:\\/\\/clinikehr.com\\/book\\/optimal-mental-health-and-wellness-group\\\" target=\\\"_blank\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">Book Now<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"1103d769b8569c2f8bdcdce2a5e36940\\\" data=\\\"eyJpZCI6IjQ1NGNkMzZiIiwiZWxUeXBlIjoiY29udGFpbmVyIiwic2V0dGluZ3MiOnsiZmxleF9kaXJlY3Rpb24iOiJjb2x1bW4iLCJtaW5faGVpZ2h0Ijp7InVuaXQiOiJweCIsInNpemUiOjMxNCwic2l6ZXMiOltdfSwibWluX2hlaWdodF90YWJsZXRfZXh0cmEiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjAyLCJzaXplcyI6W119LCJtaW5faGVpZ2h0X3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjoxOTUsInNpemVzIjpbXX0sImZsZXhfanVzdGlmeV9jb250ZW50IjoiY2VudGVyIiwiYmFja2dyb3VuZF9iYWNrZ3JvdW5kIjoiY2xhc3NpYyIsImJhY2tncm91bmRfaW1hZ2UiOnsiaWQiOjQzMiwidXJsIjoiaHR0cHM6XC9cL21yYXJpZi5tZVwvb3B0aW1hbG1lbnRhbHdlbGxuZXNzXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI2XC8wNlwvTWVudGFsLUhlYWx0aC1BbmQtV2VsbG5lc3MtYXYuanBnIiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiYmFja2dyb3VuZF9wb3NpdGlvbiI6InRvcCBjZW50ZXIiLCJiYWNrZ3JvdW5kX3JlcGVhdCI6Im5vLXJlcGVhdCIsImJhY2tncm91bmRfc2l6ZSI6ImNvdmVyIiwicHBfYW5pbWF0ZWRfZ3JhZGllbnRfYmdfY29sb3JfbGlzdCI6W3sicHBfYW5pbWF0ZWRfZ3JhZGllbnRfYmdfY29sb3IiOiIjRjZBRDFGIiwiX2lkIjoiNzcxNGUzZSJ9LHsicHBfYW5pbWF0ZWRfZ3JhZGllbnRfYmdfY29sb3IiOiIjRjc0OTZBIiwiX2lkIjoiZGIxM2Y1OCJ9LHsicHBfYW5pbWF0ZWRfZ3JhZGllbnRfYmdfY29sb3IiOiIjNTY1QUQ4IiwiX2lkIjoiZDc5ZjkwZiJ9XSwiYmFja2dyb3VuZF9vdmVybGF5X2JhY2tncm91bmQiOiJncmFkaWVudCIsImJhY2tncm91bmRfb3ZlcmxheV9ncmFkaWVudF9hbmdsZSI6eyJ1bml0IjoiZGVnIiwic2l6ZSI6MjcyLCJzaXplcyI6W119LCJiYWNrZ3JvdW5kX292ZXJsYXlfb3BhY2l0eSI6eyJ1bml0IjoicHgiLCJzaXplIjowLjUzLCJzaXplcyI6W119LCJwYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjEwIiwicmlnaHQiOiIxMCIsImJvdHRvbSI6IjEwIiwibGVmdCI6IjEwIiwiaXNMaW5rZWQiOmZhbHNlfSwicHBfZGlzcGxheV9jb25kaXRpb25zX2VuYWJsZSI6InllcyIsInBwX2Rpc3BsYXlfY29uZGl0aW9ucyI6W3sicHBfY29uZGl0aW9uX2tleSI6InBhZ2UiLCJwcF9jb25kaXRpb25fb3BlcmF0b3IiOiJub3QiLCJfaWQiOiJjNzA5NWQ5IiwicHBfY29uZGl0aW9uX3BhZ2VfdmFsdWUiOlsiMTAiXSwicHBfY29uZGl0aW9uX2RhdGVfdmFsdWUiOiIyMDI1LTA4LTI0IHRvIDIwMjUtMDgtMzAiLCJwcF9jb25kaXRpb25fZGF0ZV90aW1lX2JlZm9yZV92YWx1ZSI6IjIwMjUtMDgtMzAgMTE6MDcifV0sIl9fZ2xvYmFsc19fIjp7ImJhY2tncm91bmRfb3ZlcmxheV9jb2xvciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjAiLCJiYWNrZ3JvdW5kX292ZXJsYXlfY29sb3JfYiI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjEifSwiZV9kaXNwbGF5X2NvbmRpdGlvbnMiOlsiW1t7XCJjb25kaXRpb25cIjpcInBhZ2VfdGl0bGVcIixcImNvbXBhcmF0b3JcIjpcImlzX25vdFwiLFwidGl0bGVzXCI6W3tcImlkXCI6MTAsXCJ0ZXh0XCI6XCJIb21lXCJ9XX1dXSJdfSwiZWxlbWVudHMiOlt7ImlkIjoiNWFhNDExM2UiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJfX2R5bmFtaWNfXyI6eyJ0aXRsZSI6IltlbGVtZW50b3ItdGFnIGlkPVwiXCIgbmFtZT1cInBhZ2UtdGl0bGVcIiBzZXR0aW5ncz1cIiU3QiUyMmluY2x1ZGVfY29udGV4dCUyMiUzQSUyMiUyMiUyQyUyMnNob3dfaG9tZV90aXRsZSUyMiUzQSUyMiUyMiUyQyUyMmJlZm9yZSUyMiUzQSUyMiUyMiUyQyUyMmFmdGVyJTIyJTNBJTIyJTIyJTJDJTIyZmFsbGJhY2slMjIlM0ElMjIlMjIlN0RcIl0ifSwidGl0bGUiOiJBZGQgWW91ciBIZWFkaW5nIFRleHQgSGVyZSIsImFsaWduIjoiY2VudGVyIiwicHBfZGlzcGxheV9jb25kaXRpb25zIjpbeyJfaWQiOiIyNDVmOTRiIiwicHBfY29uZGl0aW9uX2RhdGVfdmFsdWUiOiIyMDI1LTA4LTI0IHRvIDIwMjUtMDgtMzAiLCJwcF9jb25kaXRpb25fZGF0ZV90aW1lX2JlZm9yZV92YWx1ZSI6IjIwMjUtMDgtMzAgMTE6MDcifV0sInBwX2VsZW1lbnRzX3Rvb2x0aXBfY29udGVudCI6IlRvb2x0aXAgQ29udGVudCIsIl9hbmltYXRpb24iOiJ6b29tSW4iLCJfX2dsb2JhbHNfXyI6eyJ0aXRsZV9jb2xvciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjQifX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6InRoZW1lLXBhZ2UtdGl0bGUifSx7ImlkIjoiYjhmNDRlMyIsImVsVHlwZSI6IndpZGdldCIsInNldHRpbmdzIjp7InRpdGxlIjoiQmxvZyIsImFsaWduIjoiY2VudGVyIiwicHBfZGlzcGxheV9jb25kaXRpb25zX2VuYWJsZSI6InllcyIsInBwX2Rpc3BsYXlfY29uZGl0aW9ucyI6W3siX2lkIjoiMjQ1Zjk0YiIsInBwX2NvbmRpdGlvbl9kYXRlX3ZhbHVlIjoiMjAyNS0wOC0yNCB0byAyMDI1LTA4LTMwIiwicHBfY29uZGl0aW9uX2RhdGVfdGltZV9iZWZvcmVfdmFsdWUiOiIyMDI1LTA4LTMwIDExOjA3IiwicHBfY29uZGl0aW9uX2tleSI6InN0YXRpY19wYWdlIiwicHBfY29uZGl0aW9uX3N0YXRpY19wYWdlX3ZhbHVlIjoiYmxvZyJ9XSwicHBfZWxlbWVudHNfdG9vbHRpcF9jb250ZW50IjoiVG9vbHRpcCBDb250ZW50IiwiX2FuaW1hdGlvbiI6Inpvb21JbiIsIl9fZ2xvYmFsc19fIjp7InRpdGxlX2NvbG9yIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yNCJ9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiaGVhZGluZyJ9XSwiaXNJbm5lciI6ZmFsc2V9\\\"]\",\"scripts\":[],\"styles\":[]}}'),
(3577, 316, '_elementor_template_type', 'wp-page'),
(3578, 316, '_elementor_version', '4.1.3'),
(3579, 316, '_elementor_pro_version', '4.1.1'),
(3580, 316, '_elementor_global_class_usage_indexed', '1'),
(3581, 316, '_elementor_global_class_usage_indexed_preview', '1'),
(3582, 316, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3583, 316, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8140, 688, '_wp_page_template', 'elementor_header_footer'),
(8114, 686, '_wp_page_template', 'elementor_header_footer'),
(8115, 686, '_elementor_edit_mode', 'builder'),
(8116, 686, '_elementor_template_type', 'wp-page'),
(8117, 686, '_elementor_version', '4.1.3'),
(8118, 686, '_elementor_pro_version', '4.1.1'),
(8119, 686, '_elementor_global_class_usage_indexed', '1'),
(8120, 686, '_elementor_global_class_usage_indexed_preview', '1'),
(8121, 686, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8122, 686, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":532,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":431,\"sizes\":[]}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"px\",\"size\":223,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"common_image_animation\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"},\"hide_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\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8950, 310, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>'),
(3657, 322, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3591, 317, '_wp_attached_file', '2026/06/Connect-With-Mental-Health-ag.jpg'),
(3592, 317, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:41:\"2026/06/Connect-With-Mental-Health-ag.jpg\";s:8:\"filesize\";i:447103;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Connect-With-Mental-Health-ag-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21152;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Connect-With-Mental-Health-ag-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7776;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"Connect-With-Mental-Health-ag-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84580;}}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:\"\";}}'),
(3603, 318, '_elementor_page_settings', 'a:0:{}'),
(8213, 693, '_elementor_edit_mode', 'builder'),
(8214, 693, '_elementor_template_type', 'header'),
(8215, 693, '_elementor_version', '4.1.3'),
(8216, 693, '_elementor_pro_version', '4.1.1'),
(8217, 693, '_elementor_global_class_usage_indexed', '1'),
(8218, 693, '_elementor_global_class_usage_indexed_preview', '1'),
(8219, 693, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(8220, 693, '_wp_page_template', 'default');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8221, 693, '_elementor_data', '[{\"id\":\"7cd2407b\",\"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},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4b376675\",\"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\":\"14e415c9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@optimalmentalwellness.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@optimalmentalwellness.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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5137f99d\",\"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\":\"416cdcb9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"904-901-7913\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:9049017913\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=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\":\"6090cb25\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"background_background\":\"classic\",\"z_index\":99,\"css_classes\":\"header_sections\",\"sticky\":\"top\",\"sticky_effects_offset\":50,\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"42e85872\",\"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\":\"5d51e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Optimal-Mental-Health-And-Wellness-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":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\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_position\":\"absolute\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"_offset_x_widescreen\":{\"size\":-1,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-1,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"388619a3\",\"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\":\"2a70cfde\",\"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\":30,\"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\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"500\",\"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=astglobalcolor6\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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=astglobalcolor6\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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\":[]},\"_flex_order_tablet_extra\":\"end\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"ca7841b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"590be00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"454cd36b\",\"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\":432,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Mental-Health-And-Wellness-av.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"5aa4113e\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"},{\"id\":\"b8f44e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"align\":\"center\",\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(8457, 14, '_elementor_page_settings', 'a:0:{}'),
(8458, 14, '_elementor_controls_usage', 'a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:3;s:10:\"image_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:3;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:14;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:11;s:20:\"flex_justify_content\";i:3;s:14:\"flex_direction\";i:3;}}s:5:\"style\";a:2:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:14;}s:18:\"section_background\";a:1:{s:21:\"background_background\";i:2;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:14;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:11;}s:14:\"section_layout\";a:2:{s:11:\"css_classes\";i:3;s:7:\"padding\";i: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:1;}}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:11:\"text-editor\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:6;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:6;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:21:\"typography_font_style\";i:1;s:5:\"align\";i:1;}}}}s:20:\"pp-info-box-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:18:\"section_info_boxes\";a:6:{s:13:\"pp_info_boxes\";i:1;s:6:\"layout\";i:1;s:7:\"columns\";i:1;s:20:\"columns_mobile_extra\";i:1;s:14:\"title_html_tag\";i:1;s:18:\"equal_height_boxes\";i:1;}}s:5:\"style\";a:3:{s:22:\"section_info_box_style\";a:3:{s:30:\"info_box_background_background\";i:1;s:22:\"info_box_border_radius\";i:1;s:16:\"info_box_padding\";i:1;}s:27:\"section_info_box_icon_style\";a:4:{s:9:\"icon_size\";i:1;s:18:\"icon_border_radius\";i:1;s:12:\"icon_padding\";i:1;s:11:\"icon_margin\";i:1;}s:28:\"section_info_box_title_style\";a:1:{s:12:\"title_margin\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(3606, 319, '_wp_page_template', 'elementor_header_footer'),
(3607, 319, '_elementor_edit_mode', 'builder'),
(3608, 319, '_elementor_template_type', 'wp-page'),
(3609, 319, '_elementor_version', '4.1.3'),
(3610, 319, '_elementor_pro_version', '4.1.1'),
(3611, 319, '_elementor_global_class_usage_indexed', '1'),
(3612, 319, '_elementor_global_class_usage_indexed_preview', '1'),
(3613, 319, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3614, 319, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3616, 319, '_elementor_page_settings', 'a:0:{}'),
(8195, 692, '_elementor_edit_mode', 'builder'),
(8196, 692, '_elementor_template_type', 'header'),
(8197, 692, '_elementor_version', '4.1.3'),
(8198, 692, '_elementor_pro_version', '4.1.1'),
(8199, 692, '_elementor_global_class_usage_indexed', '1'),
(8200, 692, '_elementor_global_class_usage_indexed_preview', '1'),
(8201, 692, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(8202, 692, '_wp_page_template', 'default'),
(8203, 692, '_elementor_data', '[{\"id\":\"7cd2407b\",\"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},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4b376675\",\"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\":\"14e415c9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@optimalmentalwellness.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@optimalmentalwellness.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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5137f99d\",\"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\":\"416cdcb9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"904-901-7913\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:9049017913\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=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\":\"6090cb25\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"background_background\":\"classic\",\"z_index\":99,\"css_classes\":\"header_sections\",\"sticky\":\"top\",\"sticky_effects_offset\":50,\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"42e85872\",\"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\":\"5d51e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Optimal-Mental-Health-And-Wellness-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":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\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_position\":\"absolute\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"_offset_x_widescreen\":{\"size\":-1,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-1,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"388619a3\",\"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\":\"2a70cfde\",\"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\":30,\"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\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"500\",\"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=astglobalcolor6\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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=astglobalcolor6\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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\":[]},\"_flex_order_tablet_extra\":\"end\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"ca7841b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"590be00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"454cd36b\",\"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\":432,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Mental-Health-And-Wellness-av.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"5aa4113e\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"},{\"id\":\"b8f44e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"align\":\"center\",\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is\\\",\\\"titles\\\":[{\\\"id\\\":16,\\\"text\\\":\\\"Blog\\\"}]}]]\"],\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(8238, 694, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(8461, 713, '_elementor_source', 'post'),
(8462, 713, '_elementor_edit_mode', 'builder'),
(8463, 713, '_elementor_template_type', 'header');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8464, 713, '_elementor_version', '4.1.3'),
(8465, 713, '_elementor_pro_version', '4.1.1'),
(8466, 713, '_elementor_global_class_usage_indexed', '1'),
(8467, 713, '_elementor_global_class_usage_indexed_preview', '1'),
(8468, 713, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(8469, 713, '_wp_page_template', 'default'),
(3620, 320, '_elementor_edit_mode', 'builder'),
(3621, 320, '_elementor_template_type', 'wp-page'),
(3622, 320, '_elementor_version', '4.1.3'),
(3623, 320, '_elementor_pro_version', '4.1.1'),
(3624, 320, '_elementor_global_class_usage_indexed', '1'),
(3625, 320, '_elementor_global_class_usage_indexed_preview', '1'),
(3626, 320, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(3627, 320, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8367, 31, '_elementor_page_settings', 'a:0:{}'),
(8368, 31, '_elementor_controls_usage', 'a:5:{s:5:\"image\";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_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:6:{s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:2;s:18:\"image_border_color\";i:2;s:19:\"image_border_radius\";i:2;s:5:\"align\";i:1;s:5:\"width\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:4:{s:13:\"content_width\";i:7;s:5:\"width\";i:4;s:14:\"flex_direction\";i:2;s:20:\"flex_justify_content\";i:1;}}s:5:\"style\";a:2:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:8;}s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}}s:8:\"advanced\";a:4:{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:2;s:18:\"animation_duration\";i:2;}s:14:\"section_layout\";a:3:{s:11:\"css_classes\";i:2;s:6:\"margin\";i:1;s:7:\"padding\";i:3;}s:19:\"_section_responsive\";a:2:{s:17:\"hide_mobile_extra\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:15:\"pp-dual-heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:20:\"section_dual_heading\";a:2:{s:10:\"first_text\";i:2;s:11:\"second_text\";i:2;}}s:5:\"style\";a:2:{s:19:\"first_section_style\";a:3:{s:16:\"first_text_color\";i:1;s:27:\"first_typography_typography\";i:1;s:26:\"first_typography_font_size\";i:1;}s:20:\"second_section_style\";a:3:{s:17:\"second_text_color\";i:1;s:28:\"second_typography_typography\";i:1;s:27:\"second_typography_font_size\";i:1;}}s:8:\"advanced\";a:5:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:1;}s:19:\"_section_responsive\";a:2:{s:17:\"hide_mobile_extra\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";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:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_icon_style\";a:1:{s:10:\"icon_color\";i:1;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:1;s:16:\"_flex_align_self\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s: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: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: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;}}}}}'),
(8371, 695, '_elementor_screenshot_failed', '2026-06-17 14:27:24'),
(7885, 672, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(8734, 734, '_elementor_global_class_usage_indexed', '1'),
(8735, 734, '_elementor_global_class_usage_indexed_preview', '1'),
(8736, 734, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(8737, 734, '_wp_page_template', 'default');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8738, 734, '_elementor_data', '[{\"id\":\"36acd947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#2E211D\"},\"elements\":[{\"id\":\"a61f409\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"5b64f0b6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f54abd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"0785fe6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"204810e\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f3adcba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f19265\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"65ebe43c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ba9c024\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1a4d853c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"5011 Gate Parkway Bldg 100 Suite 100  Jacksonville, FL 32256 United States\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=30.246008,-81.533169&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=5011%20Gate%20Pkwy%20Bldg%20100%2C%20Suite%20100%20Collier%20Building%2C%20Parking%20lot%20Jacksonville%2C%20FL%2032256%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"2590 Welton Street suite 200 Denver,Colorado  80205\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4bda8ba\"},{\"text\":\"877 296 7846\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:8772967846\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bf68e29\"},{\"text\":\"470 222-2746\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:4702222746\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"030f147\"},{\"text\":\" info@optimalmentalwellness.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto: info@optimalmentalwellness.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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1004a94f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/optimal_mentalhealth?igsh=Y3Z3NjFjYnQ0cXdo\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor6\",\"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\":\"67a9f141\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"48dc4a5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39d06425\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"641fcfd9\",\"elType\":\"widget\",\"settings\":{\"business_hours\":[{\"_id\":\"da64ace\",\"opening_hours\":\"09:30\",\"closing_hours\":\"16:30\",\"closed_text\":\"Closed\"},{\"opening_hours\":\"09:30\",\"closing_hours\":\"16:30\",\"closed_text\":\"Closed\",\"day\":\"Tuesday\",\"_id\":\"9f4cf0b\"},{\"opening_hours\":\"09:30\",\"closing_hours\":\"16:30\",\"closed_text\":\"Closed\",\"day\":\"Wednesday\",\"_id\":\"770b874\"},{\"opening_hours\":\"09:30\",\"closing_hours\":\"16:30\",\"closed_text\":\"Closed\",\"day\":\"Thursday\",\"_id\":\"bbb4be5\"},{\"opening_hours\":\"09:30\",\"closing_hours\":\"16:30\",\"closed_text\":\"Closed\",\"day\":\"Friday\",\"_id\":\"1a1391b\"},{\"day\":\"Saturday\",\"highlight\":\"yes\",\"opening_hours\":\"08:00\",\"closing_hours\":\"13:00\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor4\"},\"closed\":\"\",\"_id\":\"35a4e44\"},{\"day\":\"Sunday\",\"highlight\":\"yes\",\"opening_hours\":\"08:00\",\"closing_hours\":\"13:00\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor4\"},\"closed\":\"\",\"_id\":\"b85648c\"}],\"business_hours_custom\":[{\"day\":\"Monday\",\"_id\":\"cee2f1e\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Tuesday\",\"_id\":\"45ae0c5\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"86a6f01\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"7a864b7\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"7829cb0\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"0ab76c1\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"872d85e\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"}],\"rows_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"3\",\"bottom\":\"5\",\"left\":\"3\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ef806cc\",\"pp_condition_date_time_before_value\":\"2024-06-11 13:29\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"closed_row_day_color\":\"globals\\/colors?id=astglobalcolor4\",\"closed_row_tex_color\":\"globals\\/colors?id=astglobalcolor4\",\"day_color\":\"globals\\/colors?id=astglobalcolor4\",\"hours_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-business-hours\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ac53f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#241815\"},\"elements\":[{\"id\":\"86a6b29\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 [copyright]. All Rights Reserved. Website Developed by\\u00a0<a hrecopyrightf=\\\"https:\\/\\/devrivo.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a>\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(3691, 325, '_elementor_version', '4.1.3'),
(3692, 325, '_elementor_pro_version', '4.1.1'),
(3693, 325, '_elementor_global_class_usage_indexed', '1'),
(3694, 325, '_elementor_global_class_usage_indexed_preview', '1'),
(3695, 325, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3696, 325, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6444, 560, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(7921, 675, '_elementor_source', 'post'),
(7922, 675, '_elementor_edit_mode', 'builder'),
(7923, 675, '_elementor_template_type', 'header'),
(7924, 675, '_elementor_version', '4.1.3'),
(7925, 675, '_elementor_pro_version', '4.1.1'),
(7926, 675, '_elementor_global_class_usage_indexed', '1'),
(7927, 675, '_elementor_global_class_usage_indexed_preview', '1'),
(7928, 675, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(7929, 675, '_wp_page_template', 'default'),
(7930, 675, '_elementor_data', '[{\"id\":\"7cd2407b\",\"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},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4b376675\",\"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\":\"14e415c9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@optimalmentalwellness.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@optimalmentalwellness.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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5137f99d\",\"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\":\"416cdcb9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"904-901-7913\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:9049017913\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=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\":\"6090cb25\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFFD1\",\"css_classes\":\"header_sections\",\"sticky\":\"top\",\"sticky_effects_offset\":50,\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"42e85872\",\"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\":\"5d51e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Optimal-Mental-Health-And-Wellness-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":300,\"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\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_position\":\"absolute\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"388619a3\",\"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\":\"2a70cfde\",\"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\":30,\"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\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"500\",\"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=astglobalcolor6\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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=astglobalcolor6\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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\":[]},\"_flex_order_tablet_extra\":\"end\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"ca7841b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"590be00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"454cd36b\",\"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\":432,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Mental-Health-And-Wellness-av.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"5aa4113e\",\"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}]'),
(3673, 324, '_wp_page_template', 'elementor_header_footer'),
(3674, 324, '_elementor_edit_mode', 'builder'),
(3675, 324, '_elementor_template_type', 'wp-page'),
(3676, 324, '_elementor_version', '4.1.3'),
(3677, 324, '_elementor_pro_version', '4.1.1'),
(3678, 324, '_elementor_global_class_usage_indexed', '1'),
(3679, 324, '_elementor_global_class_usage_indexed_preview', '1');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3680, 324, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(3681, 324, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3659, 322, '_elementor_page_settings', 'a:0:{}'),
(8039, 681, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(8859, 48, '_elementor_page_settings', 'a:0:{}'),
(8860, 48, '_elementor_controls_usage', 'a:7:{s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:3:{s:4:\"view\";i:2;s:9:\"icon_list\";i:2;s:10:\"link_click\";i:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}s:5:\"style\";a:1:{s:17:\"section_icon_list\";a:2:{s:23:\"icon_align_mobile_extra\";i:2;s:10:\"icon_align\";i:1;}}}}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:4:{s:35:\"section_powerpack_elements_advanced\";a:2:{s:21:\"pp_display_conditions\";i:7;s:28:\"pp_display_conditions_enable\";i:1;}s:14:\"section_layout\";a:4:{s:7:\"padding\";i:2;s:7:\"z_index\";i:1;s:11:\"css_classes\";i:1;s:20:\"e_display_conditions\";i:1;}s:19:\"_section_responsive\";a:2:{s:17:\"hide_mobile_extra\";i:1;s:11:\"hide_mobile\";i:1;}s:15:\"section_effects\";a:2:{s:6:\"sticky\";i:1;s:21:\"sticky_effects_offset\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;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:3:{s:5:\"align\";i:1;s:5:\"space\";i:1;s:5:\"width\";i:1;}}s:8:\"advanced\";a:4:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:1;s:9:\"_position\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:1;}}}}s:16:\"pp-advanced-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_layout\";a: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:8:{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: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:12:{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: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: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: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:16:\"theme-page-title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a: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:2:{s:28:\"pp_display_conditions_enable\";i:1;s:21:\"pp_display_conditions\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}}'),
(8045, 682, '_elementor_source', 'post'),
(8046, 682, '_elementor_edit_mode', 'builder'),
(8047, 682, '_elementor_template_type', 'header'),
(8048, 682, '_elementor_version', '4.1.3'),
(8049, 682, '_elementor_pro_version', '4.1.1'),
(8050, 682, '_elementor_global_class_usage_indexed', '1'),
(8051, 682, '_elementor_global_class_usage_indexed_preview', '1'),
(8052, 682, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(8053, 682, '_wp_page_template', 'default');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8054, 682, '_elementor_data', '[{\"id\":\"7cd2407b\",\"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},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4b376675\",\"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\":\"14e415c9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@optimalmentalwellness.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@optimalmentalwellness.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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5137f99d\",\"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\":\"416cdcb9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"904-901-7913\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:9049017913\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=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\":\"6090cb25\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"background_background\":\"classic\",\"z_index\":99,\"css_classes\":\"header_sections\",\"sticky\":\"top\",\"sticky_effects_offset\":50,\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"42e85872\",\"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\":\"5d51e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Optimal-Mental-Health-And-Wellness-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":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\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_position\":\"absolute\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"_offset_x_widescreen\":{\"size\":-1,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-1,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"388619a3\",\"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\":\"2a70cfde\",\"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\":30,\"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\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"500\",\"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=astglobalcolor6\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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=astglobalcolor6\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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\":[]},\"_flex_order_tablet_extra\":\"end\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"ca7841b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"590be00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"454cd36b\",\"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\":432,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Mental-Health-And-Wellness-av.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"5aa4113e\",\"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}]'),
(3661, 323, '_wp_page_template', 'elementor_header_footer'),
(3662, 323, '_elementor_edit_mode', 'builder'),
(3663, 323, '_elementor_template_type', 'wp-page'),
(3664, 323, '_elementor_version', '4.1.3'),
(3665, 323, '_elementor_pro_version', '4.1.1'),
(3666, 323, '_elementor_global_class_usage_indexed', '1'),
(3667, 323, '_elementor_global_class_usage_indexed_preview', '1'),
(3668, 323, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(3669, 323, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3671, 323, '_elementor_page_settings', 'a:0:{}'),
(8030, 681, '_elementor_edit_mode', 'builder'),
(8031, 681, '_elementor_template_type', 'header'),
(8032, 681, '_elementor_version', '4.1.3'),
(8033, 681, '_elementor_pro_version', '4.1.1'),
(8034, 681, '_elementor_global_class_usage_indexed', '1'),
(8035, 681, '_elementor_global_class_usage_indexed_preview', '1'),
(8036, 681, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(8037, 681, '_wp_page_template', 'default');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8038, 681, '_elementor_data', '[{\"id\":\"7cd2407b\",\"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},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4b376675\",\"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\":\"14e415c9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@optimalmentalwellness.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@optimalmentalwellness.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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5137f99d\",\"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\":\"416cdcb9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"904-901-7913\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:9049017913\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=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\":\"6090cb25\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"background_background\":\"classic\",\"z_index\":99,\"css_classes\":\"header_sections\",\"sticky\":\"top\",\"sticky_effects_offset\":50,\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"42e85872\",\"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\":\"5d51e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Optimal-Mental-Health-And-Wellness-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":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\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_position\":\"absolute\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"_offset_x_widescreen\":{\"size\":-1,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-1,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"388619a3\",\"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\":\"2a70cfde\",\"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\":30,\"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\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"500\",\"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=astglobalcolor6\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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=astglobalcolor6\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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\":[]},\"_flex_order_tablet_extra\":\"end\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"ca7841b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"590be00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"454cd36b\",\"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\":432,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Mental-Health-And-Wellness-av.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"5aa4113e\",\"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}]'),
(8021, 680, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(8012, 680, '_elementor_edit_mode', 'builder'),
(8013, 680, '_elementor_template_type', 'header'),
(8014, 680, '_elementor_version', '4.1.3'),
(8015, 680, '_elementor_pro_version', '4.1.1'),
(8016, 680, '_elementor_global_class_usage_indexed', '1'),
(8017, 680, '_elementor_global_class_usage_indexed_preview', '1'),
(8018, 680, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(8019, 680, '_wp_page_template', 'default'),
(8020, 680, '_elementor_data', '[{\"id\":\"7cd2407b\",\"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},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4b376675\",\"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\":\"14e415c9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@optimalmentalwellness.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@optimalmentalwellness.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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5137f99d\",\"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\":\"416cdcb9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"904-901-7913\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:9049017913\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=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\":\"6090cb25\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"background_background\":\"classic\",\"z_index\":99,\"css_classes\":\"header_sections\",\"sticky\":\"top\",\"sticky_effects_offset\":50,\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"42e85872\",\"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\":\"5d51e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Optimal-Mental-Health-And-Wellness-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":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\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_position\":\"absolute\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"_offset_x_widescreen\":{\"size\":-1,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-1,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"388619a3\",\"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\":\"2a70cfde\",\"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\":30,\"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\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"500\",\"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=astglobalcolor6\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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=astglobalcolor6\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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\":[]},\"_flex_order_tablet_extra\":\"end\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"ca7841b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"590be00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"454cd36b\",\"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\":432,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Mental-Health-And-Wellness-av.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"5aa4113e\",\"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}]'),
(8003, 679, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(8755, 735, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(3730, 328, '_wp_page_template', 'elementor_header_footer'),
(3731, 328, '_elementor_edit_mode', 'builder'),
(3732, 328, '_elementor_template_type', 'wp-page'),
(3733, 328, '_elementor_version', '4.1.3'),
(3734, 328, '_elementor_pro_version', '4.1.1'),
(3735, 328, '_elementor_global_class_usage_indexed', '1'),
(3736, 328, '_elementor_global_class_usage_indexed_preview', '1'),
(3737, 328, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3738, 328, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(3698, 325, '_elementor_page_settings', 'a:0:{}'),
(8029, 681, '_elementor_source', 'post'),
(8011, 680, '_elementor_source', 'post'),
(7993, 679, '_elementor_source', 'post'),
(7994, 679, '_elementor_edit_mode', 'builder'),
(7995, 679, '_elementor_template_type', 'header'),
(7996, 679, '_elementor_version', '4.1.3'),
(7997, 679, '_elementor_pro_version', '4.1.1'),
(7998, 679, '_elementor_global_class_usage_indexed', '1'),
(7999, 679, '_elementor_global_class_usage_indexed_preview', '1'),
(8000, 679, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(8001, 679, '_wp_page_template', 'default');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8002, 679, '_elementor_data', '[{\"id\":\"7cd2407b\",\"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},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4b376675\",\"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\":\"14e415c9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@optimalmentalwellness.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@optimalmentalwellness.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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5137f99d\",\"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\":\"416cdcb9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"904-901-7913\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:9049017913\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=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\":\"6090cb25\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"background_background\":\"classic\",\"z_index\":99,\"css_classes\":\"header_sections\",\"sticky\":\"top\",\"sticky_effects_offset\":50,\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"42e85872\",\"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\":\"5d51e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Optimal-Mental-Health-And-Wellness-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":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\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_position\":\"absolute\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_flex_align_self\":\"flex-start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"_offset_x_widescreen\":{\"size\":-1,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-1,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"388619a3\",\"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\":\"2a70cfde\",\"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\":30,\"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\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"500\",\"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=astglobalcolor6\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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=astglobalcolor6\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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\":[]},\"_flex_order_tablet_extra\":\"end\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"ca7841b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"590be00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"454cd36b\",\"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\":432,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Mental-Health-And-Wellness-av.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"5aa4113e\",\"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}]'),
(7985, 678, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(3701, 326, '_wp_page_template', 'elementor_header_footer'),
(3702, 326, '_elementor_edit_mode', 'builder'),
(3703, 326, '_elementor_template_type', 'wp-page'),
(3704, 326, '_elementor_version', '4.1.3'),
(3705, 326, '_elementor_pro_version', '4.1.1'),
(3706, 326, '_elementor_global_class_usage_indexed', '1'),
(3707, 326, '_elementor_global_class_usage_indexed_preview', '1'),
(3708, 326, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(3709, 326, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3711, 326, '_elementor_page_settings', 'a:0:{}'),
(3714, 327, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3715, 327, '_elementor_edit_mode', 'builder'),
(3716, 327, '_elementor_template_type', 'wp-page'),
(3717, 327, '_elementor_version', '4.1.3'),
(3718, 327, '_elementor_pro_version', '4.1.1'),
(3719, 327, '_elementor_global_class_usage_indexed', '1'),
(3720, 327, '_elementor_global_class_usage_indexed_preview', '1'),
(3721, 327, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(3722, 327, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(7608, 652, '_elementor_page_settings', 'a:0:{}'),
(7612, 653, '_elementor_global_class_usage_indexed', '1'),
(7614, 653, '_elementor_edit_mode', 'builder'),
(7615, 653, '_elementor_template_type', 'wp-page'),
(7616, 653, '_elementor_version', '4.1.3'),
(7617, 653, '_elementor_pro_version', '4.1.1'),
(7618, 653, '_elementor_global_class_usage_indexed_preview', '1'),
(7619, 653, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(7620, 653, '_elementor_data', '[{\"id\":\"e4108d8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"80f1eca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6941206\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"145d2e0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d16793b\"}]},\"elements\":[{\"id\":\"2e75bdb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"959aa71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a35a9a7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe5b25e\"}],\"pp_display_conditions\":[{\"_id\":\"bb96df4\"}]},\"elements\":[{\"id\":\"29e028c\",\"elType\":\"widget\",\"settings\":{\"widget_title\":\"Book an Appointment\",\"show_progress_bar\":\"\",\"theme_preset\":\"minimal_white\",\"primary_color\":\"#41322d\",\"secondary_color\":\"#ce2162\",\"pp_display_conditions\":[{\"_id\":\"86eaabc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"aab_booking_widget\"}],\"isInner\":true}],\"isInner\":false}]'),
(7696, 659, '_elementor_global_class_usage_indexed', '1'),
(7669, 657, '_wp_page_template', 'elementor_header_footer'),
(7670, 657, '_elementor_global_class_usage_indexed', '1'),
(7672, 657, '_elementor_edit_mode', 'builder'),
(7673, 657, '_elementor_template_type', 'wp-page'),
(7674, 657, '_elementor_version', '4.1.3'),
(7675, 657, '_elementor_pro_version', '4.1.1'),
(7676, 657, '_elementor_global_class_usage_indexed_preview', '1'),
(7677, 657, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(7678, 657, '_elementor_data', '[{\"id\":\"e4108d8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"80f1eca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6941206\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"145d2e0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d16793b\"}]},\"elements\":[{\"id\":\"2e75bdb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"959aa71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a35a9a7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe5b25e\"}],\"pp_display_conditions\":[{\"_id\":\"bb96df4\"}]},\"elements\":[{\"id\":\"29e028c\",\"elType\":\"widget\",\"settings\":{\"widget_title\":\"Book an Appointment\",\"show_progress_bar\":\"\",\"theme_preset\":\"minimal_white\",\"datepicker_type\":\"html\",\"primary_color\":\"#41322d\",\"secondary_color\":\"#ce2162\",\"pp_display_conditions\":[{\"_id\":\"86eaabc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"aab_booking_widget\"}],\"isInner\":true}],\"isInner\":false}]'),
(7637, 654, '_elementor_page_settings', 'a:0:{}'),
(7640, 655, '_wp_page_template', 'elementor_header_footer'),
(7641, 655, '_elementor_global_class_usage_indexed', '1'),
(7643, 655, '_elementor_edit_mode', 'builder'),
(7644, 655, '_elementor_template_type', 'wp-page'),
(7645, 655, '_elementor_version', '4.1.3'),
(7646, 655, '_elementor_pro_version', '4.1.1'),
(7647, 655, '_elementor_global_class_usage_indexed_preview', '1'),
(7648, 655, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(7649, 655, '_elementor_data', '[{\"id\":\"e4108d8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"80f1eca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6941206\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"145d2e0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d16793b\"}]},\"elements\":[{\"id\":\"2e75bdb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"959aa71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a35a9a7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe5b25e\"}],\"pp_display_conditions\":[{\"_id\":\"bb96df4\"}]},\"elements\":[{\"id\":\"29e028c\",\"elType\":\"widget\",\"settings\":{\"widget_title\":\"Book an Appointment\",\"show_progress_bar\":\"\",\"theme_preset\":\"minimal_white\",\"primary_color\":\"#41322d\",\"secondary_color\":\"#ce2162\",\"pp_display_conditions\":[{\"_id\":\"86eaabc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"aab_booking_widget\"}],\"isInner\":true}],\"isInner\":false}]'),
(7650, 655, '_elementor_page_settings', 'a:0:{}'),
(7653, 656, '_wp_page_template', 'elementor_header_footer'),
(7654, 656, '_elementor_global_class_usage_indexed', '1'),
(7656, 656, '_elementor_edit_mode', 'builder'),
(7657, 656, '_elementor_template_type', 'wp-page'),
(7658, 656, '_elementor_version', '4.1.3'),
(7659, 656, '_elementor_pro_version', '4.1.1'),
(7660, 656, '_elementor_global_class_usage_indexed_preview', '1'),
(7661, 656, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(7662, 656, '_elementor_data', '[{\"id\":\"e4108d8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"80f1eca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6941206\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"145d2e0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d16793b\"}]},\"elements\":[{\"id\":\"2e75bdb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"959aa71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a35a9a7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe5b25e\"}],\"pp_display_conditions\":[{\"_id\":\"bb96df4\"}]},\"elements\":[{\"id\":\"29e028c\",\"elType\":\"widget\",\"settings\":{\"widget_title\":\"Book an Appointment\",\"show_progress_bar\":\"\",\"theme_preset\":\"minimal_white\",\"datepicker_type\":\"html\",\"primary_color\":\"#41322d\",\"secondary_color\":\"#ce2162\",\"pp_display_conditions\":[{\"_id\":\"86eaabc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"aab_booking_widget\"}],\"isInner\":true}],\"isInner\":false}]'),
(7725, 660, '_wp_page_template', 'elementor_header_footer'),
(7726, 660, '_elementor_global_class_usage_indexed', '1'),
(7727, 660, '_elementor_edit_mode', 'builder'),
(7728, 660, '_elementor_template_type', 'wp-page'),
(7729, 660, '_elementor_version', '4.1.3'),
(7730, 660, '_elementor_pro_version', '4.1.1'),
(7731, 660, '_elementor_global_class_usage_indexed_preview', '1'),
(7732, 660, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(7733, 660, '_elementor_data', '[{\"id\":\"e4108d8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"80f1eca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6941206\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"145d2e0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d16793b\"}]},\"elements\":[{\"id\":\"2e75bdb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"959aa71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a35a9a7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe5b25e\"}],\"pp_display_conditions\":[{\"_id\":\"bb96df4\"}]},\"elements\":[{\"id\":\"29e028c\",\"elType\":\"widget\",\"settings\":{\"widget_title\":\"Book an Appointment\",\"show_progress_bar\":\"\",\"theme_preset\":\"minimal_white\",\"primary_color\":\"#41322d\",\"secondary_color\":\"#ce2162\",\"pp_display_conditions\":[{\"_id\":\"86eaabc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"aab_booking_widget\"}],\"isInner\":true}],\"isInner\":false}]'),
(7679, 657, '_elementor_page_settings', 'a:0:{}'),
(7682, 658, '_wp_page_template', 'elementor_header_footer'),
(7683, 658, '_elementor_global_class_usage_indexed', '1'),
(7685, 658, '_elementor_edit_mode', 'builder'),
(7686, 658, '_elementor_template_type', 'wp-page'),
(7687, 658, '_elementor_version', '4.1.3'),
(7688, 658, '_elementor_pro_version', '4.1.1'),
(7689, 658, '_elementor_global_class_usage_indexed_preview', '1'),
(7690, 658, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(7691, 658, '_elementor_data', '[{\"id\":\"e4108d8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"80f1eca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6941206\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"145d2e0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d16793b\"}]},\"elements\":[{\"id\":\"2e75bdb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"959aa71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a35a9a7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe5b25e\"}],\"pp_display_conditions\":[{\"_id\":\"bb96df4\"}]},\"elements\":[{\"id\":\"29e028c\",\"elType\":\"widget\",\"settings\":{\"widget_title\":\"Book an Appointment\",\"show_progress_bar\":\"\",\"theme_preset\":\"minimal_white\",\"datepicker_type\":\"html\",\"primary_color\":\"#41322d\",\"secondary_color\":\"#ce2162\",\"pp_display_conditions\":[{\"_id\":\"86eaabc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"aab_booking_widget\"}],\"isInner\":true}],\"isInner\":false}]'),
(7692, 658, '_elementor_page_settings', 'a:0:{}'),
(7698, 659, '_elementor_edit_mode', 'builder'),
(7699, 659, '_elementor_template_type', 'wp-page'),
(7700, 659, '_elementor_version', '4.1.3'),
(7701, 659, '_elementor_pro_version', '4.1.1'),
(7702, 659, '_elementor_global_class_usage_indexed_preview', '1'),
(7703, 659, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7704, 659, '_elementor_data', '[{\"id\":\"e4108d8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"80f1eca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6941206\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"145d2e0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d16793b\"}]},\"elements\":[{\"id\":\"2e75bdb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"959aa71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a35a9a7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe5b25e\"}],\"pp_display_conditions\":[{\"_id\":\"bb96df4\"}]},\"elements\":[{\"id\":\"29e028c\",\"elType\":\"widget\",\"settings\":{\"widget_title\":\"Book an Appointment\",\"show_progress_bar\":\"\",\"theme_preset\":\"minimal_white\",\"primary_color\":\"#41322d\",\"secondary_color\":\"#ce2162\",\"pp_display_conditions\":[{\"_id\":\"86eaabc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"aab_booking_widget\"}],\"isInner\":true}],\"isInner\":false}]'),
(7771, 663, '_elementor_page_settings', 'a:0:{}'),
(8815, 739, '_elementor_page_settings', 'a:0:{}'),
(8818, 740, '_wp_page_template', 'elementor_header_footer'),
(8819, 740, '_elementor_global_class_usage_indexed', '1'),
(8820, 740, '_elementor_edit_mode', 'builder'),
(8821, 740, '_elementor_template_type', 'wp-page'),
(8822, 740, '_elementor_version', '4.1.3'),
(8823, 740, '_elementor_pro_version', '4.1.1'),
(8824, 740, '_elementor_global_class_usage_indexed_preview', '1'),
(8825, 740, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(8826, 740, '_elementor_data', '[{\"id\":\"930c0f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e9b1af4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40}},\"elements\":[{\"id\":\"88a3c22\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":616,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mental-contact-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"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\":\"f3587d7\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[{\"id\":\"9d88ee6\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d778882\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f882cf8\",\"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\":\"09:30 AM - 04:30 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sat - Sun\",\"highlight\":\"\",\"highlight_color\":\"#bc1705\",\"_id\":\"5b4030f\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\",\"closed\":\"\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"rows_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"5\",\"bottom\":\"8\",\"left\":\"5\",\"isLinked\":false},\"rows_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"hours_typography_typography\":\"custom\",\"hours_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"hours_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"327b8dd\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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:\\/\\/clinikehr.com\\/book\\/optimal-mental-health-and-wellness-group\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"745f907\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"cafb309\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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=astglobalcolor6\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"636d4e2\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d38a337\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"info@optimalmentalwellness.org\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8828, 740, '_elementor_page_settings', 'a:0:{}'),
(3772, 331, '_wp_page_template', 'elementor_header_footer'),
(3773, 331, '_elementor_edit_mode', 'builder'),
(3774, 331, '_elementor_template_type', 'wp-page'),
(3775, 331, '_elementor_version', '4.1.3'),
(3776, 331, '_elementor_pro_version', '4.1.1'),
(3777, 331, '_elementor_global_class_usage_indexed', '1'),
(3778, 331, '_elementor_global_class_usage_indexed_preview', '1'),
(3779, 331, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3780, 331, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Emergency and Crisis Hotlines\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"Emergency and Crisis Hotlines\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"3e0eb7f\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3822, 334, '_elementor_page_settings', 'a:0:{}'),
(3740, 328, '_elementor_page_settings', 'a:0:{}'),
(7481, 643, '_elementor_global_class_usage_indexed', '1'),
(7483, 643, '_elementor_edit_mode', 'builder'),
(7484, 643, '_elementor_template_type', 'wp-page'),
(7485, 643, '_elementor_version', '4.1.3'),
(7486, 643, '_elementor_pro_version', '4.1.1'),
(7487, 643, '_elementor_global_class_usage_indexed_preview', '1'),
(7488, 643, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(7489, 643, '_elementor_data', '[{\"id\":\"e4108d8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"80f1eca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6941206\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"145d2e0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d16793b\"}]},\"elements\":[{\"id\":\"2e75bdb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"959aa71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a35a9a7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe5b25e\"}],\"pp_display_conditions\":[{\"_id\":\"bb96df4\"}]},\"elements\":[{\"id\":\"29e028c\",\"elType\":\"widget\",\"settings\":{\"widget_title\":\"Book an Appointment\",\"pp_display_conditions\":[{\"_id\":\"86eaabc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"aab_booking_widget\"}],\"isInner\":true}],\"isInner\":false}]'),
(7490, 643, '_elementor_page_settings', 'a:0:{}'),
(7493, 644, '_wp_page_template', 'elementor_header_footer'),
(7494, 644, '_elementor_global_class_usage_indexed', '1'),
(7496, 644, '_elementor_edit_mode', 'builder'),
(7497, 644, '_elementor_template_type', 'wp-page'),
(7498, 644, '_elementor_version', '4.1.3'),
(7499, 644, '_elementor_pro_version', '4.1.1'),
(7500, 644, '_elementor_global_class_usage_indexed_preview', '1'),
(7501, 644, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(7502, 644, '_elementor_data', '[{\"id\":\"e4108d8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"80f1eca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6941206\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"145d2e0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d16793b\"}]},\"elements\":[{\"id\":\"2e75bdb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"959aa71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a35a9a7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe5b25e\"}],\"pp_display_conditions\":[{\"_id\":\"bb96df4\"}]},\"elements\":[{\"id\":\"29e028c\",\"elType\":\"widget\",\"settings\":{\"widget_title\":\"Book an Appointment\",\"pp_display_conditions\":[{\"_id\":\"86eaabc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"aab_booking_widget\"}],\"isInner\":true}],\"isInner\":false}]'),
(7552, 648, '_elementor_edit_mode', 'builder'),
(7553, 648, '_elementor_template_type', 'wp-page'),
(7554, 648, '_elementor_version', '4.1.3'),
(7555, 648, '_elementor_pro_version', '4.1.1'),
(7556, 648, '_elementor_global_class_usage_indexed_preview', '1'),
(7557, 648, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(7558, 648, '_elementor_data', '[{\"id\":\"e4108d8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"80f1eca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6941206\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"145d2e0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d16793b\"}]},\"elements\":[{\"id\":\"2e75bdb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"959aa71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a35a9a7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe5b25e\"}],\"pp_display_conditions\":[{\"_id\":\"bb96df4\"}]},\"elements\":[{\"id\":\"29e028c\",\"elType\":\"widget\",\"settings\":{\"widget_title\":\"Book an Appointment\",\"primary_color\":\"#41322d\",\"secondary_color\":\"#ce2162\",\"pp_display_conditions\":[{\"_id\":\"86eaabc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"aab_booking_widget\"}],\"isInner\":true}],\"isInner\":false}]'),
(7517, 645, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(7518, 645, '_elementor_data', '[{\"id\":\"e4108d8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"80f1eca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6941206\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"145d2e0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d16793b\"}]},\"elements\":[{\"id\":\"2e75bdb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"959aa71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a35a9a7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe5b25e\"}],\"pp_display_conditions\":[{\"_id\":\"bb96df4\"}]},\"elements\":[{\"id\":\"29e028c\",\"elType\":\"widget\",\"settings\":{\"widget_title\":\"Book an Appointment\",\"pp_display_conditions\":[{\"_id\":\"86eaabc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"aab_booking_widget\"}],\"isInner\":true}],\"isInner\":false}]'),
(7519, 645, '_elementor_page_settings', 'a:0:{}'),
(7522, 646, '_wp_page_template', 'elementor_header_footer'),
(7523, 646, '_elementor_global_class_usage_indexed', '1'),
(7525, 646, '_elementor_edit_mode', 'builder'),
(7526, 646, '_elementor_template_type', 'wp-page'),
(7527, 646, '_elementor_version', '4.1.3'),
(7528, 646, '_elementor_pro_version', '4.1.1'),
(7529, 646, '_elementor_global_class_usage_indexed_preview', '1'),
(7530, 646, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(7531, 646, '_elementor_data', '[{\"id\":\"e4108d8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"80f1eca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6941206\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"145d2e0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d16793b\"}]},\"elements\":[{\"id\":\"2e75bdb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"959aa71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a35a9a7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe5b25e\"}],\"pp_display_conditions\":[{\"_id\":\"bb96df4\"}]},\"elements\":[{\"id\":\"29e028c\",\"elType\":\"widget\",\"settings\":{\"widget_title\":\"Book an Appointment\",\"pp_display_conditions\":[{\"_id\":\"86eaabc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"aab_booking_widget\"}],\"isInner\":true}],\"isInner\":false}]'),
(7532, 646, '_elementor_page_settings', 'a:0:{}'),
(7536, 647, '_elementor_global_class_usage_indexed', '1'),
(7538, 647, '_elementor_edit_mode', 'builder'),
(7539, 647, '_elementor_template_type', 'wp-page'),
(7540, 647, '_elementor_version', '4.1.3'),
(7541, 647, '_elementor_pro_version', '4.1.1'),
(7542, 647, '_elementor_global_class_usage_indexed_preview', '1'),
(7543, 647, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(7544, 647, '_elementor_data', '[{\"id\":\"e4108d8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"80f1eca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6941206\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"145d2e0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d16793b\"}]},\"elements\":[{\"id\":\"2e75bdb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"959aa71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a35a9a7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe5b25e\"}],\"pp_display_conditions\":[{\"_id\":\"bb96df4\"}]},\"elements\":[{\"id\":\"29e028c\",\"elType\":\"widget\",\"settings\":{\"widget_title\":\"Book an Appointment\",\"primary_color\":\"#41322d\",\"secondary_color\":\"#ce2162\",\"pp_display_conditions\":[{\"_id\":\"86eaabc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"aab_booking_widget\"}],\"isInner\":true}],\"isInner\":false}]'),
(7559, 648, '_elementor_page_settings', 'a:0:{}'),
(7560, 649, '_wp_page_template', 'elementor_header_footer'),
(7561, 649, '_elementor_global_class_usage_indexed', '1');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7563, 649, '_elementor_edit_mode', 'builder'),
(7564, 649, '_elementor_template_type', 'wp-page'),
(7565, 649, '_elementor_version', '4.1.3'),
(7566, 649, '_elementor_pro_version', '4.1.1'),
(7567, 649, '_elementor_global_class_usage_indexed_preview', '1'),
(7568, 649, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(7569, 649, '_elementor_data', '[{\"id\":\"e4108d8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"80f1eca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6941206\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"145d2e0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d16793b\"}]},\"elements\":[{\"id\":\"2e75bdb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"959aa71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a35a9a7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe5b25e\"}],\"pp_display_conditions\":[{\"_id\":\"bb96df4\"}]},\"elements\":[{\"id\":\"29e028c\",\"elType\":\"widget\",\"settings\":{\"widget_title\":\"Book an Appointment\",\"primary_color\":\"#41322d\",\"secondary_color\":\"#ce2162\",\"pp_display_conditions\":[{\"_id\":\"86eaabc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"aab_booking_widget\"}],\"isInner\":true}],\"isInner\":false}]'),
(7570, 649, '_elementor_page_settings', 'a:0:{}'),
(7571, 650, '_wp_page_template', 'elementor_header_footer'),
(7572, 650, '_elementor_global_class_usage_indexed', '1'),
(7574, 650, '_elementor_edit_mode', 'builder'),
(7575, 650, '_elementor_template_type', 'wp-page'),
(7576, 650, '_elementor_version', '4.1.3'),
(7577, 650, '_elementor_pro_version', '4.1.1'),
(7578, 650, '_elementor_global_class_usage_indexed_preview', '1'),
(7579, 650, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(7580, 650, '_elementor_data', '[{\"id\":\"e4108d8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"80f1eca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6941206\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"145d2e0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d16793b\"}]},\"elements\":[{\"id\":\"2e75bdb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"959aa71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a35a9a7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe5b25e\"}],\"pp_display_conditions\":[{\"_id\":\"bb96df4\"}]},\"elements\":[{\"id\":\"29e028c\",\"elType\":\"widget\",\"settings\":{\"widget_title\":\"Book an Appointment\",\"show_progress_bar\":\"\",\"primary_color\":\"#41322d\",\"secondary_color\":\"#ce2162\",\"pp_display_conditions\":[{\"_id\":\"86eaabc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"aab_booking_widget\"}],\"isInner\":true}],\"isInner\":false}]'),
(7611, 653, '_wp_page_template', 'elementor_header_footer'),
(7585, 651, '_wp_page_template', 'elementor_header_footer'),
(7586, 651, '_elementor_global_class_usage_indexed', '1'),
(7588, 651, '_elementor_edit_mode', 'builder'),
(7589, 651, '_elementor_template_type', 'wp-page'),
(7590, 651, '_elementor_version', '4.1.3'),
(7591, 651, '_elementor_pro_version', '4.1.1'),
(7592, 651, '_elementor_global_class_usage_indexed_preview', '1'),
(7593, 651, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(7695, 659, '_wp_page_template', 'elementor_header_footer'),
(7627, 654, '_wp_page_template', 'elementor_header_footer'),
(7628, 654, '_elementor_global_class_usage_indexed', '1'),
(7630, 654, '_elementor_edit_mode', 'builder'),
(7631, 654, '_elementor_template_type', 'wp-page'),
(7632, 654, '_elementor_version', '4.1.3'),
(7633, 654, '_elementor_pro_version', '4.1.1'),
(7634, 654, '_elementor_global_class_usage_indexed_preview', '1'),
(7635, 654, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(7636, 654, '_elementor_data', '[{\"id\":\"e4108d8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"80f1eca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6941206\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"145d2e0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d16793b\"}]},\"elements\":[{\"id\":\"2e75bdb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"959aa71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a35a9a7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe5b25e\"}],\"pp_display_conditions\":[{\"_id\":\"bb96df4\"}]},\"elements\":[{\"id\":\"29e028c\",\"elType\":\"widget\",\"settings\":{\"widget_title\":\"Book an Appointment\",\"show_progress_bar\":\"\",\"theme_preset\":\"minimal_white\",\"primary_color\":\"#41322d\",\"secondary_color\":\"#ce2162\",\"pp_display_conditions\":[{\"_id\":\"86eaabc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"aab_booking_widget\"}],\"isInner\":true}],\"isInner\":false}]'),
(7594, 651, '_elementor_data', '[{\"id\":\"e4108d8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"80f1eca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6941206\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"145d2e0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d16793b\"}]},\"elements\":[{\"id\":\"2e75bdb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"959aa71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a35a9a7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe5b25e\"}],\"pp_display_conditions\":[{\"_id\":\"bb96df4\"}]},\"elements\":[{\"id\":\"29e028c\",\"elType\":\"widget\",\"settings\":{\"widget_title\":\"Book an Appointment\",\"show_progress_bar\":\"\",\"primary_color\":\"#41322d\",\"secondary_color\":\"#ce2162\",\"pp_display_conditions\":[{\"_id\":\"86eaabc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"aab_booking_widget\"}],\"isInner\":true}],\"isInner\":false}]'),
(7595, 651, '_elementor_page_settings', 'a:0:{}'),
(7598, 652, '_wp_page_template', 'elementor_header_footer'),
(7599, 652, '_elementor_global_class_usage_indexed', '1'),
(7601, 652, '_elementor_edit_mode', 'builder'),
(7602, 652, '_elementor_template_type', 'wp-page'),
(7603, 652, '_elementor_version', '4.1.3'),
(7604, 652, '_elementor_pro_version', '4.1.1'),
(7605, 652, '_elementor_global_class_usage_indexed_preview', '1'),
(7606, 652, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(7607, 652, '_elementor_data', '[{\"id\":\"e4108d8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"80f1eca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6941206\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"145d2e0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d16793b\"}]},\"elements\":[{\"id\":\"2e75bdb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"959aa71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a35a9a7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe5b25e\"}],\"pp_display_conditions\":[{\"_id\":\"bb96df4\"}]},\"elements\":[{\"id\":\"29e028c\",\"elType\":\"widget\",\"settings\":{\"widget_title\":\"Book an Appointment\",\"show_progress_bar\":\"\",\"primary_color\":\"#41322d\",\"secondary_color\":\"#ce2162\",\"pp_display_conditions\":[{\"_id\":\"86eaabc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"aab_booking_widget\"}],\"isInner\":true}],\"isInner\":false}]'),
(3743, 329, '_wp_page_template', 'elementor_header_footer'),
(3744, 329, '_elementor_edit_mode', 'builder'),
(3745, 329, '_elementor_template_type', 'wp-page'),
(3746, 329, '_elementor_version', '4.1.3'),
(3747, 329, '_elementor_pro_version', '4.1.1'),
(3748, 329, '_elementor_global_class_usage_indexed', '1'),
(3749, 329, '_elementor_global_class_usage_indexed_preview', '1'),
(3750, 329, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(3751, 329, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(3753, 329, '_elementor_page_settings', 'a:0:{}'),
(7364, 18, '_elementor_edit_mode', 'builder'),
(7365, 18, '_astra_content_layout_flag', 'disabled'),
(7395, 18, '_elementor_data', '[{\"id\":\"e4108d8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"80f1eca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6941206\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"145d2e0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"book_appoinment\",\"pp_display_conditions\":[{\"_id\":\"d16793b\"}]},\"elements\":[{\"id\":\"2e75bdb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"959aa71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a35a9a7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe5b25e\"}],\"pp_display_conditions\":[{\"_id\":\"bb96df4\"}]},\"elements\":[{\"id\":\"29e028c\",\"elType\":\"widget\",\"settings\":{\"widget_title\":\"Book an Appointment\",\"show_progress_bar\":\"\",\"theme_preset\":\"minimal_white\",\"primary_color\":\"#41322d\",\"secondary_color\":\"#ce2162\",\"pp_display_conditions\":[{\"_id\":\"86eaabc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"aab_booking_widget\"}],\"isInner\":true}],\"isInner\":false}]'),
(7367, 18, 'ast-title-bar-display', 'disabled'),
(7368, 18, 'ast-featured-img', 'disabled'),
(7369, 18, '_elementor_template_type', 'wp-page'),
(7370, 18, '_elementor_version', '4.1.3'),
(7371, 18, '_elementor_pro_version', '4.1.1'),
(7373, 18, '_elementor_global_class_usage_indexed_preview', '1'),
(7374, 18, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(7375, 635, '_wp_page_template', 'elementor_header_footer'),
(7376, 635, '_elementor_global_class_usage_indexed', '1'),
(7378, 635, '_elementor_edit_mode', 'builder'),
(7379, 635, '_elementor_template_type', 'wp-page'),
(7380, 635, '_elementor_version', '4.1.3'),
(7381, 635, '_elementor_pro_version', '4.1.1'),
(7382, 635, '_elementor_page_settings', 'a:0:{}'),
(7383, 635, '_elementor_global_class_usage_indexed_preview', '1'),
(7384, 635, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(7385, 636, '_wp_page_template', 'elementor_header_footer'),
(7386, 636, '_elementor_global_class_usage_indexed', '1'),
(7388, 636, '_elementor_edit_mode', 'builder'),
(7389, 636, '_elementor_template_type', 'wp-page'),
(7390, 636, '_elementor_version', '4.1.3'),
(7391, 636, '_elementor_pro_version', '4.1.1'),
(7392, 636, '_elementor_page_settings', 'a:0:{}'),
(7393, 636, '_elementor_global_class_usage_indexed_preview', '1'),
(7394, 636, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(7396, 637, '_wp_page_template', 'elementor_header_footer'),
(7397, 637, '_elementor_global_class_usage_indexed', '1'),
(7399, 637, '_elementor_edit_mode', 'builder'),
(7400, 637, '_elementor_template_type', 'wp-page'),
(7401, 637, '_elementor_version', '4.1.3'),
(7402, 637, '_elementor_pro_version', '4.1.1'),
(7403, 637, '_elementor_global_class_usage_indexed_preview', '1'),
(7404, 637, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7405, 637, '_elementor_data', '[{\"id\":\"e4108d8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"80f1eca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6941206\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"145d2e0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d16793b\"}]},\"elements\":[{\"id\":\"2e75bdb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"959aa71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a35a9a7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe5b25e\"}],\"pp_display_conditions\":[{\"_id\":\"bb96df4\"}]},\"elements\":[{\"id\":\"29e028c\",\"elType\":\"widget\",\"settings\":{\"widget_title\":\"Book an Appointment\",\"pp_display_conditions\":[{\"_id\":\"86eaabc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"aab_booking_widget\"}],\"isInner\":true}],\"isInner\":false}]'),
(7425, 639, '_wp_page_template', 'elementor_header_footer'),
(7426, 639, '_elementor_global_class_usage_indexed', '1'),
(7428, 639, '_elementor_edit_mode', 'builder'),
(7429, 639, '_elementor_template_type', 'wp-page'),
(7430, 639, '_elementor_version', '4.1.3'),
(7431, 639, '_elementor_pro_version', '4.1.1'),
(7432, 639, '_elementor_global_class_usage_indexed_preview', '1'),
(7467, 642, '_wp_page_template', 'elementor_header_footer'),
(7468, 642, '_elementor_global_class_usage_indexed', '1'),
(7470, 642, '_elementor_edit_mode', 'builder'),
(7471, 642, '_elementor_template_type', 'wp-page'),
(7472, 642, '_elementor_version', '4.1.3'),
(7473, 642, '_elementor_pro_version', '4.1.1'),
(7474, 642, '_elementor_global_class_usage_indexed_preview', '1'),
(7549, 648, '_wp_page_template', 'elementor_header_footer'),
(7550, 648, '_elementor_global_class_usage_indexed', '1'),
(7411, 638, '_elementor_edit_mode', 'builder'),
(7412, 638, '_wp_page_template', 'elementor_header_footer'),
(7413, 638, '_elementor_global_class_usage_indexed', '1'),
(7415, 638, '_elementor_template_type', 'wp-page'),
(7416, 638, '_elementor_version', '4.1.3'),
(7417, 638, '_elementor_pro_version', '4.1.1'),
(7418, 638, '_elementor_global_class_usage_indexed_preview', '1'),
(7419, 638, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(7420, 638, '_elementor_data', '[{\"id\":\"e4108d8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"80f1eca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6941206\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"145d2e0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d16793b\"}]},\"elements\":[{\"id\":\"2e75bdb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"959aa71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a35a9a7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe5b25e\"}],\"pp_display_conditions\":[{\"_id\":\"bb96df4\"}]},\"elements\":[{\"id\":\"29e028c\",\"elType\":\"widget\",\"settings\":{\"widget_title\":\"Book an Appointment\",\"pp_display_conditions\":[{\"_id\":\"86eaabc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"aab_booking_widget\"}],\"isInner\":true}],\"isInner\":false}]'),
(7421, 638, '_elementor_page_settings', 'a:0:{}'),
(7422, 638, '_elementor_controls_usage', 'a:2:{s:18:\"aab_booking_widget\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:1:{s:13:\"content_width\";i:1;}}s:5:\"style\";a:1:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:2;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}}'),
(7433, 639, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(7434, 639, '_elementor_data', '[{\"id\":\"e4108d8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"80f1eca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6941206\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"145d2e0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d16793b\"}]},\"elements\":[{\"id\":\"2e75bdb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"959aa71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a35a9a7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe5b25e\"}],\"pp_display_conditions\":[{\"_id\":\"bb96df4\"}]},\"elements\":[{\"id\":\"29e028c\",\"elType\":\"widget\",\"settings\":{\"widget_title\":\"Book an Appointment\",\"pp_display_conditions\":[{\"_id\":\"86eaabc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"aab_booking_widget\"}],\"isInner\":true}],\"isInner\":false}]'),
(7435, 639, '_elementor_page_settings', 'a:0:{}'),
(7438, 640, '_wp_page_template', 'elementor_header_footer'),
(7439, 640, '_elementor_global_class_usage_indexed', '1'),
(7441, 640, '_elementor_edit_mode', 'builder'),
(7442, 640, '_elementor_template_type', 'wp-page'),
(7443, 640, '_elementor_version', '4.1.3'),
(7444, 640, '_elementor_pro_version', '4.1.1'),
(7445, 640, '_elementor_global_class_usage_indexed_preview', '1'),
(7446, 640, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(7447, 640, '_elementor_data', '[{\"id\":\"e4108d8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"80f1eca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6941206\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"145d2e0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d16793b\"}]},\"elements\":[{\"id\":\"2e75bdb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"959aa71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a35a9a7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe5b25e\"}],\"pp_display_conditions\":[{\"_id\":\"bb96df4\"}]},\"elements\":[{\"id\":\"29e028c\",\"elType\":\"widget\",\"settings\":{\"widget_title\":\"Book an Appointment\",\"pp_display_conditions\":[{\"_id\":\"86eaabc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"aab_booking_widget\"}],\"isInner\":true}],\"isInner\":false}]'),
(7448, 640, '_elementor_page_settings', 'a:0:{}'),
(7451, 641, '_wp_page_template', 'elementor_header_footer'),
(7452, 641, '_elementor_global_class_usage_indexed', '1'),
(7454, 641, '_elementor_edit_mode', 'builder'),
(7455, 641, '_elementor_template_type', 'wp-page'),
(7456, 641, '_elementor_version', '4.1.3'),
(7457, 641, '_elementor_pro_version', '4.1.1'),
(7458, 641, '_elementor_global_class_usage_indexed_preview', '1'),
(7459, 641, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(7460, 641, '_elementor_data', '[{\"id\":\"e4108d8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"80f1eca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6941206\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"145d2e0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d16793b\"}]},\"elements\":[{\"id\":\"2e75bdb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"959aa71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a35a9a7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe5b25e\"}],\"pp_display_conditions\":[{\"_id\":\"bb96df4\"}]},\"elements\":[{\"id\":\"29e028c\",\"elType\":\"widget\",\"settings\":{\"widget_title\":\"Book an Appointment\",\"pp_display_conditions\":[{\"_id\":\"86eaabc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"aab_booking_widget\"}],\"isInner\":true}],\"isInner\":false}]'),
(7535, 647, '_wp_page_template', 'elementor_header_footer'),
(7509, 645, '_wp_page_template', 'elementor_header_footer'),
(7510, 645, '_elementor_global_class_usage_indexed', '1'),
(7512, 645, '_elementor_edit_mode', 'builder'),
(7513, 645, '_elementor_template_type', 'wp-page'),
(7514, 645, '_elementor_version', '4.1.3'),
(7515, 645, '_elementor_pro_version', '4.1.1'),
(7516, 645, '_elementor_global_class_usage_indexed_preview', '1'),
(7475, 642, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(7476, 642, '_elementor_data', '[{\"id\":\"e4108d8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"80f1eca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6941206\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"145d2e0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d16793b\"}]},\"elements\":[{\"id\":\"2e75bdb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"959aa71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a35a9a7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe5b25e\"}],\"pp_display_conditions\":[{\"_id\":\"bb96df4\"}]},\"elements\":[{\"id\":\"29e028c\",\"elType\":\"widget\",\"settings\":{\"widget_title\":\"Book an Appointment\",\"pp_display_conditions\":[{\"_id\":\"86eaabc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"aab_booking_widget\"}],\"isInner\":true}],\"isInner\":false}]'),
(7477, 642, '_elementor_page_settings', 'a:0:{}'),
(7480, 643, '_wp_page_template', 'elementor_header_footer'),
(3798, 333, '_wp_page_template', 'elementor_header_footer'),
(3799, 333, '_elementor_edit_mode', 'builder'),
(3800, 333, '_elementor_template_type', 'wp-page'),
(3801, 333, '_elementor_version', '4.1.3'),
(3802, 333, '_elementor_pro_version', '4.1.1'),
(3803, 333, '_elementor_global_class_usage_indexed', '1'),
(3804, 333, '_elementor_global_class_usage_indexed_preview', '1'),
(3756, 330, '_wp_page_template', 'elementor_header_footer'),
(3757, 330, '_elementor_edit_mode', 'builder'),
(3758, 330, '_elementor_template_type', 'wp-page'),
(3759, 330, '_elementor_version', '4.1.3'),
(3760, 330, '_elementor_pro_version', '4.1.1'),
(3761, 330, '_elementor_global_class_usage_indexed', '1'),
(3762, 330, '_elementor_global_class_usage_indexed_preview', '1'),
(3763, 330, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3764, 330, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Emergency and Crisis Hotlines\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"Emergency and Crisis Hotlines\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"3e0eb7f\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(7349, 633, '_elementor_page_settings', 'a:0:{}'),
(7350, 634, '_wp_page_template', 'elementor_header_footer'),
(7351, 634, '_elementor_global_class_usage_indexed', '1'),
(7353, 634, '_elementor_edit_mode', 'builder'),
(7354, 634, '_elementor_template_type', 'wp-page'),
(7355, 634, '_elementor_version', '4.1.3'),
(7356, 634, '_elementor_pro_version', '4.1.1'),
(7357, 634, '_elementor_global_class_usage_indexed_preview', '1'),
(7358, 634, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7359, 634, '_elementor_data', '[{\"id\":\"930c0f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e9b1af4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40}},\"elements\":[{\"id\":\"88a3c22\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":616,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mental-contact-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"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\":\"f3587d7\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[{\"id\":\"9d88ee6\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d778882\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f882cf8\",\"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\":\"05:30 AM - 08:30 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sat - Sun\",\"highlight\":\"\",\"highlight_color\":\"#bc1705\",\"_id\":\"5b4030f\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"8:00 AM - 1:00 PM\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"rows_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"5\",\"bottom\":\"8\",\"left\":\"5\",\"isLinked\":false},\"rows_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"hours_typography_typography\":\"custom\",\"hours_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"hours_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"327b8dd\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"745f907\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"cafb309\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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=astglobalcolor6\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"636d4e2\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d38a337\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"info@optimalmentalwellness.org\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8763, 736, '_wp_page_template', 'elementor_header_footer'),
(8764, 736, '_elementor_global_class_usage_indexed', '1'),
(8765, 736, '_elementor_edit_mode', 'builder'),
(8766, 736, '_elementor_template_type', 'wp-page'),
(8767, 736, '_elementor_version', '4.1.3'),
(8768, 736, '_elementor_pro_version', '4.1.1'),
(8769, 736, '_elementor_global_class_usage_indexed_preview', '1'),
(8770, 736, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(8771, 736, '_elementor_data', '[{\"id\":\"930c0f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e9b1af4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40}},\"elements\":[{\"id\":\"88a3c22\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":616,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mental-contact-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"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\":\"f3587d7\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[{\"id\":\"9d88ee6\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d778882\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f882cf8\",\"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\":\"05:30 AM - 08:30 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sat - Sun\",\"highlight\":\"\",\"highlight_color\":\"#bc1705\",\"_id\":\"5b4030f\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"8:00 AM - 1:00 PM\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"rows_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"5\",\"bottom\":\"8\",\"left\":\"5\",\"isLinked\":false},\"rows_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"hours_typography_typography\":\"custom\",\"hours_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"hours_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"327b8dd\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"745f907\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"cafb309\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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=astglobalcolor6\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"636d4e2\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d38a337\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"info@optimalmentalwellness.org\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3812, 334, '_wp_page_template', 'elementor_header_footer'),
(3813, 334, '_elementor_edit_mode', 'builder'),
(3814, 334, '_elementor_template_type', 'wp-page'),
(3815, 334, '_elementor_version', '4.1.3'),
(3816, 334, '_elementor_pro_version', '4.1.1'),
(3817, 334, '_elementor_global_class_usage_indexed', '1'),
(3818, 334, '_elementor_global_class_usage_indexed_preview', '1'),
(3819, 334, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3820, 334, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"Text HOME to 741741\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3782, 331, '_elementor_page_settings', 'a:0:{}'),
(7775, 664, '_wp_page_template', 'elementor_header_footer'),
(7776, 664, '_elementor_edit_mode', 'builder'),
(7777, 664, '_elementor_template_type', 'wp-page'),
(7778, 664, '_elementor_version', '4.1.3'),
(7779, 664, '_elementor_pro_version', '4.1.1'),
(7780, 664, '_elementor_global_class_usage_indexed', '1'),
(7781, 664, '_elementor_global_class_usage_indexed_preview', '1'),
(7782, 664, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7783, 664, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"},\"hide_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\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(7338, 632, '_elementor_page_settings', 'a:0:{}'),
(7339, 633, '_wp_page_template', 'elementor_header_footer'),
(7340, 633, '_elementor_global_class_usage_indexed', '1'),
(7342, 633, '_elementor_edit_mode', 'builder'),
(7343, 633, '_elementor_template_type', 'wp-page'),
(7344, 633, '_elementor_version', '4.1.3'),
(7345, 633, '_elementor_pro_version', '4.1.1'),
(7346, 633, '_elementor_global_class_usage_indexed_preview', '1'),
(7347, 633, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7348, 633, '_elementor_data', '[{\"id\":\"930c0f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e9b1af4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40}},\"elements\":[{\"id\":\"88a3c22\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":616,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mental-contact-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"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\":\"f3587d7\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9d88ee6\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d778882\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f882cf8\",\"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\":\"05:30 AM - 08:30 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sat - Sun\",\"highlight\":\"\",\"highlight_color\":\"#bc1705\",\"_id\":\"5b4030f\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"8:00 AM - 1:00 PM\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"rows_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"5\",\"bottom\":\"8\",\"left\":\"5\",\"isLinked\":false},\"rows_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hours_typography_typography\":\"custom\",\"hours_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"hours_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"327b8dd\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"745f907\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"cafb309\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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=astglobalcolor6\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"636d4e2\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d38a337\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"info@optimalmentalwellness.org\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3785, 332, '_wp_page_template', 'elementor_header_footer'),
(3786, 332, '_elementor_edit_mode', 'builder'),
(3787, 332, '_elementor_template_type', 'wp-page'),
(3788, 332, '_elementor_version', '4.1.3'),
(3789, 332, '_elementor_pro_version', '4.1.1'),
(3790, 332, '_elementor_global_class_usage_indexed', '1'),
(3791, 332, '_elementor_global_class_usage_indexed_preview', '1'),
(3792, 332, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3793, 332, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Emergency and Crisis Hotlines\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"Emergency and Crisis Hotlines\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"3e0eb7f\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3795, 332, '_elementor_page_settings', 'a:0:{}'),
(7311, 630, '_elementor_page_settings', 'a:0:{}'),
(7314, 631, '_wp_page_template', 'elementor_header_footer'),
(7315, 631, '_elementor_global_class_usage_indexed', '1'),
(7317, 631, '_elementor_edit_mode', 'builder'),
(7318, 631, '_elementor_template_type', 'wp-page'),
(7319, 631, '_elementor_version', '4.1.3'),
(7320, 631, '_elementor_pro_version', '4.1.1'),
(7321, 631, '_elementor_global_class_usage_indexed_preview', '1'),
(7322, 631, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7323, 631, '_elementor_data', '[{\"id\":\"930c0f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e9b1af4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40}},\"elements\":[{\"id\":\"88a3c22\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":616,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mental-contact-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"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\":\"f3587d7\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9d88ee6\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d778882\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f882cf8\",\"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\":\"05:30 AM - 08:30 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sat - Sun\",\"highlight\":\"\",\"highlight_color\":\"#bc1705\",\"_id\":\"5b4030f\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"8:00 AM - 1:00 PM\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"rows_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"5\",\"bottom\":\"8\",\"left\":\"5\",\"isLinked\":false},\"rows_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hours_typography_typography\":\"custom\",\"hours_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"hours_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"327b8dd\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"745f907\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"cafb309\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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=astglobalcolor6\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"636d4e2\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d38a337\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"info@optimalmentalwellness.org\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3805, 333, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3806, 333, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"Text HOME to 741741\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(7298, 629, '_elementor_page_settings', 'a:0:{}'),
(7301, 630, '_wp_page_template', 'elementor_header_footer'),
(7302, 630, '_elementor_global_class_usage_indexed', '1'),
(7304, 630, '_elementor_edit_mode', 'builder'),
(7305, 630, '_elementor_template_type', 'wp-page'),
(7306, 630, '_elementor_version', '4.1.3'),
(7307, 630, '_elementor_pro_version', '4.1.1'),
(7308, 630, '_elementor_global_class_usage_indexed_preview', '1'),
(7309, 630, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7310, 630, '_elementor_data', '[{\"id\":\"930c0f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e9b1af4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40}},\"elements\":[{\"id\":\"88a3c22\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":616,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mental-contact-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"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\":\"f3587d7\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9d88ee6\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d778882\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f882cf8\",\"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\":\"05:30 AM - 08:30 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sat - Sun\",\"highlight\":\"\",\"highlight_color\":\"#bc1705\",\"_id\":\"5b4030f\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"8:00 AM - 1:00 PM\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"327b8dd\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"745f907\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"cafb309\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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=astglobalcolor6\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"636d4e2\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d38a337\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"info@optimalmentalwellness.org\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3823, 335, '_wp_page_template', 'elementor_header_footer'),
(3824, 335, '_elementor_edit_mode', 'builder'),
(3825, 335, '_elementor_template_type', 'wp-page'),
(3826, 335, '_elementor_version', '4.1.3'),
(3827, 335, '_elementor_pro_version', '4.1.1'),
(3828, 335, '_elementor_global_class_usage_indexed', '1'),
(3829, 335, '_elementor_global_class_usage_indexed_preview', '1'),
(3830, 335, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3831, 335, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"Text HOME to 741741\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3833, 335, '_elementor_page_settings', 'a:0:{}'),
(3834, 336, '_wp_page_template', 'elementor_header_footer'),
(3835, 336, '_elementor_edit_mode', 'builder'),
(3836, 336, '_elementor_template_type', 'wp-page'),
(3837, 336, '_elementor_version', '4.1.3'),
(3838, 336, '_elementor_pro_version', '4.1.1'),
(3839, 336, '_elementor_global_class_usage_indexed', '1'),
(3840, 336, '_elementor_global_class_usage_indexed_preview', '1'),
(3841, 336, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3842, 336, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"Text HOME to 741741\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"Substance Abuse and Mental Health Services Administration\\n\\nPhone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3846, 337, '_wp_page_template', 'elementor_header_footer'),
(3847, 337, '_elementor_edit_mode', 'builder'),
(3848, 337, '_elementor_template_type', 'wp-page'),
(3849, 337, '_elementor_version', '4.1.3'),
(3850, 337, '_elementor_pro_version', '4.1.1'),
(3851, 337, '_elementor_global_class_usage_indexed', '1'),
(3852, 337, '_elementor_global_class_usage_indexed_preview', '1'),
(3853, 337, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3854, 337, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"Text HOME to 741741\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"Substance Abuse and Mental Health Services Administration\\n\\nPhone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3856, 337, '_elementor_page_settings', 'a:0:{}'),
(3857, 338, '_wp_page_template', 'elementor_header_footer'),
(3858, 338, '_elementor_edit_mode', 'builder'),
(3859, 338, '_elementor_template_type', 'wp-page'),
(3860, 338, '_elementor_version', '4.1.3'),
(3861, 338, '_elementor_pro_version', '4.1.1'),
(3862, 338, '_elementor_global_class_usage_indexed', '1'),
(3863, 338, '_elementor_global_class_usage_indexed_preview', '1'),
(3864, 338, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3865, 338, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"Text HOME to 741741\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"Substance Abuse and Mental Health Services Administration\\n\\nPhone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(6454, 561, '_elementor_template_type', 'header'),
(6455, 561, '_elementor_version', '4.1.3'),
(6456, 561, '_elementor_pro_version', '4.1.1'),
(6457, 561, '_elementor_global_class_usage_indexed', '1'),
(3867, 338, '_elementor_page_settings', 'a:0:{}'),
(3868, 339, '_wp_page_template', 'elementor_header_footer'),
(3869, 339, '_elementor_edit_mode', 'builder'),
(3870, 339, '_elementor_template_type', 'wp-page'),
(3871, 339, '_elementor_version', '4.1.3'),
(3872, 339, '_elementor_pro_version', '4.1.1'),
(3873, 339, '_elementor_global_class_usage_indexed', '1'),
(3874, 339, '_elementor_global_class_usage_indexed_preview', '1'),
(3875, 339, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3876, 339, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"Substance Abuse and Mental Health Services Administration\\n\\nPhone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><br \\/><br \\/>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3880, 340, '_wp_page_template', 'elementor_header_footer'),
(3881, 340, '_elementor_edit_mode', 'builder'),
(3882, 340, '_elementor_template_type', 'wp-page'),
(3883, 340, '_elementor_version', '4.1.3'),
(3884, 340, '_elementor_pro_version', '4.1.1'),
(3885, 340, '_elementor_global_class_usage_indexed', '1'),
(3886, 340, '_elementor_global_class_usage_indexed_preview', '1'),
(3887, 340, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3888, 340, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"Substance Abuse and Mental Health Services Administration\\n\\nPhone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><br \\/><br \\/>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3890, 340, '_elementor_page_settings', 'a:0:{}'),
(3891, 341, '_wp_page_template', 'elementor_header_footer'),
(3892, 341, '_elementor_edit_mode', 'builder'),
(3893, 341, '_elementor_template_type', 'wp-page'),
(3894, 341, '_elementor_version', '4.1.3'),
(3895, 341, '_elementor_pro_version', '4.1.1'),
(3896, 341, '_elementor_global_class_usage_indexed', '1'),
(3897, 341, '_elementor_global_class_usage_indexed_preview', '1'),
(3898, 341, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3899, 341, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"Substance Abuse and Mental Health Services Administration\\n\\nPhone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><br \\/><br \\/>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3901, 341, '_elementor_page_settings', 'a:0:{}'),
(3902, 342, '_wp_page_template', 'elementor_header_footer'),
(3903, 342, '_elementor_edit_mode', 'builder'),
(3904, 342, '_elementor_template_type', 'wp-page'),
(3905, 342, '_elementor_version', '4.1.3'),
(3906, 342, '_elementor_pro_version', '4.1.1'),
(3907, 342, '_elementor_global_class_usage_indexed', '1'),
(3908, 342, '_elementor_global_class_usage_indexed_preview', '1'),
(3909, 342, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3910, 342, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"Substance Abuse and Mental Health Services Administration\\n\\nPhone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><br \\/><br \\/>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3914, 343, '_wp_page_template', 'elementor_header_footer'),
(3915, 343, '_elementor_edit_mode', 'builder'),
(3916, 343, '_elementor_template_type', 'wp-page'),
(3917, 343, '_elementor_version', '4.1.3'),
(3918, 343, '_elementor_pro_version', '4.1.1'),
(3919, 343, '_elementor_global_class_usage_indexed', '1'),
(3920, 343, '_elementor_global_class_usage_indexed_preview', '1'),
(3921, 343, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3922, 343, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"Substance Abuse and Mental Health Services Administration\\n\\nPhone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><br \\/><br \\/>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3924, 343, '_elementor_page_settings', 'a:0:{}'),
(3925, 344, '_wp_page_template', 'elementor_header_footer'),
(3926, 344, '_elementor_edit_mode', 'builder'),
(3927, 344, '_elementor_template_type', 'wp-page'),
(3928, 344, '_elementor_version', '4.1.3'),
(3929, 344, '_elementor_pro_version', '4.1.1'),
(3930, 344, '_elementor_global_class_usage_indexed', '1'),
(3931, 344, '_elementor_global_class_usage_indexed_preview', '1'),
(3932, 344, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3933, 344, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"Substance Abuse and Mental Health Services Administration\\n\\nPhone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><br \\/><br \\/>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3935, 344, '_elementor_page_settings', 'a:0:{}'),
(3936, 345, '_wp_page_template', 'elementor_header_footer'),
(3937, 345, '_elementor_edit_mode', 'builder'),
(3938, 345, '_elementor_template_type', 'wp-page'),
(3939, 345, '_elementor_version', '4.1.3'),
(3940, 345, '_elementor_pro_version', '4.1.1'),
(3941, 345, '_elementor_global_class_usage_indexed', '1'),
(3942, 345, '_elementor_global_class_usage_indexed_preview', '1'),
(3943, 345, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3944, 345, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"Substance Abuse and Mental Health Services Administration\\n\\nPhone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><br \\/><br \\/>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3948, 346, '_wp_page_template', 'elementor_header_footer'),
(3949, 346, '_elementor_edit_mode', 'builder'),
(3950, 346, '_elementor_template_type', 'wp-page'),
(3951, 346, '_elementor_version', '4.1.3'),
(3952, 346, '_elementor_pro_version', '4.1.1'),
(3953, 346, '_elementor_global_class_usage_indexed', '1'),
(3954, 346, '_elementor_global_class_usage_indexed_preview', '1'),
(3955, 346, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3956, 346, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"Substance Abuse and Mental Health Services Administration\\n\\nPhone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><br \\/><br \\/>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3958, 346, '_elementor_page_settings', 'a:0:{}'),
(3959, 347, '_wp_page_template', 'elementor_header_footer'),
(3960, 347, '_elementor_edit_mode', 'builder'),
(3961, 347, '_elementor_template_type', 'wp-page'),
(3962, 347, '_elementor_version', '4.1.3'),
(3963, 347, '_elementor_pro_version', '4.1.1'),
(3964, 347, '_elementor_global_class_usage_indexed', '1'),
(3965, 347, '_elementor_global_class_usage_indexed_preview', '1'),
(3966, 347, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3967, 347, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"Substance Abuse and Mental Health Services Administration\\n\\nPhone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><br \\/><br \\/>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3969, 347, '_elementor_page_settings', 'a:0:{}'),
(3970, 348, '_wp_page_template', 'elementor_header_footer'),
(3971, 348, '_elementor_edit_mode', 'builder'),
(3972, 348, '_elementor_template_type', 'wp-page'),
(3973, 348, '_elementor_version', '4.1.3'),
(3974, 348, '_elementor_pro_version', '4.1.1'),
(3975, 348, '_elementor_global_class_usage_indexed', '1'),
(3976, 348, '_elementor_global_class_usage_indexed_preview', '1'),
(3977, 348, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3978, 348, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"Substance Abuse and Mental Health Services Administration\\n\\nPhone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><br \\/><br \\/>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3982, 349, '_wp_page_template', 'elementor_header_footer'),
(3983, 349, '_elementor_edit_mode', 'builder'),
(3984, 349, '_elementor_template_type', 'wp-page'),
(3985, 349, '_elementor_version', '4.1.3'),
(3986, 349, '_elementor_pro_version', '4.1.1'),
(3987, 349, '_elementor_global_class_usage_indexed', '1'),
(3988, 349, '_elementor_global_class_usage_indexed_preview', '1'),
(3989, 349, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3990, 349, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"Substance Abuse and Mental Health Services Administration\\n\\nPhone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><br \\/><br \\/>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3992, 349, '_elementor_page_settings', 'a:0:{}'),
(3993, 350, '_wp_page_template', 'elementor_header_footer'),
(3994, 350, '_elementor_edit_mode', 'builder'),
(3995, 350, '_elementor_template_type', 'wp-page'),
(3996, 350, '_elementor_version', '4.1.3'),
(3997, 350, '_elementor_pro_version', '4.1.1'),
(3998, 350, '_elementor_global_class_usage_indexed', '1'),
(3999, 350, '_elementor_global_class_usage_indexed_preview', '1'),
(4000, 350, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4001, 350, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"Substance Abuse and Mental Health Services Administration\\n\\nPhone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><br \\/><br \\/>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4003, 350, '_elementor_page_settings', 'a:0:{}'),
(4004, 351, '_wp_page_template', 'elementor_header_footer'),
(4005, 351, '_elementor_edit_mode', 'builder'),
(4006, 351, '_elementor_template_type', 'wp-page'),
(4007, 351, '_elementor_version', '4.1.3'),
(4008, 351, '_elementor_pro_version', '4.1.1'),
(4009, 351, '_elementor_global_class_usage_indexed', '1'),
(4010, 351, '_elementor_global_class_usage_indexed_preview', '1'),
(4011, 351, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4012, 351, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"Substance Abuse and Mental Health Services Administration\\n\\nPhone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><br \\/><br \\/>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><br \\/><br \\/>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4016, 352, '_wp_page_template', 'elementor_header_footer'),
(4017, 352, '_elementor_edit_mode', 'builder'),
(4018, 352, '_elementor_template_type', 'wp-page'),
(4019, 352, '_elementor_version', '4.1.3'),
(4020, 352, '_elementor_pro_version', '4.1.1'),
(4021, 352, '_elementor_global_class_usage_indexed', '1'),
(4022, 352, '_elementor_global_class_usage_indexed_preview', '1'),
(4023, 352, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4024, 352, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"Substance Abuse and Mental Health Services Administration\\n\\nPhone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><br \\/><br \\/>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><br \\/><br \\/>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4026, 352, '_elementor_page_settings', 'a:0:{}'),
(4027, 353, '_wp_page_template', 'elementor_header_footer'),
(4028, 353, '_elementor_edit_mode', 'builder'),
(4029, 353, '_elementor_template_type', 'wp-page'),
(4030, 353, '_elementor_version', '4.1.3'),
(4031, 353, '_elementor_pro_version', '4.1.1'),
(4032, 353, '_elementor_global_class_usage_indexed', '1'),
(4033, 353, '_elementor_global_class_usage_indexed_preview', '1'),
(4034, 353, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4035, 353, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"Substance Abuse and Mental Health Services Administration\\n\\nPhone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><br \\/><br \\/>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><br \\/><br \\/>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6461, 561, '_elementor_data', '[{\"id\":\"7cd2407b\",\"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},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4b376675\",\"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\":\"14e415c9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@optimalmentalwellness.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@optimalmentalwellness.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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5137f99d\",\"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\":\"416cdcb9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"904-901-7913\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:9049017913\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=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\":\"6090cb25\",\"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\"},\"elements\":[{\"id\":\"42e85872\",\"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\":\"5d51e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Optimal-Mental-Health-And-Wellness-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":300,\"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\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_position\":\"absolute\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"388619a3\",\"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\":\"2a70cfde\",\"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\":30,\"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\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"500\",\"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=astglobalcolor6\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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\":[]},\"_flex_order_tablet_extra\":\"end\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"ca7841b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"590be00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"454cd36b\",\"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\":432,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Mental-Health-And-Wellness-av.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"5aa4113e\",\"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}]'),
(4037, 353, '_elementor_page_settings', 'a:0:{}'),
(4038, 354, '_wp_page_template', 'elementor_header_footer'),
(4039, 354, '_elementor_edit_mode', 'builder'),
(4040, 354, '_elementor_template_type', 'wp-page'),
(4041, 354, '_elementor_version', '4.1.3'),
(4042, 354, '_elementor_pro_version', '4.1.1'),
(4043, 354, '_elementor_global_class_usage_indexed', '1'),
(4044, 354, '_elementor_global_class_usage_indexed_preview', '1'),
(4045, 354, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4046, 354, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"Substance Abuse and Mental Health Services Administration\\n\\nPhone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><br \\/><br \\/>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><br \\/><br \\/>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"Rape, Abuse & Incest National Network\\n\\nPhone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(6458, 561, '_elementor_global_class_usage_indexed_preview', '1'),
(6459, 561, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6460, 561, '_wp_page_template', 'default'),
(4052, 355, '_wp_page_template', 'elementor_header_footer'),
(4053, 355, '_elementor_edit_mode', 'builder'),
(4054, 355, '_elementor_template_type', 'wp-page'),
(4055, 355, '_elementor_version', '4.1.3'),
(4056, 355, '_elementor_pro_version', '4.1.1'),
(4057, 355, '_elementor_global_class_usage_indexed', '1'),
(4058, 355, '_elementor_global_class_usage_indexed_preview', '1'),
(4059, 355, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4060, 355, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"Substance Abuse and Mental Health Services Administration\\n\\nPhone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><br \\/><br \\/>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><br \\/><br \\/>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"Rape, Abuse & Incest National Network\\n\\nPhone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4132, 361, '_wp_page_template', 'elementor_header_footer'),
(4106, 359, '_wp_page_template', 'elementor_header_footer'),
(4107, 359, '_elementor_edit_mode', 'builder'),
(4108, 359, '_elementor_template_type', 'wp-page'),
(4109, 359, '_elementor_version', '4.1.3'),
(4110, 359, '_elementor_pro_version', '4.1.1'),
(4111, 359, '_elementor_global_class_usage_indexed', '1'),
(4112, 359, '_elementor_global_class_usage_indexed_preview', '1'),
(4113, 359, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4114, 359, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"Substance Abuse and Mental Health Services Administration\\n\\nPhone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><br \\/><br \\/>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><br \\/><br \\/>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"Rape, Abuse & Incest National Network\\n\\nPhone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(7217, 624, '_wp_page_template', 'elementor_header_footer'),
(7218, 624, '_elementor_global_class_usage_indexed', '1'),
(7220, 624, '_elementor_edit_mode', 'builder'),
(7221, 624, '_elementor_template_type', 'wp-page'),
(7222, 624, '_elementor_version', '4.1.3'),
(7223, 624, '_elementor_pro_version', '4.1.1'),
(7224, 624, '_elementor_global_class_usage_indexed_preview', '1'),
(7225, 624, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7226, 624, '_elementor_data', '[{\"id\":\"930c0f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e9b1af4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40}},\"elements\":[{\"id\":\"88a3c22\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":616,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mental-contact-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"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\":\"f3587d7\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9d88ee6\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d778882\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f882cf8\",\"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\":\"05:30 AM - 08:30 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sat - Sun\",\"closed\":\"\",\"highlight\":\"\",\"highlight_color\":\"#bc1705\",\"_id\":\"5b4030f\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"8:00 AM - 1:00 PM\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"327b8dd\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"745f907\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"cafb309\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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=astglobalcolor6\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"636d4e2\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d38a337\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_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\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"info@optimalmentalwellness.org\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4062, 355, '_elementor_page_settings', 'a:0:{}'),
(4065, 356, '_wp_page_template', 'elementor_header_footer'),
(4066, 356, '_elementor_edit_mode', 'builder'),
(4067, 356, '_elementor_template_type', 'wp-page'),
(4068, 356, '_elementor_version', '4.1.3'),
(4069, 356, '_elementor_pro_version', '4.1.1'),
(4070, 356, '_elementor_global_class_usage_indexed', '1'),
(4071, 356, '_elementor_global_class_usage_indexed_preview', '1'),
(4072, 356, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4073, 356, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"Substance Abuse and Mental Health Services Administration\\n\\nPhone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><br \\/><br \\/>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><br \\/><br \\/>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"Rape, Abuse & Incest National Network\\n\\nPhone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(7915, 674, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(4075, 356, '_elementor_page_settings', 'a:0:{}'),
(7259, 627, '_wp_page_template', 'elementor_header_footer'),
(7260, 627, '_elementor_global_class_usage_indexed', '1'),
(7262, 627, '_elementor_edit_mode', 'builder'),
(7263, 627, '_elementor_template_type', 'wp-page'),
(7264, 627, '_elementor_version', '4.1.3'),
(7265, 627, '_elementor_pro_version', '4.1.1'),
(7266, 627, '_elementor_global_class_usage_indexed_preview', '1'),
(7267, 627, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7268, 627, '_elementor_data', '[{\"id\":\"930c0f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e9b1af4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40}},\"elements\":[{\"id\":\"88a3c22\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":616,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mental-contact-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"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\":\"f3587d7\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9d88ee6\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d778882\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f882cf8\",\"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\":\"05:30 AM - 08:30 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sat - Sun\",\"highlight\":\"\",\"highlight_color\":\"#bc1705\",\"_id\":\"5b4030f\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"8:00 AM - 1:00 PM\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"327b8dd\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"745f907\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"cafb309\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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=astglobalcolor6\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"636d4e2\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d38a337\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_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\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"info@optimalmentalwellness.org\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7269, 627, '_elementor_page_settings', 'a:0:{}'),
(7784, 664, '_elementor_page_settings', 'a:0:{}'),
(8832, 741, '_elementor_global_class_usage_indexed', '1'),
(8833, 741, '_elementor_edit_mode', 'builder'),
(8834, 741, '_elementor_template_type', 'wp-page'),
(8835, 741, '_elementor_version', '4.1.3'),
(8836, 741, '_elementor_pro_version', '4.1.1'),
(8837, 741, '_elementor_global_class_usage_indexed_preview', '1'),
(8838, 741, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(8839, 741, '_elementor_data', '[{\"id\":\"930c0f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e9b1af4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40}},\"elements\":[{\"id\":\"88a3c22\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":616,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mental-contact-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"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\":\"f3587d7\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[{\"id\":\"9d88ee6\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d778882\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f882cf8\",\"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\":\"09:30 AM - 04:30 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sat - Sun\",\"highlight\":\"\",\"highlight_color\":\"#bc1705\",\"_id\":\"5b4030f\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\",\"closed\":\"\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"rows_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"5\",\"bottom\":\"8\",\"left\":\"5\",\"isLinked\":false},\"rows_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"hours_typography_typography\":\"custom\",\"hours_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"hours_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"327b8dd\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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:\\/\\/clinikehr.com\\/book\\/optimal-mental-health-and-wellness-group\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"745f907\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"cafb309\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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=astglobalcolor6\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"636d4e2\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d38a337\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"info@optimalmentalwellness.org\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8855, 742, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(7272, 628, '_wp_page_template', 'elementor_header_footer'),
(7273, 628, '_elementor_global_class_usage_indexed', '1'),
(7275, 628, '_elementor_edit_mode', 'builder'),
(7276, 628, '_elementor_template_type', 'wp-page'),
(7277, 628, '_elementor_version', '4.1.3'),
(7278, 628, '_elementor_pro_version', '4.1.1'),
(7279, 628, '_elementor_global_class_usage_indexed_preview', '1'),
(7280, 628, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7281, 628, '_elementor_data', '[{\"id\":\"930c0f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e9b1af4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40}},\"elements\":[{\"id\":\"88a3c22\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":616,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mental-contact-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"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\":\"f3587d7\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9d88ee6\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d778882\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f882cf8\",\"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\":\"05:30 AM - 08:30 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sat - Sun\",\"highlight\":\"\",\"highlight_color\":\"#bc1705\",\"_id\":\"5b4030f\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"8:00 AM - 1:00 PM\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"327b8dd\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"745f907\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"cafb309\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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=astglobalcolor6\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"636d4e2\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d38a337\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"info@optimalmentalwellness.org\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4078, 357, '_wp_page_template', 'elementor_header_footer'),
(4079, 357, '_elementor_edit_mode', 'builder'),
(4080, 357, '_elementor_template_type', 'wp-page'),
(4081, 357, '_elementor_version', '4.1.3'),
(4082, 357, '_elementor_pro_version', '4.1.1'),
(4083, 357, '_elementor_global_class_usage_indexed', '1'),
(4084, 357, '_elementor_global_class_usage_indexed_preview', '1'),
(4085, 357, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4086, 357, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"Substance Abuse and Mental Health Services Administration\\n\\nPhone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><br \\/><br \\/>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><br \\/><br \\/>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"Rape, Abuse & Incest National Network\\n\\nPhone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(8901, 10, '_elementor_page_settings', 'a:0:{}');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8902, 10, '_elementor_controls_usage', 'a:11:{s:7:\"divider\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:4:{s:5:\"width\";i:1;s:5:\"align\";i:1;s:4:\"look\";i:1;s:4:\"text\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_divider_style\";a:2:{s:6:\"weight\";i: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:2:{s:5:\"align\";i:6;s:21:\"typography_typography\";i:1;}}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:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:2;s:4:\"link\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:2;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:7:{s:13:\"content_width\";i:18;s:8:\"flex_gap\";i:1;s:10:\"min_height\";i:2;s:20:\"flex_justify_content\";i:4;s:5:\"width\";i:4;s:14:\"flex_direction\";i:4;s:16:\"flex_align_items\";i:1;}}s:5:\"style\";a:5:{s:45:\"section_powerpack_elements_background_effects\";a:6:{s:34:\"pp_animated_gradient_bg_color_list\";i:25;s:28:\"pp_background_effects_enable\";i:1;s:12:\"part_opacity\";i:1;s:13:\"part_quantity\";i:1;s:9:\"part_size\";i:1;s:10:\"part_speed\";i:1;}s:18:\"section_background\";a:9:{s:21:\"background_background\";i:7;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:2;s:28:\"background_slideshow_gallery\";i:1;s:36:\"background_slideshow_background_size\";i:1;s:40:\"background_slideshow_background_position\";i:1;s:30:\"background_slideshow_ken_burns\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:2;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:2;}s:21:\"section_shape_divider\";a:2:{s:23:\"shape_divider_top_width\";i:1;s:24:\"shape_divider_top_height\";i:1;}}s:8:\"advanced\";a:4:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:25;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:11;s:18:\"animation_duration\";i:5;}s:14:\"section_layout\";a:3:{s:7:\"padding\";i:10;s:11:\"css_classes\";i:5;s:6:\"margin\";i:1;}s:19:\"_section_responsive\";a:2:{s:17:\"hide_mobile_extra\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:3;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:3;s:10:\"image_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:8:{s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:2;s:18:\"image_border_color\";i:2;s:19:\"image_border_radius\";i:3;s:5:\"align\";i:1;s:5:\"width\";i:1;s:32:\"image_box_shadow_box_shadow_type\";i:1;s:27:\"image_box_shadow_box_shadow\";i:1;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i: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:15:\"pp-dual-heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:20:\"section_dual_heading\";a:2:{s:10:\"first_text\";i:2;s:11:\"second_text\";i:2;}}s:5:\"style\";a:2:{s:19:\"first_section_style\";a:3:{s:16:\"first_text_color\";i:1;s:27:\"first_typography_typography\";i:1;s:26:\"first_typography_font_size\";i:1;}s:20:\"second_section_style\";a:3:{s:17:\"second_text_color\";i:1;s:28:\"second_typography_typography\";i:1;s:27:\"second_typography_font_size\";i:1;}}s:8:\"advanced\";a:5:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:1;}s:19:\"_section_responsive\";a:2:{s:17:\"hide_mobile_extra\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";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:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_icon_style\";a:1:{s:10:\"icon_color\";i:1;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:1;s:16:\"_flex_align_self\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s: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: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: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:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}}}s:20:\"pp-info-box-carousel\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:18:\"section_info_boxes\";a:5:{s:13:\"pp_info_boxes\";i:2;s:6:\"layout\";i:2;s:14:\"title_html_tag\";i:2;s:18:\"equal_height_boxes\";i:2;s:20:\"columns_mobile_extra\";i:2;}}s:5:\"style\";a:6:{s:20:\"section_layout_style\";a:2:{s:5:\"align\";i:2;s:11:\"columns_gap\";i:1;}s:22:\"section_info_box_style\";a:7:{s:30:\"info_box_background_background\";i:1;s:25:\"info_box_background_color\";i:1;s:22:\"info_box_border_border\";i:2;s:21:\"info_box_border_width\";i:2;s:21:\"info_box_border_color\";i:2;s:22:\"info_box_border_radius\";i:2;s:16:\"info_box_padding\";i:2;}s:27:\"section_info_box_icon_style\";a:3:{s:18:\"icon_border_radius\";i:1;s:11:\"icon_margin\";i:1;s:14:\"icon_img_width\";i:1;}s:28:\"section_info_box_title_style\";a:1:{s:12:\"title_margin\";i:1;}s:30:\"section_info_description_style\";a:1:{s:18:\"description_margin\";i:2;}s:29:\"section_info_box_button_style\";a:8:{s:22:\"button_bg_color_normal\";i:2;s:27:\"button_border_normal_border\";i:1;s:26:\"button_border_normal_width\";i:1;s:20:\"button_border_radius\";i:1;s:14:\"button_padding\";i:1;s:24:\"button_text_color_normal\";i:1;s:23:\"button_text_color_hover\";i:1;s:21:\"button_bg_color_hover\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}s:11:\"pp-info-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:12:\"section_icon\";a:3:{s:13:\"selected_icon\";i:3;s:9:\"icon_size\";i:3;s:13:\"icon_position\";i:3;}s:15:\"section_content\";a:5:{s:7:\"heading\";i:3;s:11:\"sub_heading\";i:3;s:11:\"description\";i:3;s:20:\"divider_title_switch\";i:3;s:14:\"title_html_tag\";i:3;}}s:5:\"style\";a:3:{s:22:\"section_info_box_style\";a:5:{s:16:\"info_box_padding\";i:3;s:22:\"info_box_bg_background\";i:3;s:22:\"info_box_border_radius\";i:3;s:31:\"info_box_shadow_box_shadow_type\";i:3;s:26:\"info_box_shadow_box_shadow\";i:3;}s:27:\"section_info_box_icon_style\";a:2:{s:18:\"icon_border_radius\";i:3;s:12:\"icon_padding\";i:3;}s:30:\"section_info_box_content_style\";a:8:{s:5:\"align\";i:3;s:12:\"title_margin\";i:3;s:25:\"divider_title_border_type\";i:3;s:19:\"divider_title_width\";i:3;s:27:\"divider_title_border_height\";i:3;s:26:\"divider_title_border_color\";i:3;s:20:\"divider_title_margin\";i:3;s:18:\"description_margin\";i:3;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}}}}s:5:\"posts\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:5:{s:28:\"classic_columns_mobile_extra\";i:1;s:27:\"classic_thumbnail_size_size\";i:1;s:22:\"classic_excerpt_length\";i:1;s:17:\"classic_meta_data\";i:1;s:22:\"classic_posts_per_page\";i:1;}}s:5:\"style\";a:2:{s:26:\"classic_section_design_box\";a:3:{s:23:\"classic_content_padding\";i:1;s:34:\"classic_box_shadow_box_shadow_type\";i:1;s:29:\"classic_box_shadow_box_shadow\";i:1;}s:30:\"classic_section_design_content\";a:12:{s:19:\"classic_title_color\";i:1;s:35:\"classic_title_typography_typography\";i:1;s:34:\"classic_title_typography_font_size\";i:1;s:21:\"classic_title_spacing\";i:1;s:18:\"classic_meta_color\";i:1;s:34:\"classic_meta_typography_typography\";i:1;s:33:\"classic_meta_typography_font_size\";i:1;s:21:\"classic_excerpt_color\";i:1;s:37:\"classic_excerpt_typography_typography\";i:1;s:36:\"classic_excerpt_typography_font_size\";i:1;s:39:\"classic_read_more_typography_typography\";i:1;s:38:\"classic_read_more_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(8055, 682, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(8212, 693, '_elementor_source', 'post'),
(8194, 692, '_elementor_source', 'post'),
(7910, 674, '_elementor_global_class_usage_indexed', '1'),
(7911, 674, '_elementor_global_class_usage_indexed_preview', '1'),
(7912, 674, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(7913, 674, '_wp_page_template', 'default'),
(7914, 674, '_elementor_data', '[{\"id\":\"7cd2407b\",\"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},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4b376675\",\"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\":\"14e415c9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@optimalmentalwellness.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@optimalmentalwellness.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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5137f99d\",\"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\":\"416cdcb9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"904-901-7913\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:9049017913\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=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\":\"6090cb25\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"background_background\":\"classic\",\"css_classes\":\"header_sections\",\"sticky\":\"top\",\"sticky_effects_offset\":50,\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"42e85872\",\"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\":\"5d51e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Optimal-Mental-Health-And-Wellness-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":300,\"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\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_position\":\"absolute\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"388619a3\",\"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\":\"2a70cfde\",\"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\":30,\"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\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"500\",\"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=astglobalcolor6\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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=astglobalcolor6\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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\":[]},\"_flex_order_tablet_extra\":\"end\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"ca7841b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"590be00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"454cd36b\",\"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\":432,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Mental-Health-And-Wellness-av.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"5aa4113e\",\"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}]'),
(4133, 361, '_elementor_edit_mode', 'builder'),
(4134, 361, '_elementor_template_type', 'wp-page'),
(4135, 361, '_elementor_version', '4.1.3'),
(4136, 361, '_elementor_pro_version', '4.1.1'),
(4137, 361, '_elementor_global_class_usage_indexed', '1'),
(4138, 361, '_elementor_global_class_usage_indexed_preview', '1'),
(4139, 361, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4140, 361, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"Substance Abuse and Mental Health Services Administration\\n\\nPhone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><br \\/><br \\/>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><br \\/><br \\/>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"Rape, Abuse & Incest National Network\\n\\nPhone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4148, 362, '_wp_page_template', 'elementor_header_footer'),
(4149, 362, '_elementor_edit_mode', 'builder'),
(4150, 362, '_elementor_template_type', 'wp-page'),
(4151, 362, '_elementor_version', '4.1.3'),
(4152, 362, '_elementor_pro_version', '4.1.1'),
(4153, 362, '_elementor_global_class_usage_indexed', '1'),
(4154, 362, '_elementor_global_class_usage_indexed_preview', '1'),
(4155, 362, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4156, 362, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"Substance Abuse and Mental Health Services Administration\\n\\nPhone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><br \\/><br \\/>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><br \\/><br \\/>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"Rape, Abuse & Incest National Network\\n\\nPhone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4322, 381, '_wp_page_template', 'elementor_header_footer'),
(4323, 381, '_elementor_edit_mode', 'builder'),
(4324, 381, '_elementor_template_type', 'wp-page'),
(4325, 381, '_elementor_version', '4.1.3'),
(4326, 381, '_elementor_pro_version', '4.1.1'),
(4327, 381, '_elementor_global_class_usage_indexed', '1'),
(4328, 381, '_elementor_global_class_usage_indexed_preview', '1'),
(4329, 381, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4330, 381, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6919c28d\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a118ce4\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(4321, 365, '_elementor_global_class_usage_indexed', '1'),
(4116, 359, '_elementor_page_settings', 'a:0:{}'),
(7288, 629, '_wp_page_template', 'elementor_header_footer'),
(7289, 629, '_elementor_global_class_usage_indexed', '1'),
(7291, 629, '_elementor_edit_mode', 'builder'),
(7292, 629, '_elementor_template_type', 'wp-page'),
(7293, 629, '_elementor_version', '4.1.3'),
(7294, 629, '_elementor_pro_version', '4.1.1'),
(7295, 629, '_elementor_global_class_usage_indexed_preview', '1'),
(7296, 629, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7297, 629, '_elementor_data', '[{\"id\":\"930c0f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e9b1af4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40}},\"elements\":[{\"id\":\"88a3c22\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":616,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mental-contact-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"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\":\"f3587d7\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9d88ee6\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d778882\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f882cf8\",\"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\":\"05:30 AM - 08:30 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sat - Sun\",\"highlight\":\"\",\"highlight_color\":\"#bc1705\",\"_id\":\"5b4030f\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"8:00 AM - 1:00 PM\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"327b8dd\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"745f907\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"cafb309\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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=astglobalcolor6\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"636d4e2\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d38a337\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"info@optimalmentalwellness.org\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7256, 626, '_elementor_page_settings', 'a:0:{}'),
(4119, 360, '_wp_page_template', 'elementor_header_footer'),
(4120, 360, '_elementor_edit_mode', 'builder'),
(4121, 360, '_elementor_template_type', 'wp-page'),
(4122, 360, '_elementor_version', '4.1.3'),
(4123, 360, '_elementor_pro_version', '4.1.1'),
(4124, 360, '_elementor_global_class_usage_indexed', '1'),
(4125, 360, '_elementor_global_class_usage_indexed_preview', '1'),
(4126, 360, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4127, 360, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"Substance Abuse and Mental Health Services Administration\\n\\nPhone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><br \\/><br \\/>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><br \\/><br \\/>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"Rape, Abuse & Incest National Network\\n\\nPhone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4129, 360, '_elementor_page_settings', 'a:0:{}'),
(7227, 624, '_elementor_page_settings', 'a:0:{}'),
(7231, 625, '_elementor_global_class_usage_indexed', '1'),
(7233, 625, '_elementor_edit_mode', 'builder'),
(7234, 625, '_elementor_template_type', 'wp-page'),
(7235, 625, '_elementor_version', '4.1.3'),
(7236, 625, '_elementor_pro_version', '4.1.1'),
(7237, 625, '_elementor_global_class_usage_indexed_preview', '1'),
(7238, 625, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7239, 625, '_elementor_data', '[{\"id\":\"930c0f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e9b1af4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40}},\"elements\":[{\"id\":\"88a3c22\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":616,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mental-contact-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"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\":\"f3587d7\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9d88ee6\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d778882\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f882cf8\",\"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\":\"05:30 AM - 08:30 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sat - Sun\",\"highlight\":\"\",\"highlight_color\":\"#bc1705\",\"_id\":\"5b4030f\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"8:00 AM - 1:00 PM\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"327b8dd\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"745f907\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"cafb309\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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=astglobalcolor6\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"636d4e2\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d38a337\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_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\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"info@optimalmentalwellness.org\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7246, 626, '_wp_page_template', 'elementor_header_footer'),
(7247, 626, '_elementor_global_class_usage_indexed', '1'),
(7249, 626, '_elementor_edit_mode', 'builder'),
(7250, 626, '_elementor_template_type', 'wp-page'),
(7251, 626, '_elementor_version', '4.1.3'),
(7252, 626, '_elementor_pro_version', '4.1.1'),
(7253, 626, '_elementor_global_class_usage_indexed_preview', '1'),
(7254, 626, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(7255, 626, '_elementor_data', '[{\"id\":\"930c0f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e9b1af4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40}},\"elements\":[{\"id\":\"88a3c22\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":616,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mental-contact-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"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\":\"f3587d7\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9d88ee6\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d778882\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f882cf8\",\"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\":\"05:30 AM - 08:30 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sat - Sun\",\"highlight\":\"\",\"highlight_color\":\"#bc1705\",\"_id\":\"5b4030f\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"8:00 AM - 1:00 PM\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"327b8dd\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"745f907\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"cafb309\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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=astglobalcolor6\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"636d4e2\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d38a337\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_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\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"info@optimalmentalwellness.org\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7328, 632, '_wp_page_template', 'elementor_header_footer'),
(7329, 632, '_elementor_global_class_usage_indexed', '1'),
(7331, 632, '_elementor_edit_mode', 'builder'),
(7332, 632, '_elementor_template_type', 'wp-page'),
(7333, 632, '_elementor_version', '4.1.3'),
(7334, 632, '_elementor_pro_version', '4.1.1'),
(7335, 632, '_elementor_global_class_usage_indexed_preview', '1'),
(7336, 632, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7337, 632, '_elementor_data', '[{\"id\":\"930c0f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e9b1af4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40}},\"elements\":[{\"id\":\"88a3c22\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":616,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mental-contact-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"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\":\"f3587d7\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9d88ee6\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d778882\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f882cf8\",\"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\":\"05:30 AM - 08:30 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sat - Sun\",\"highlight\":\"\",\"highlight_color\":\"#bc1705\",\"_id\":\"5b4030f\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"8:00 AM - 1:00 PM\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"rows_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"5\",\"bottom\":\"8\",\"left\":\"5\",\"isLinked\":false},\"rows_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hours_typography_typography\":\"custom\",\"hours_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"hours_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"327b8dd\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"745f907\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"cafb309\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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=astglobalcolor6\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"636d4e2\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d38a337\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"info@optimalmentalwellness.org\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7214, 623, '_elementor_page_settings', 'a:0:{}'),
(7788, 665, '_wp_page_template', 'elementor_header_footer'),
(7789, 665, '_elementor_edit_mode', 'builder'),
(7790, 665, '_elementor_template_type', 'wp-page'),
(4280, 378, '_wp_page_template', 'elementor_header_footer'),
(4281, 378, '_elementor_edit_mode', 'builder'),
(4282, 378, '_elementor_template_type', 'wp-page'),
(4283, 378, '_elementor_version', '4.1.3'),
(4284, 378, '_elementor_pro_version', '4.1.1'),
(4285, 378, '_elementor_global_class_usage_indexed', '1'),
(4286, 378, '_elementor_global_class_usage_indexed_preview', '1'),
(4287, 378, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4288, 378, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4158, 362, '_elementor_page_settings', 'a:0:{}'),
(7189, 621, '_elementor_page_settings', 'a:0:{}'),
(7191, 622, '_elementor_global_class_usage_indexed', '1'),
(7193, 622, '_elementor_edit_mode', 'builder'),
(7194, 622, '_elementor_template_type', 'wp-page'),
(7195, 622, '_elementor_version', '4.1.3'),
(7196, 622, '_elementor_pro_version', '4.1.1'),
(7197, 622, '_elementor_global_class_usage_indexed_preview', '1'),
(7198, 622, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7199, 622, '_elementor_data', '[{\"id\":\"930c0f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e9b1af4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40}},\"elements\":[{\"id\":\"88a3c22\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":616,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mental-contact-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"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\":\"f3587d7\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9d88ee6\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d778882\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f882cf8\",\"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\":\"05:30 AM - 08:30 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sat - Sun\",\"closed\":\"\",\"highlight\":\"\",\"highlight_color\":\"#bc1705\",\"_id\":\"5b4030f\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"8:00 AM - 1:00 PM\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"327b8dd\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"745f907\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"cafb309\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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=astglobalcolor6\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"636d4e2\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d38a337\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_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\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"info@optimalmentalwellness.org\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7230, 625, '_wp_page_template', 'elementor_header_footer'),
(7204, 623, '_wp_page_template', 'elementor_header_footer'),
(7205, 623, '_elementor_global_class_usage_indexed', '1'),
(7207, 623, '_elementor_edit_mode', 'builder'),
(7208, 623, '_elementor_template_type', 'wp-page'),
(7209, 623, '_elementor_version', '4.1.3'),
(7210, 623, '_elementor_pro_version', '4.1.1'),
(7211, 623, '_elementor_global_class_usage_indexed_preview', '1'),
(7212, 623, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(7213, 623, '_elementor_data', '[{\"id\":\"930c0f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e9b1af4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40}},\"elements\":[{\"id\":\"88a3c22\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":616,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mental-contact-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"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\":\"f3587d7\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9d88ee6\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d778882\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f882cf8\",\"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\":\"05:30 AM - 08:30 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sat - Sun\",\"closed\":\"\",\"highlight\":\"\",\"highlight_color\":\"#bc1705\",\"_id\":\"5b4030f\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"8:00 AM - 1:00 PM\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"327b8dd\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"745f907\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"cafb309\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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=astglobalcolor6\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"636d4e2\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d38a337\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_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\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"info@optimalmentalwellness.org\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4161, 363, '_wp_page_template', 'elementor_header_footer'),
(4162, 363, '_elementor_edit_mode', 'builder'),
(4163, 363, '_elementor_template_type', 'wp-page'),
(4164, 363, '_elementor_version', '4.1.3'),
(4165, 363, '_elementor_pro_version', '4.1.1'),
(4166, 363, '_elementor_global_class_usage_indexed', '1'),
(4167, 363, '_elementor_global_class_usage_indexed_preview', '1'),
(4168, 363, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4169, 363, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"Substance Abuse and Mental Health Services Administration\\n\\nPhone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><br \\/><br \\/>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><br \\/><br \\/>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"Rape, Abuse & Incest National Network\\n\\nPhone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4171, 363, '_elementor_page_settings', 'a:0:{}'),
(7791, 665, '_elementor_version', '4.1.3'),
(7792, 665, '_elementor_pro_version', '4.1.1'),
(7793, 665, '_elementor_global_class_usage_indexed', '1'),
(7794, 665, '_elementor_global_class_usage_indexed_preview', '1'),
(7795, 665, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7796, 665, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":532,\"sizes\":[]}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"},\"hide_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\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(7178, 620, '_elementor_page_settings', 'a:0:{}'),
(7179, 621, '_wp_page_template', 'elementor_header_footer'),
(7180, 621, '_elementor_global_class_usage_indexed', '1'),
(7182, 621, '_elementor_edit_mode', 'builder'),
(7183, 621, '_elementor_template_type', 'wp-page'),
(7184, 621, '_elementor_version', '4.1.3'),
(7185, 621, '_elementor_pro_version', '4.1.1'),
(7186, 621, '_elementor_global_class_usage_indexed_preview', '1'),
(7187, 621, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7188, 621, '_elementor_data', '[{\"id\":\"930c0f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e9b1af4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40}},\"elements\":[{\"id\":\"88a3c22\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":616,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mental-contact-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"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\":\"f3587d7\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9d88ee6\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d778882\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f882cf8\",\"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\":\"05:30 AM - 08:30 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\":\"8:00 AM - 1:00 PM\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"327b8dd\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"745f907\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"cafb309\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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=astglobalcolor6\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"636d4e2\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d38a337\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_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\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"info@optimalmentalwellness.org\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4174, 364, '_wp_page_template', 'elementor_header_footer'),
(4175, 364, '_elementor_edit_mode', 'builder'),
(4176, 364, '_elementor_template_type', 'wp-page'),
(4177, 364, '_elementor_version', '4.1.3'),
(4178, 364, '_elementor_pro_version', '4.1.1'),
(4179, 364, '_elementor_global_class_usage_indexed', '1'),
(4180, 364, '_elementor_global_class_usage_indexed_preview', '1'),
(4181, 364, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4182, 364, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(7141, 618, '_wp_page_template', 'elementor_header_footer'),
(7142, 618, '_elementor_global_class_usage_indexed', '1'),
(7144, 618, '_elementor_edit_mode', 'builder'),
(7145, 618, '_elementor_template_type', 'wp-page'),
(7146, 618, '_elementor_version', '4.1.3'),
(7147, 618, '_elementor_pro_version', '4.1.1'),
(7148, 618, '_elementor_global_class_usage_indexed_preview', '1'),
(7149, 618, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7150, 618, '_elementor_data', '[{\"id\":\"930c0f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e9b1af4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40}},\"elements\":[{\"id\":\"88a3c22\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":600,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/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\":\"f3587d7\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9d88ee6\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d778882\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f882cf8\",\"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\":\"05:30 AM - 08:30 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\":\"08:00 AM - 01:00 PM\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"327b8dd\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"745f907\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"cafb309\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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=astglobalcolor6\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"636d4e2\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d38a337\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_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\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"info@optimalmentalwellness.org\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7151, 618, '_elementor_page_settings', 'a:0:{}'),
(7155, 619, '_elementor_global_class_usage_indexed', '1'),
(7157, 619, '_elementor_edit_mode', 'builder'),
(7158, 619, '_elementor_template_type', 'wp-page'),
(7159, 619, '_elementor_version', '4.1.3'),
(7160, 619, '_elementor_pro_version', '4.1.1'),
(7161, 619, '_elementor_global_class_usage_indexed_preview', '1'),
(7162, 619, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(7163, 619, '_elementor_data', '[{\"id\":\"930c0f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e9b1af4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40}},\"elements\":[{\"id\":\"88a3c22\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":616,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mental-contact-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"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\":\"f3587d7\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9d88ee6\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d778882\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f882cf8\",\"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\":\"05:30 AM - 08:30 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\":\"8:00 AM - 1:00 PM\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"327b8dd\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"745f907\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"cafb309\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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=astglobalcolor6\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"636d4e2\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d38a337\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_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\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"info@optimalmentalwellness.org\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4344, 383, '_wp_page_template', 'elementor_header_footer'),
(4190, 365, '_edit_last', '1'),
(4191, 365, '_edit_lock', '1781682230:1'),
(4192, 366, '_wp_attached_file', '2026/06/mental-blog-3.jpg'),
(4193, 366, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:25:\"2026/06/mental-blog-3.jpg\";s:8:\"filesize\";i:57397;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"mental-blog-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13417;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"mental-blog-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6005;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"mental-blog-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52089;}}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:\"\";}}'),
(4194, 365, '_thumbnail_id', '366'),
(4195, 365, '_wp_page_template', 'default'),
(4206, 368, '_edit_lock', '1782023662:1'),
(4205, 368, '_edit_last', '1'),
(4198, 365, 'site-sidebar-layout', 'default'),
(4203, 365, 'theme-transparent-header-meta', 'default'),
(4200, 365, 'ast-site-content-layout', 'default'),
(4201, 365, 'site-content-style', 'default'),
(4202, 365, 'site-sidebar-style', 'default'),
(4204, 365, 'astra-migrate-meta-layouts', 'set'),
(4207, 369, '_wp_attached_file', '2026/06/Embarking-on-a-Journey-Cultivating-Your-Personal-Path-to-Self-Care-Mastery-aa.jpg'),
(4208, 369, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:89:\"2026/06/Embarking-on-a-Journey-Cultivating-Your-Personal-Path-to-Self-Care-Mastery-aa.jpg\";s:8:\"filesize\";i:68318;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:89:\"Embarking-on-a-Journey-Cultivating-Your-Personal-Path-to-Self-Care-Mastery-aa-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14399;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:89:\"Embarking-on-a-Journey-Cultivating-Your-Personal-Path-to-Self-Care-Mastery-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:6718;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:89:\"Embarking-on-a-Journey-Cultivating-Your-Personal-Path-to-Self-Care-Mastery-aa-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59862;}}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:\"\";}}'),
(4209, 368, '_thumbnail_id', '369'),
(4210, 368, '_wp_page_template', 'default'),
(4224, 371, '_edit_lock', '1782023711:1'),
(4213, 368, 'site-sidebar-layout', 'default'),
(4218, 368, 'theme-transparent-header-meta', 'default'),
(4215, 368, 'ast-site-content-layout', 'default'),
(4216, 368, 'site-content-style', 'default'),
(4217, 368, 'site-sidebar-style', 'default'),
(4222, 368, 'astra-migrate-meta-layouts', 'set'),
(4223, 371, '_edit_last', '1'),
(4225, 372, '_wp_attached_file', '2026/06/Navigating-Telemedicine-and-Health-Tech-Revolutionizing-Healthcare-in-the-Digital-Age-a.jpg'),
(4226, 372, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:99:\"2026/06/Navigating-Telemedicine-and-Health-Tech-Revolutionizing-Healthcare-in-the-Digital-Age-a.jpg\";s:8:\"filesize\";i:59088;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:99:\"Navigating-Telemedicine-and-Health-Tech-Revolutionizing-Healthcare-in-the-Digital-Age-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:15470;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:99:\"Navigating-Telemedicine-and-Health-Tech-Revolutionizing-Healthcare-in-the-Digital-Age-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:7246;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:99:\"Navigating-Telemedicine-and-Health-Tech-Revolutionizing-Healthcare-in-the-Digital-Age-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:59479;}}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:\"\";}}'),
(4227, 371, '_thumbnail_id', '372'),
(4228, 371, '_wp_page_template', 'default'),
(4231, 371, 'site-sidebar-layout', 'default'),
(4236, 371, 'theme-transparent-header-meta', 'default'),
(4233, 371, 'ast-site-content-layout', 'default'),
(4234, 371, 'site-content-style', 'default'),
(4235, 371, 'site-sidebar-style', 'default'),
(4240, 371, 'astra-migrate-meta-layouts', 'set'),
(4241, 374, '_elementor_edit_mode', 'builder'),
(4242, 374, '_elementor_template_type', 'container'),
(4243, 374, '_elementor_version', '4.1.3'),
(4244, 374, '_elementor_pro_version', '4.1.1'),
(4245, 374, '_elementor_page_settings', 'a:0:{}'),
(4246, 374, '_elementor_global_class_usage_indexed', '1'),
(4247, 374, '_elementor_global_class_usage_indexed_preview', '1');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4248, 374, '_elementor_data', '[{\"id\":\"7b75ff3b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fb7dbd7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"54d7e5d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9364e87\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c016760\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-06-14 to 2026-06-20\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:52\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4d4ab160\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"post-featured-image\\\" settings=\\\"%7B%22fallback%22%3A%7B%22url%22%3A%22%22%2C%22id%22%3A%22%22%2C%22size%22%3A%22%22%7D%7D\\\"]\"},\"pp_display_conditions\":[{\"_id\":\"d6fd5fe\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-06-14 to 2026-06-20\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:52\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"theme-post-featured-image\"},{\"id\":\"34d97a06\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"010fdf6\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-06-14 to 2026-06-20\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:52\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"theme-post-title\"},{\"id\":\"30327ba7\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"icon_list\":[{\"selected_icon\":{\"value\":\"fas fa-calendar\",\"library\":\"fa-solid\"},\"_id\":\"1c18d28\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\",\"type\":\"date\",\"date_format\":\"default\",\"time_format\":\"default\",\"taxonomy\":[],\"text_prefix\":\"\",\"show_avatar\":\"\",\"avatar_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"comments_custom_strings\":false,\"string_no_comments\":\"\",\"string_one_comment\":\"\",\"string_comments\":\"\",\"custom_text\":\"\",\"link\":\"yes\",\"custom_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"show_icon\":\"default\"}],\"pp_display_conditions\":[{\"_id\":\"636b958\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-06-14 to 2026-06-20\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:52\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"post-info\"},{\"id\":\"542248a7\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"pp_display_conditions\":[{\"_id\":\"ba1e304\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-06-14 to 2026-06-20\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:52\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"theme-post-content\"},{\"id\":\"652930a5\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"prev_label\":\"Previous\",\"next_label\":\"Next\",\"pp_display_conditions\":[{\"_id\":\"9496c7f\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-06-14 to 2026-06-20\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:52\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"label_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"arrow_color\":\"globals\\/colors?id=astglobalcolor1\",\"sep_color\":\"globals\\/colors?id=astglobalcolor1\"},\"arrow_previous_icon\":{\"value\":\"fas fa-angle-left\",\"library\":\"fa-solid\"},\"arrow_next_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"post-navigation\"}],\"isInner\":false}]'),
(4249, 375, '_elementor_edit_mode', 'builder'),
(4250, 375, '_elementor_template_type', 'container'),
(4251, 375, '_elementor_version', '4.1.3'),
(4252, 375, '_elementor_pro_version', '4.1.1'),
(4253, 375, '_elementor_page_settings', 'a:0:{}'),
(4254, 375, '_elementor_global_class_usage_indexed', '1'),
(4255, 375, '_elementor_global_class_usage_indexed_preview', '1'),
(4256, 375, '_elementor_data', '[{\"id\":\"7b75ff3b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fb7dbd7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"54d7e5d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9364e87\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c016760\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-06-14 to 2026-06-20\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:52\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4d4ab160\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"post-featured-image\\\" settings=\\\"%7B%22fallback%22%3A%7B%22url%22%3A%22%22%2C%22id%22%3A%22%22%2C%22size%22%3A%22%22%7D%7D\\\"]\"},\"pp_display_conditions\":[{\"_id\":\"d6fd5fe\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-06-14 to 2026-06-20\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:52\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"theme-post-featured-image\"},{\"id\":\"34d97a06\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"010fdf6\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-06-14 to 2026-06-20\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:52\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"theme-post-title\"},{\"id\":\"30327ba7\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"icon_list\":[{\"selected_icon\":{\"value\":\"fas fa-calendar\",\"library\":\"fa-solid\"},\"_id\":\"1c18d28\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\",\"type\":\"date\",\"date_format\":\"default\",\"time_format\":\"default\",\"taxonomy\":[],\"text_prefix\":\"\",\"show_avatar\":\"\",\"avatar_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"comments_custom_strings\":false,\"string_no_comments\":\"\",\"string_one_comment\":\"\",\"string_comments\":\"\",\"custom_text\":\"\",\"link\":\"yes\",\"custom_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"show_icon\":\"default\"}],\"pp_display_conditions\":[{\"_id\":\"636b958\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-06-14 to 2026-06-20\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:52\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"post-info\"},{\"id\":\"542248a7\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"pp_display_conditions\":[{\"_id\":\"ba1e304\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-06-14 to 2026-06-20\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:52\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"theme-post-content\"},{\"id\":\"652930a5\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"prev_label\":\"Previous\",\"next_label\":\"Next\",\"pp_display_conditions\":[{\"_id\":\"9496c7f\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-06-14 to 2026-06-20\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:52\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"label_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"arrow_color\":\"globals\\/colors?id=astglobalcolor1\",\"sep_color\":\"globals\\/colors?id=astglobalcolor1\"},\"arrow_previous_icon\":{\"value\":\"fas fa-angle-left\",\"library\":\"fa-solid\"},\"arrow_next_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"post-navigation\"}],\"isInner\":false}]'),
(4258, 374, '_elementor_controls_usage', 'a:6:{s:25:\"theme-post-featured-image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}}}s:16:\"theme-post-title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"post-info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:18:\"theme-post-content\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:15:\"post-navigation\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:2:{s:14:\"flex_direction\";i:1;s:11:\"boxed_width\";i:1;}}s:5:\"style\";a:1:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(8948, 299, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>'),
(4711, 414, '_elementor_source', 'post'),
(4712, 414, '_elementor_edit_mode', 'builder'),
(4713, 414, '_elementor_template_type', 'footer'),
(4714, 414, '_elementor_version', '4.1.3'),
(4715, 414, '_elementor_pro_version', '4.1.1'),
(4716, 414, '_elementor_global_class_usage_indexed', '1'),
(4717, 414, '_elementor_global_class_usage_indexed_preview', '1'),
(4718, 414, '_astra_content_layout_flag', 'disabled');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4757, 414, '_elementor_data', '[{\"id\":\"36acd947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#2E211D\"},\"elements\":[{\"id\":\"a61f409\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"5b64f0b6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f54abd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"0785fe6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"204810e\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f3adcba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f19265\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"65ebe43c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ba9c024\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1a4d853c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"5011 Gate Parkway Bldg 100 Suite 100  Jacksonville, FL 32256 United States\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=30.246008,-81.533169&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=5011%20Gate%20Pkwy%20Bldg%20100%2C%20Suite%20100%20Collier%20Building%2C%20Parking%20lot%20Jacksonville%2C%20FL%2032256%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"2590 Welton Street suite 200 Denver,Colorado  80205\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4bda8ba\"},{\"text\":\"877 296 7846\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:8772967846\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bf68e29\"},{\"text\":\"470 222-2746\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:4702222746\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"030f147\"},{\"text\":\" info@optimalmentalwellness.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto: info@optimalmentalwellness.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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1004a94f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/optimal_mentalhealth?igsh=Y3Z3NjFjYnQ0cXdo\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor6\",\"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\":\"67a9f141\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"48dc4a5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39d06425\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"641fcfd9\",\"elType\":\"widget\",\"settings\":{\"business_hours\":[{\"_id\":\"da64ace\",\"opening_hours\":\"09:30\",\"closing_hours\":\"16:30\",\"closed_text\":\"Closed\"},{\"opening_hours\":\"09:30\",\"closing_hours\":\"16:30\",\"closed_text\":\"Closed\",\"day\":\"Tuesday\",\"_id\":\"9f4cf0b\"},{\"opening_hours\":\"09:30\",\"closing_hours\":\"16:30\",\"closed_text\":\"Closed\",\"day\":\"Wednesday\",\"_id\":\"770b874\"},{\"opening_hours\":\"09:30\",\"closing_hours\":\"16:30\",\"closed_text\":\"Closed\",\"day\":\"Thursday\",\"_id\":\"bbb4be5\"},{\"opening_hours\":\"09:30\",\"closing_hours\":\"16:30\",\"closed_text\":\"Closed\",\"day\":\"Friday\",\"_id\":\"1a1391b\"},{\"day\":\"Saturday\",\"highlight\":\"yes\",\"opening_hours\":\"08:00\",\"closing_hours\":\"13:00\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor4\"},\"closed\":\"\",\"_id\":\"35a4e44\"},{\"day\":\"Sunday\",\"highlight\":\"yes\",\"opening_hours\":\"08:00\",\"closing_hours\":\"13:00\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor4\"},\"closed\":\"\",\"_id\":\"b85648c\"}],\"business_hours_custom\":[{\"day\":\"Monday\",\"_id\":\"cee2f1e\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Tuesday\",\"_id\":\"45ae0c5\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"86a6f01\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"7a864b7\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"7829cb0\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"0ab76c1\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"872d85e\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"}],\"rows_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"3\",\"bottom\":\"5\",\"left\":\"3\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ef806cc\",\"pp_condition_date_time_before_value\":\"2024-06-11 13:29\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"closed_row_day_color\":\"globals\\/colors?id=astglobalcolor4\",\"closed_row_tex_color\":\"globals\\/colors?id=astglobalcolor4\",\"day_color\":\"globals\\/colors?id=astglobalcolor4\",\"hours_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-business-hours\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ac53f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#241815\"},\"elements\":[{\"id\":\"86a6b29\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 [copyright]. All Rights Reserved. Website Developed by\\u00a0<a hrecopyrightf=\\\"https:\\/\\/devrivo.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a>\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(4720, 414, 'ast-title-bar-display', 'disabled'),
(4721, 414, 'ast-featured-img', 'disabled'),
(4722, 414, 'ast-site-content-layout', 'full-width-container'),
(4723, 414, 'site-sidebar-layout', 'no-sidebar'),
(4725, 414, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(4726, 414, '_edit_lock', '1783960084:1'),
(4727, 374, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(4728, 415, '_elementor_edit_mode', 'builder'),
(4729, 415, '_elementor_template_type', 'footer'),
(4730, 415, '_elementor_version', '4.1.3'),
(4731, 415, '_elementor_pro_version', '4.1.1'),
(4732, 415, '_elementor_page_settings', 'a:0:{}'),
(4733, 415, '_elementor_global_class_usage_indexed', '1'),
(4734, 415, '_elementor_global_class_usage_indexed_preview', '1');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4735, 415, '_elementor_data', '[{\"id\":\"45a43215\",\"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_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_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\":\"\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#1D1D1D\",\"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\":\"318ef7a1\",\"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_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_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\",\"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\":\"8c00b33\",\"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_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_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\":\"\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ffb7eac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_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_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\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"23940642\",\"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_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_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__\":{\"text_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\":\"text-editor\"}],\"isInner\":true},{\"id\":\"53de6a0\",\"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_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_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\":\"\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"67c12010\",\"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\":\"2025-08-24 to 2025-08-30\",\"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\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b8a7a8c\",\"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\":\"2025-08-24 to 2025-08-30\",\"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\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor2\",\"_border_color\":\"\"},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1ee47a63\",\"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\":\"2025-08-24 to 2025-08-30\",\"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\":[]},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7a1973f0\",\"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\":\"2025-08-24 to 2025-08-30\",\"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=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\":[]},\"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\":\"social-icons\"}],\"isInner\":true},{\"id\":\"69093567\",\"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_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_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\":\"\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"33fc7c8a\",\"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_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_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\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"232c0627\",\"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\":\"2025-08-24 to 2025-08-30\",\"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\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor2\",\"_border_color\":\"\"},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1e39e7fa\",\"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\"},\"closed\":\"no\",\"highlight_bg\":\"\",\"highlight_color\":\"\"},{\"_id\":\"da64ace\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\",\"day\":\"Monday\",\"closed\":\"no\",\"highlight\":\"no\",\"highlight_bg\":\"\",\"highlight_color\":\"\"},{\"day\":\"Tuesday\",\"_id\":\"a4cc763\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\",\"closed\":\"no\",\"highlight\":\"no\",\"highlight_bg\":\"\",\"highlight_color\":\"\"},{\"day\":\"Wednesday\",\"_id\":\"6778403\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\",\"closed\":\"no\",\"highlight\":\"no\",\"highlight_bg\":\"\",\"highlight_color\":\"\"},{\"day\":\"Thursday\",\"_id\":\"54a0872\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\",\"closed\":\"no\",\"highlight\":\"no\",\"highlight_bg\":\"\",\"highlight_color\":\"\"},{\"day\":\"Friday\",\"_id\":\"12ce824\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\",\"closed\":\"no\",\"highlight\":\"no\",\"highlight_bg\":\"\",\"highlight_color\":\"\"},{\"day\":\"Saturday\",\"highlight\":\"yes\",\"_id\":\"9cfdedb\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor2\"},\"closed\":\"no\",\"highlight_bg\":\"\",\"highlight_color\":\"\"}],\"business_hours_custom\":[{\"day\":\"Monday\",\"_id\":\"cee2f1e\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\",\"closed\":\"no\",\"highlight\":\"no\",\"highlight_bg\":\"\",\"highlight_color\":\"\"},{\"day\":\"Tuesday\",\"_id\":\"45ae0c5\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\",\"closed\":\"no\",\"highlight\":\"no\",\"highlight_bg\":\"\",\"highlight_color\":\"\"},{\"day\":\"Wednesday\",\"_id\":\"86a6f01\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\",\"closed\":\"no\",\"highlight\":\"no\",\"highlight_bg\":\"\",\"highlight_color\":\"\"},{\"day\":\"Thursday\",\"_id\":\"7a864b7\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\",\"closed\":\"no\",\"highlight\":\"no\",\"highlight_bg\":\"\",\"highlight_color\":\"\"},{\"day\":\"Friday\",\"_id\":\"7829cb0\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\",\"closed\":\"no\",\"highlight\":\"no\",\"highlight_bg\":\"\",\"highlight_color\":\"\"},{\"day\":\"Saturday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"0ab76c1\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\",\"highlight_bg\":\"\"},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"872d85e\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\",\"highlight_bg\":\"\"}],\"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_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_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__\":{\"closed_row_day_color\":\"\",\"closed_row_tex_color\":\"\",\"day_color\":\"globals\\/colors?id=astglobalcolor2\",\"hours_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\":\"pp-business-hours\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6bf9010\",\"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_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 15:57\",\"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\":\"\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor3\"},\"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\":\"319a3c50\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2024 All Rights Reserved\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"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 15:57\",\"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=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\":\"heading\"}],\"isInner\":false}]'),
(4279, 371, '_elementor_global_class_usage_indexed', '1'),
(4290, 378, '_elementor_page_settings', 'a:0:{}'),
(7138, 617, '_elementor_page_settings', 'a:0:{}'),
(4293, 379, '_wp_page_template', 'elementor_header_footer'),
(4294, 379, '_elementor_edit_mode', 'builder'),
(4295, 379, '_elementor_template_type', 'wp-page'),
(4296, 379, '_elementor_version', '4.1.3'),
(4297, 379, '_elementor_pro_version', '4.1.1'),
(4298, 379, '_elementor_global_class_usage_indexed', '1'),
(4299, 379, '_elementor_global_class_usage_indexed_preview', '1'),
(4300, 379, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4301, 379, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4303, 379, '_elementor_page_settings', 'a:0:{}'),
(7107, 614, '_elementor_page_settings', 'a:0:{}'),
(4415, 389, '_elementor_edit_mode', 'builder'),
(4416, 389, '_elementor_template_type', 'wp-page'),
(4417, 389, '_elementor_version', '4.1.3'),
(4418, 389, '_elementor_pro_version', '4.1.1'),
(4419, 389, '_elementor_global_class_usage_indexed', '1'),
(4420, 389, '_elementor_global_class_usage_indexed_preview', '1'),
(4421, 389, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(4306, 380, '_wp_page_template', 'elementor_header_footer'),
(4307, 380, '_elementor_edit_mode', 'builder'),
(4308, 380, '_elementor_template_type', 'wp-page'),
(4309, 380, '_elementor_version', '4.1.3'),
(4310, 380, '_elementor_pro_version', '4.1.1'),
(4311, 380, '_elementor_global_class_usage_indexed', '1'),
(4312, 380, '_elementor_global_class_usage_indexed_preview', '1'),
(4313, 380, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4314, 380, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6919c28d\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a118ce4\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(7097, 614, '_wp_page_template', 'elementor_header_footer'),
(7098, 614, '_elementor_global_class_usage_indexed', '1'),
(7100, 614, '_elementor_edit_mode', 'builder'),
(7101, 614, '_elementor_template_type', 'wp-page'),
(7102, 614, '_elementor_version', '4.1.3'),
(7103, 614, '_elementor_pro_version', '4.1.1'),
(7104, 614, '_elementor_global_class_usage_indexed_preview', '1'),
(7105, 614, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7106, 614, '_elementor_data', '[{\"id\":\"930c0f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e9b1af4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40}},\"elements\":[{\"id\":\"88a3c22\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":600,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/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\":\"f3587d7\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9d88ee6\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d778882\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f882cf8\",\"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\":\"05:30 AM - 08:30 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\":\"08:00 AM - 01:00 PM\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"327b8dd\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"745f907\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"cafb309\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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=astglobalcolor6\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"636d4e2\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d38a337\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_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\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"info@optimalmentalwellness.org\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3d9e9f9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de25814\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"4f3d199\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":\"600\",\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/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\":\"5f949be\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4a3e248\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"681d7ef\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b6dc872\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"58b2e9d\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc600c8\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"42aae38\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4778a74\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a544aab\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_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\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"admin@serenesoundwellness.com\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4332, 381, '_elementor_page_settings', 'a:0:{}'),
(4333, 382, '_wp_page_template', 'elementor_header_footer'),
(4334, 382, '_elementor_edit_mode', 'builder'),
(4335, 382, '_elementor_template_type', 'wp-page'),
(4336, 382, '_elementor_version', '4.1.3'),
(4337, 382, '_elementor_pro_version', '4.1.1'),
(4338, 382, '_elementor_global_class_usage_indexed', '1'),
(4339, 382, '_elementor_global_class_usage_indexed_preview', '1'),
(4340, 382, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4341, 382, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6919c28d\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a118ce4\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(4343, 382, '_elementor_page_settings', 'a:0:{}'),
(4345, 383, '_elementor_edit_mode', 'builder'),
(4346, 383, '_elementor_template_type', 'wp-page'),
(4347, 383, '_elementor_version', '4.1.3'),
(4348, 383, '_elementor_pro_version', '4.1.1'),
(4349, 383, '_elementor_global_class_usage_indexed', '1'),
(4350, 383, '_elementor_global_class_usage_indexed_preview', '1'),
(4351, 383, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4352, 383, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6919c28d\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a118ce4\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(4358, 384, '_wp_page_template', 'elementor_header_footer'),
(4359, 384, '_elementor_edit_mode', 'builder'),
(4360, 384, '_elementor_template_type', 'wp-page'),
(4361, 384, '_elementor_version', '4.1.3'),
(4362, 384, '_elementor_pro_version', '4.1.1'),
(4363, 384, '_elementor_global_class_usage_indexed', '1'),
(4364, 384, '_elementor_global_class_usage_indexed_preview', '1'),
(4365, 384, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4366, 384, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6919c28d\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a118ce4\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(4357, 368, '_elementor_global_class_usage_indexed', '1'),
(4368, 384, '_elementor_page_settings', 'a:0:{}'),
(4369, 385, '_wp_page_template', 'elementor_header_footer'),
(4370, 385, '_elementor_edit_mode', 'builder'),
(4371, 385, '_elementor_template_type', 'wp-page'),
(4372, 385, '_elementor_version', '4.1.3'),
(4373, 385, '_elementor_pro_version', '4.1.1'),
(4374, 385, '_elementor_global_class_usage_indexed', '1'),
(4375, 385, '_elementor_global_class_usage_indexed_preview', '1'),
(4376, 385, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4377, 385, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6919c28d\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a118ce4\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(4379, 385, '_elementor_page_settings', 'a:0:{}'),
(4414, 389, '_wp_page_template', 'elementor_header_footer'),
(4380, 386, '_wp_page_template', 'elementor_header_footer'),
(4381, 386, '_elementor_edit_mode', 'builder'),
(4382, 386, '_elementor_template_type', 'wp-page'),
(4383, 386, '_elementor_version', '4.1.3'),
(4384, 386, '_elementor_pro_version', '4.1.1'),
(4385, 386, '_elementor_global_class_usage_indexed', '1'),
(4386, 386, '_elementor_global_class_usage_indexed_preview', '1'),
(4387, 386, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4388, 386, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6919c28d\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a118ce4\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(4392, 387, '_wp_page_template', 'elementor_header_footer'),
(4393, 387, '_elementor_edit_mode', 'builder'),
(4394, 387, '_elementor_template_type', 'wp-page'),
(4395, 387, '_elementor_version', '4.1.3'),
(4396, 387, '_elementor_pro_version', '4.1.1'),
(4397, 387, '_elementor_global_class_usage_indexed', '1'),
(4398, 387, '_elementor_global_class_usage_indexed_preview', '1'),
(4399, 387, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4400, 387, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6919c28d\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a118ce4\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(4402, 387, '_elementor_page_settings', 'a:0:{}'),
(4403, 388, '_wp_page_template', 'elementor_header_footer'),
(4404, 388, '_elementor_edit_mode', 'builder'),
(4405, 388, '_elementor_template_type', 'wp-page'),
(4406, 388, '_elementor_version', '4.1.3'),
(4407, 388, '_elementor_pro_version', '4.1.1'),
(4408, 388, '_elementor_global_class_usage_indexed', '1'),
(4409, 388, '_elementor_global_class_usage_indexed_preview', '1'),
(4410, 388, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4411, 388, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6919c28d\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a118ce4\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(4413, 388, '_elementor_page_settings', 'a:0:{}');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4422, 389, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(4428, 390, '_wp_page_template', 'elementor_header_footer'),
(4429, 390, '_elementor_edit_mode', 'builder'),
(4430, 390, '_elementor_template_type', 'wp-page'),
(4431, 390, '_elementor_version', '4.1.3'),
(4432, 390, '_elementor_pro_version', '4.1.1'),
(4433, 390, '_elementor_global_class_usage_indexed', '1'),
(4434, 390, '_elementor_global_class_usage_indexed_preview', '1'),
(4435, 390, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4436, 390, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(4478, 393, '_elementor_page_settings', 'a:0:{}'),
(4479, 394, '_wp_page_template', 'elementor_header_footer'),
(4468, 393, '_wp_page_template', 'elementor_header_footer'),
(4469, 393, '_elementor_edit_mode', 'builder'),
(4470, 393, '_elementor_template_type', 'wp-page'),
(4471, 393, '_elementor_version', '4.1.3'),
(4472, 393, '_elementor_pro_version', '4.1.1'),
(4473, 393, '_elementor_global_class_usage_indexed', '1'),
(4474, 393, '_elementor_global_class_usage_indexed_preview', '1'),
(4475, 393, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4476, 393, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(7942, 676, '_elementor_version', '4.1.3'),
(7943, 676, '_elementor_pro_version', '4.1.1'),
(7944, 676, '_elementor_global_class_usage_indexed', '1'),
(4438, 390, '_elementor_page_settings', 'a:0:{}'),
(7190, 622, '_wp_page_template', 'elementor_header_footer'),
(7154, 619, '_wp_page_template', 'elementor_header_footer'),
(7128, 617, '_wp_page_template', 'elementor_header_footer'),
(7129, 617, '_elementor_global_class_usage_indexed', '1'),
(7131, 617, '_elementor_edit_mode', 'builder'),
(7132, 617, '_elementor_template_type', 'wp-page'),
(7133, 617, '_elementor_version', '4.1.3'),
(7134, 617, '_elementor_pro_version', '4.1.1'),
(7135, 617, '_elementor_global_class_usage_indexed_preview', '1'),
(7136, 617, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7137, 617, '_elementor_data', '[{\"id\":\"930c0f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e9b1af4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40}},\"elements\":[{\"id\":\"88a3c22\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":600,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/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\":\"f3587d7\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9d88ee6\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d778882\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f882cf8\",\"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\":\"05:30 AM - 08:30 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\":\"08:00 AM - 01:00 PM\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"327b8dd\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"745f907\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"cafb309\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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=astglobalcolor6\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"636d4e2\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d38a337\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_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\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"info@optimalmentalwellness.org\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7094, 613, '_elementor_page_settings', 'a:0:{}'),
(4441, 391, '_wp_page_template', 'elementor_header_footer'),
(4442, 391, '_elementor_edit_mode', 'builder'),
(4443, 391, '_elementor_template_type', 'wp-page'),
(4444, 391, '_elementor_version', '4.1.3'),
(4445, 391, '_elementor_pro_version', '4.1.1'),
(4446, 391, '_elementor_global_class_usage_indexed', '1'),
(4447, 391, '_elementor_global_class_usage_indexed_preview', '1'),
(4448, 391, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4449, 391, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(7945, 676, '_elementor_global_class_usage_indexed_preview', '1'),
(7946, 676, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(7947, 676, '_wp_page_template', 'default');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7948, 676, '_elementor_data', '[{\"id\":\"7cd2407b\",\"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},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4b376675\",\"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\":\"14e415c9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@optimalmentalwellness.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@optimalmentalwellness.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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5137f99d\",\"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\":\"416cdcb9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"904-901-7913\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:9049017913\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=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\":\"6090cb25\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"background_background\":\"classic\",\"css_classes\":\"header_sections\",\"sticky\":\"top\",\"sticky_effects_offset\":50,\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"42e85872\",\"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\":\"5d51e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Optimal-Mental-Health-And-Wellness-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":300,\"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\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_position\":\"absolute\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"388619a3\",\"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\":\"2a70cfde\",\"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\":30,\"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\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"500\",\"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=astglobalcolor6\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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=astglobalcolor6\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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\":[]},\"_flex_order_tablet_extra\":\"end\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"ca7841b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"590be00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"454cd36b\",\"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\":432,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Mental-Health-And-Wellness-av.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"5aa4113e\",\"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}]'),
(4451, 391, '_elementor_page_settings', 'a:0:{}'),
(7084, 613, '_wp_page_template', 'elementor_header_footer'),
(7085, 613, '_elementor_global_class_usage_indexed', '1'),
(7087, 613, '_elementor_edit_mode', 'builder'),
(7088, 613, '_elementor_template_type', 'wp-page'),
(7089, 613, '_elementor_version', '4.1.3'),
(7090, 613, '_elementor_pro_version', '4.1.1'),
(7091, 613, '_elementor_global_class_usage_indexed_preview', '1'),
(7092, 613, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7093, 613, '_elementor_data', '[{\"id\":\"930c0f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e9b1af4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40}},\"elements\":[{\"id\":\"88a3c22\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":600,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/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\":\"f3587d7\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9d88ee6\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d778882\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f882cf8\",\"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\":\"05:30 AM - 08:30 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\":\"08:00 AM - 01:00 PM\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"327b8dd\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"745f907\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"cafb309\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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=astglobalcolor6\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"636d4e2\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d38a337\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_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\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"info@optimalmentalwellness.org\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3d9e9f9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de25814\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"4f3d199\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":\"600\",\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/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\":\"5f949be\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4a3e248\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"681d7ef\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b6dc872\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"58b2e9d\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc600c8\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"42aae38\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4778a74\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a544aab\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_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\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"admin@serenesoundwellness.com\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7168, 620, '_wp_page_template', 'elementor_header_footer'),
(7169, 620, '_elementor_global_class_usage_indexed', '1'),
(7171, 620, '_elementor_edit_mode', 'builder'),
(7172, 620, '_elementor_template_type', 'wp-page'),
(7173, 620, '_elementor_version', '4.1.3'),
(7174, 620, '_elementor_pro_version', '4.1.1'),
(7175, 620, '_elementor_global_class_usage_indexed_preview', '1'),
(7176, 620, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7177, 620, '_elementor_data', '[{\"id\":\"930c0f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e9b1af4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40}},\"elements\":[{\"id\":\"88a3c22\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":616,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mental-contact-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"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\":\"f3587d7\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9d88ee6\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d778882\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f882cf8\",\"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\":\"05:30 AM - 08:30 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\":\"8:00 AM - 1:00 PM\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"327b8dd\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"745f907\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"cafb309\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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=astglobalcolor6\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"636d4e2\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d38a337\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_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\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"info@optimalmentalwellness.org\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7126, 616, '_wp_attached_file', '2026/06/mental-contact-a.jpg'),
(7127, 616, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:28:\"2026/06/mental-contact-a.jpg\";s:8:\"filesize\";i:167779;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"mental-contact-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:23091;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"mental-contact-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:7220;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"mental-contact-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:127215;}}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:\"\";}}'),
(4454, 392, '_wp_page_template', 'elementor_header_footer'),
(4455, 392, '_elementor_edit_mode', 'builder'),
(4456, 392, '_elementor_template_type', 'wp-page'),
(4457, 392, '_elementor_version', '4.1.3'),
(4458, 392, '_elementor_pro_version', '4.1.1'),
(4459, 392, '_elementor_global_class_usage_indexed', '1'),
(4460, 392, '_elementor_global_class_usage_indexed_preview', '1'),
(4461, 392, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4462, 392, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(7069, 611, '_elementor_page_settings', 'a:0:{}'),
(7071, 612, '_elementor_global_class_usage_indexed', '1'),
(7073, 612, '_elementor_edit_mode', 'builder'),
(7074, 612, '_elementor_template_type', 'wp-page'),
(7075, 612, '_elementor_version', '4.1.3'),
(7076, 612, '_elementor_pro_version', '4.1.1'),
(7077, 612, '_elementor_global_class_usage_indexed_preview', '1'),
(7078, 612, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7079, 612, '_elementor_data', '[{\"id\":\"930c0f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e9b1af4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40}},\"elements\":[{\"id\":\"88a3c22\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":600,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/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\":\"f3587d7\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9d88ee6\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d778882\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f882cf8\",\"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\":\"05:30 AM - 08:30 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\":\"08:00 AM - 01:00 PM\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"327b8dd\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"745f907\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"cafb309\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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=astglobalcolor6\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"636d4e2\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d38a337\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_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\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"info@optimalmentalwellness.org\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3d9e9f9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de25814\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"4f3d199\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":\"600\",\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/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\":\"5f949be\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4a3e248\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"681d7ef\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b6dc872\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"58b2e9d\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc600c8\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"42aae38\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4778a74\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a544aab\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_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\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"admin@serenesoundwellness.com\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4480, 394, '_elementor_edit_mode', 'builder'),
(4481, 394, '_elementor_template_type', 'wp-page'),
(4482, 394, '_elementor_version', '4.1.3'),
(4483, 394, '_elementor_pro_version', '4.1.1'),
(4484, 394, '_elementor_global_class_usage_indexed', '1'),
(4485, 394, '_elementor_global_class_usage_indexed_preview', '1'),
(4486, 394, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4487, 394, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}]},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}]},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}]},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(4489, 394, '_elementor_page_settings', 'a:0:{}'),
(4490, 395, '_wp_page_template', 'elementor_header_footer'),
(4491, 395, '_elementor_edit_mode', 'builder'),
(4492, 395, '_elementor_template_type', 'wp-page'),
(4493, 395, '_elementor_version', '4.1.3'),
(4494, 395, '_elementor_pro_version', '4.1.1'),
(4495, 395, '_elementor_global_class_usage_indexed', '1'),
(4496, 395, '_elementor_global_class_usage_indexed_preview', '1'),
(4497, 395, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4498, 395, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(4502, 396, '_wp_page_template', 'elementor_header_footer'),
(4503, 396, '_elementor_edit_mode', 'builder'),
(4504, 396, '_elementor_template_type', 'wp-page'),
(4505, 396, '_elementor_version', '4.1.3'),
(4506, 396, '_elementor_pro_version', '4.1.1'),
(4507, 396, '_elementor_global_class_usage_indexed', '1'),
(4508, 396, '_elementor_global_class_usage_indexed_preview', '1'),
(4509, 396, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4510, 396, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(4512, 396, '_elementor_page_settings', 'a:0:{}'),
(4513, 397, '_wp_page_template', 'elementor_header_footer'),
(4514, 397, '_elementor_edit_mode', 'builder'),
(4515, 397, '_elementor_template_type', 'wp-page'),
(4516, 397, '_elementor_version', '4.1.3'),
(4517, 397, '_elementor_pro_version', '4.1.1'),
(4518, 397, '_elementor_global_class_usage_indexed', '1'),
(4519, 397, '_elementor_global_class_usage_indexed_preview', '1'),
(4520, 397, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4521, 397, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}]},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(4523, 397, '_elementor_page_settings', 'a:0:{}'),
(4524, 398, '_wp_page_template', 'elementor_header_footer'),
(4525, 398, '_elementor_edit_mode', 'builder'),
(4526, 398, '_elementor_template_type', 'wp-page'),
(4527, 398, '_elementor_version', '4.1.3'),
(4528, 398, '_elementor_pro_version', '4.1.1'),
(4529, 398, '_elementor_global_class_usage_indexed', '1'),
(4530, 398, '_elementor_global_class_usage_indexed_preview', '1'),
(4531, 398, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4532, 398, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(4536, 399, '_wp_page_template', 'elementor_header_footer'),
(4537, 399, '_elementor_edit_mode', 'builder'),
(4538, 399, '_elementor_template_type', 'wp-page'),
(4539, 399, '_elementor_version', '4.1.3'),
(4540, 399, '_elementor_pro_version', '4.1.1'),
(4541, 399, '_elementor_global_class_usage_indexed', '1'),
(4542, 399, '_elementor_global_class_usage_indexed_preview', '1'),
(4543, 399, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4544, 399, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(4546, 399, '_elementor_page_settings', 'a:0:{}'),
(4547, 400, '_wp_page_template', 'elementor_header_footer'),
(4548, 400, '_elementor_edit_mode', 'builder'),
(4549, 400, '_elementor_template_type', 'wp-page'),
(4550, 400, '_elementor_version', '4.1.3'),
(4551, 400, '_elementor_pro_version', '4.1.1'),
(4552, 400, '_elementor_global_class_usage_indexed', '1'),
(4553, 400, '_elementor_global_class_usage_indexed_preview', '1'),
(4554, 400, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4555, 400, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(4557, 400, '_elementor_page_settings', 'a:0:{}'),
(4558, 401, '_wp_page_template', 'elementor_header_footer'),
(4559, 401, '_elementor_edit_mode', 'builder'),
(4560, 401, '_elementor_template_type', 'wp-page'),
(4561, 401, '_elementor_version', '4.1.3'),
(4562, 401, '_elementor_pro_version', '4.1.1'),
(4563, 401, '_elementor_global_class_usage_indexed', '1'),
(4564, 401, '_elementor_global_class_usage_indexed_preview', '1'),
(4565, 401, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4566, 401, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(7939, 676, '_elementor_source', 'post'),
(7940, 676, '_elementor_edit_mode', 'builder'),
(7941, 676, '_elementor_template_type', 'header'),
(4592, 404, '_wp_page_template', 'elementor_header_footer'),
(4570, 402, '_wp_page_template', 'elementor_header_footer'),
(4571, 402, '_elementor_edit_mode', 'builder'),
(4572, 402, '_elementor_template_type', 'wp-page'),
(4573, 402, '_elementor_version', '4.1.3'),
(4574, 402, '_elementor_pro_version', '4.1.1'),
(4575, 402, '_elementor_global_class_usage_indexed', '1'),
(4576, 402, '_elementor_global_class_usage_indexed_preview', '1'),
(4577, 402, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4578, 402, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(4580, 402, '_elementor_page_settings', 'a:0:{}'),
(4581, 403, '_wp_page_template', 'elementor_header_footer'),
(4582, 403, '_elementor_edit_mode', 'builder'),
(4583, 403, '_elementor_template_type', 'wp-page'),
(4584, 403, '_elementor_version', '4.1.3'),
(4585, 403, '_elementor_pro_version', '4.1.1'),
(4586, 403, '_elementor_global_class_usage_indexed', '1'),
(4587, 403, '_elementor_global_class_usage_indexed_preview', '1'),
(4588, 403, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4589, 403, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(4591, 403, '_elementor_page_settings', 'a:0:{}'),
(4593, 404, '_elementor_edit_mode', 'builder'),
(4594, 404, '_elementor_template_type', 'wp-page'),
(4595, 404, '_elementor_version', '4.1.3'),
(4596, 404, '_elementor_pro_version', '4.1.1'),
(4597, 404, '_elementor_global_class_usage_indexed', '1'),
(4598, 404, '_elementor_global_class_usage_indexed_preview', '1'),
(4599, 404, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4600, 404, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(4604, 405, '_wp_page_template', 'elementor_header_footer'),
(4605, 405, '_elementor_edit_mode', 'builder'),
(4606, 405, '_elementor_template_type', 'wp-page'),
(4607, 405, '_elementor_version', '4.1.3'),
(4608, 405, '_elementor_pro_version', '4.1.1'),
(4609, 405, '_elementor_global_class_usage_indexed', '1'),
(4610, 405, '_elementor_global_class_usage_indexed_preview', '1'),
(4611, 405, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4612, 405, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(4614, 405, '_elementor_page_settings', 'a:0:{}'),
(4615, 406, '_wp_page_template', 'elementor_header_footer'),
(4616, 406, '_elementor_edit_mode', 'builder'),
(4617, 406, '_elementor_template_type', 'wp-page'),
(4618, 406, '_elementor_version', '4.1.3'),
(4619, 406, '_elementor_pro_version', '4.1.1'),
(4620, 406, '_elementor_global_class_usage_indexed', '1'),
(4621, 406, '_elementor_global_class_usage_indexed_preview', '1'),
(4622, 406, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4623, 406, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}]},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(4625, 406, '_elementor_page_settings', 'a:0:{}'),
(4626, 407, '_wp_page_template', 'elementor_header_footer'),
(4627, 407, '_elementor_edit_mode', 'builder'),
(4628, 407, '_elementor_template_type', 'wp-page'),
(4629, 407, '_elementor_version', '4.1.3'),
(4630, 407, '_elementor_pro_version', '4.1.1'),
(4631, 407, '_elementor_global_class_usage_indexed', '1'),
(4632, 407, '_elementor_global_class_usage_indexed_preview', '1'),
(4633, 407, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4634, 407, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"},\"hide_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\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(4638, 408, '_wp_page_template', 'elementor_header_footer'),
(4639, 408, '_elementor_edit_mode', 'builder'),
(4640, 408, '_elementor_template_type', 'wp-page'),
(4641, 408, '_elementor_version', '4.1.3'),
(4642, 408, '_elementor_pro_version', '4.1.1'),
(4643, 408, '_elementor_global_class_usage_indexed', '1'),
(4644, 408, '_elementor_global_class_usage_indexed_preview', '1'),
(4645, 408, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4646, 408, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"},\"hide_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\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(4648, 408, '_elementor_page_settings', 'a:0:{}'),
(4649, 409, '_wp_page_template', 'elementor_header_footer'),
(4650, 409, '_elementor_edit_mode', 'builder'),
(4651, 409, '_elementor_template_type', 'wp-page'),
(4652, 409, '_elementor_version', '4.1.3'),
(4653, 409, '_elementor_pro_version', '4.1.1'),
(4654, 409, '_elementor_global_class_usage_indexed', '1'),
(4655, 409, '_elementor_global_class_usage_indexed_preview', '1'),
(4656, 409, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4657, 409, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"},\"hide_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\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}]},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}]},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(4659, 409, '_elementor_page_settings', 'a:0:{}'),
(4660, 410, '_wp_page_template', 'elementor_header_footer'),
(4661, 410, '_elementor_edit_mode', 'builder'),
(4662, 410, '_elementor_template_type', 'wp-page'),
(4663, 410, '_elementor_version', '4.1.3'),
(4664, 410, '_elementor_pro_version', '4.1.1'),
(4665, 410, '_elementor_global_class_usage_indexed', '1'),
(4666, 410, '_elementor_global_class_usage_indexed_preview', '1'),
(4667, 410, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4668, 410, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"},\"hide_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\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(4672, 411, '_wp_page_template', 'elementor_header_footer'),
(4673, 411, '_elementor_edit_mode', 'builder'),
(4674, 411, '_elementor_template_type', 'wp-page'),
(4675, 411, '_elementor_version', '4.1.3'),
(4676, 411, '_elementor_pro_version', '4.1.1'),
(4677, 411, '_elementor_global_class_usage_indexed', '1'),
(4678, 411, '_elementor_global_class_usage_indexed_preview', '1'),
(4679, 411, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4680, 411, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"},\"hide_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\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(4682, 411, '_elementor_page_settings', 'a:0:{}'),
(4683, 412, '_wp_page_template', 'elementor_header_footer'),
(4684, 412, '_elementor_edit_mode', 'builder'),
(4685, 412, '_elementor_template_type', 'wp-page'),
(4686, 412, '_elementor_version', '4.1.3'),
(4687, 412, '_elementor_pro_version', '4.1.1'),
(4688, 412, '_elementor_global_class_usage_indexed', '1'),
(4689, 412, '_elementor_global_class_usage_indexed_preview', '1'),
(4690, 412, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4691, 412, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"},\"hide_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\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(4693, 412, '_elementor_page_settings', 'a:0:{}'),
(4694, 413, '_wp_page_template', 'elementor_header_footer'),
(4695, 413, '_elementor_edit_mode', 'builder'),
(4696, 413, '_elementor_template_type', 'wp-page'),
(4697, 413, '_elementor_version', '4.1.3'),
(4698, 413, '_elementor_pro_version', '4.1.1'),
(4699, 413, '_elementor_global_class_usage_indexed', '1'),
(4700, 413, '_elementor_global_class_usage_indexed_preview', '1'),
(4701, 413, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4702, 413, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"},\"hide_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\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(7762, 663, '_wp_page_template', 'elementor_header_footer'),
(7763, 663, '_elementor_edit_mode', 'builder'),
(7764, 663, '_elementor_template_type', 'wp-page'),
(7765, 663, '_elementor_version', '4.1.3'),
(7766, 663, '_elementor_pro_version', '4.1.1'),
(7767, 663, '_elementor_global_class_usage_indexed', '1'),
(7768, 663, '_elementor_global_class_usage_indexed_preview', '1'),
(7769, 663, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7770, 663, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"},\"hide_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\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\",\"id\":84,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(7070, 612, '_wp_page_template', 'elementor_header_footer'),
(7048, 610, '_wp_page_template', 'elementor_header_footer'),
(7049, 610, '_elementor_global_class_usage_indexed', '1'),
(7051, 610, '_elementor_edit_mode', 'builder'),
(7052, 610, '_elementor_template_type', 'wp-page'),
(7053, 610, '_elementor_version', '4.1.3'),
(7054, 610, '_elementor_pro_version', '4.1.1'),
(7055, 610, '_elementor_global_class_usage_indexed_preview', '1'),
(7056, 610, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7057, 610, '_elementor_data', '[{\"id\":\"930c0f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e9b1af4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"88a3c22\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":600,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/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\":\"f3587d7\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9d88ee6\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d778882\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f882cf8\",\"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\":\"05:30 AM - 08:30 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\":\"08:00 AM - 01:00 PM\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"327b8dd\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"745f907\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"cafb309\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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=astglobalcolor6\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"636d4e2\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d38a337\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_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\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"info@optimalmentalwellness.org\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3d9e9f9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de25814\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"4f3d199\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":\"600\",\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/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\":\"5f949be\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4a3e248\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"681d7ef\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b6dc872\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"58b2e9d\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc600c8\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"42aae38\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4778a74\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a544aab\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_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\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"admin@serenesoundwellness.com\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7058, 610, '_elementor_page_settings', 'a:0:{}'),
(7059, 611, '_wp_page_template', 'elementor_header_footer'),
(7060, 611, '_elementor_global_class_usage_indexed', '1'),
(7062, 611, '_elementor_edit_mode', 'builder'),
(7063, 611, '_elementor_template_type', 'wp-page'),
(7064, 611, '_elementor_version', '4.1.3'),
(7065, 611, '_elementor_pro_version', '4.1.1'),
(7066, 611, '_elementor_global_class_usage_indexed_preview', '1'),
(7067, 611, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7068, 611, '_elementor_data', '[{\"id\":\"930c0f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e9b1af4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"88a3c22\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":600,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/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\":\"f3587d7\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9d88ee6\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d778882\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f882cf8\",\"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\":\"05:30 AM - 08:30 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\":\"08:00 AM - 01:00 PM\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"327b8dd\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"745f907\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"cafb309\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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=astglobalcolor6\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"636d4e2\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d38a337\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_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\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"info@optimalmentalwellness.org\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3d9e9f9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de25814\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"4f3d199\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":\"600\",\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/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\":\"5f949be\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4a3e248\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"681d7ef\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b6dc872\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"58b2e9d\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc600c8\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"42aae38\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4778a74\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a544aab\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_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\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"admin@serenesoundwellness.com\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4736, 416, '_elementor_edit_mode', 'builder'),
(4737, 416, '_elementor_template_type', 'footer'),
(4738, 416, '_elementor_version', '4.1.3'),
(4739, 416, '_elementor_pro_version', '4.1.1'),
(4740, 416, '_elementor_page_settings', 'a:0:{}'),
(4741, 416, '_elementor_global_class_usage_indexed', '1'),
(4742, 416, '_elementor_global_class_usage_indexed_preview', '1');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4743, 416, '_elementor_data', '[{\"id\":\"45a43215\",\"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_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_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\":\"\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#1D1D1D\",\"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\":\"318ef7a1\",\"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_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_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\",\"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\":\"8c00b33\",\"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_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_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\":\"\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ffb7eac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_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_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\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"23940642\",\"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_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_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__\":{\"text_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\":\"text-editor\"}],\"isInner\":true},{\"id\":\"53de6a0\",\"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_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_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\":\"\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"67c12010\",\"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\":\"2025-08-24 to 2025-08-30\",\"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\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b8a7a8c\",\"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\":\"2025-08-24 to 2025-08-30\",\"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\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor2\",\"_border_color\":\"\"},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1ee47a63\",\"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\":\"2025-08-24 to 2025-08-30\",\"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\":[]},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7a1973f0\",\"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\":\"2025-08-24 to 2025-08-30\",\"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=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\":[]},\"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\":\"social-icons\"}],\"isInner\":true},{\"id\":\"69093567\",\"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_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_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\":\"\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"33fc7c8a\",\"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_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_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\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"232c0627\",\"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\":\"2025-08-24 to 2025-08-30\",\"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\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor2\",\"_border_color\":\"\"},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1e39e7fa\",\"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\"},\"closed\":\"no\",\"highlight_bg\":\"\",\"highlight_color\":\"\"},{\"_id\":\"da64ace\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\",\"day\":\"Monday\",\"closed\":\"no\",\"highlight\":\"no\",\"highlight_bg\":\"\",\"highlight_color\":\"\"},{\"day\":\"Tuesday\",\"_id\":\"a4cc763\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\",\"closed\":\"no\",\"highlight\":\"no\",\"highlight_bg\":\"\",\"highlight_color\":\"\"},{\"day\":\"Wednesday\",\"_id\":\"6778403\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\",\"closed\":\"no\",\"highlight\":\"no\",\"highlight_bg\":\"\",\"highlight_color\":\"\"},{\"day\":\"Thursday\",\"_id\":\"54a0872\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\",\"closed\":\"no\",\"highlight\":\"no\",\"highlight_bg\":\"\",\"highlight_color\":\"\"},{\"day\":\"Friday\",\"_id\":\"12ce824\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\",\"closed\":\"no\",\"highlight\":\"no\",\"highlight_bg\":\"\",\"highlight_color\":\"\"},{\"day\":\"Saturday\",\"highlight\":\"yes\",\"_id\":\"9cfdedb\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor2\"},\"closed\":\"no\",\"highlight_bg\":\"\",\"highlight_color\":\"\"}],\"business_hours_custom\":[{\"day\":\"Monday\",\"_id\":\"cee2f1e\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\",\"closed\":\"no\",\"highlight\":\"no\",\"highlight_bg\":\"\",\"highlight_color\":\"\"},{\"day\":\"Tuesday\",\"_id\":\"45ae0c5\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\",\"closed\":\"no\",\"highlight\":\"no\",\"highlight_bg\":\"\",\"highlight_color\":\"\"},{\"day\":\"Wednesday\",\"_id\":\"86a6f01\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\",\"closed\":\"no\",\"highlight\":\"no\",\"highlight_bg\":\"\",\"highlight_color\":\"\"},{\"day\":\"Thursday\",\"_id\":\"7a864b7\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\",\"closed\":\"no\",\"highlight\":\"no\",\"highlight_bg\":\"\",\"highlight_color\":\"\"},{\"day\":\"Friday\",\"_id\":\"7829cb0\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\",\"closed\":\"no\",\"highlight\":\"no\",\"highlight_bg\":\"\",\"highlight_color\":\"\"},{\"day\":\"Saturday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"0ab76c1\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\",\"highlight_bg\":\"\"},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"872d85e\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\",\"highlight_bg\":\"\"}],\"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_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_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__\":{\"closed_row_day_color\":\"\",\"closed_row_tex_color\":\"\",\"day_color\":\"globals\\/colors?id=astglobalcolor2\",\"hours_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\":\"pp-business-hours\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6bf9010\",\"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_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 15:57\",\"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\":\"\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor3\"},\"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\":\"319a3c50\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2024 All Rights Reserved\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"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 15:57\",\"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=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\":\"heading\"}],\"isInner\":false}]');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4745, 415, '_elementor_controls_usage', 'a:8:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;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:4:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}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:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i: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:1;}}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:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:3;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:2;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:2;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:2;s:6:\"weight\";i:2;s:3:\"gap\";i:2;}}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:2;s:13:\"_border_width\";i:2;s:13:\"_border_color\";i:2;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a: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:17:\"pp-business-hours\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:18:\"section_price_menu\";a:2:{s:14:\"business_hours\";i:1;s:21:\"business_hours_custom\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_rows_style\";a:1:{s:12:\"rows_padding\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(4853, 424, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(4858, 425, '_elementor_source', 'post'),
(4859, 425, '_elementor_edit_mode', 'builder'),
(4860, 425, '_elementor_template_type', 'footer'),
(4861, 425, '_elementor_version', '4.1.3'),
(4862, 425, '_elementor_pro_version', '4.1.1'),
(4863, 425, '_elementor_global_class_usage_indexed', '1'),
(4864, 425, '_elementor_global_class_usage_indexed_preview', '1'),
(4865, 425, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(4866, 425, '_wp_page_template', 'default'),
(4867, 425, '_elementor_data', '[{\"id\":\"36acd947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#2E211D\"},\"elements\":[{\"id\":\"a61f409\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"5b64f0b6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f54abd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"0785fe6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"204810e\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f3adcba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f19265\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"65ebe43c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ba9c024\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1a4d853c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"5011 Gate Parkway Bldg 100 Suite 100  Jacksonville, FL 32256 United States\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=30.246008,-81.533169&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=5011%20Gate%20Pkwy%20Bldg%20100%2C%20Suite%20100%20Collier%20Building%2C%20Parking%20lot%20Jacksonville%2C%20FL%2032256%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"904-901-7913\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:9049017913\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bf68e29\"},{\"text\":\"904-372-6034\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:9043726034\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"030f147\"},{\"text\":\" info@optimalmentalwellness.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto: info@optimalmentalwellness.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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1004a94f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/optimal_mentalhealth?igsh=Y3Z3NjFjYnQ0cXdo\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor6\",\"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\":\"67a9f141\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"48dc4a5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39d06425\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"641fcfd9\",\"elType\":\"widget\",\"settings\":{\"business_hours\":[{\"_id\":\"da64ace\",\"opening_hours\":\"05:30\",\"closing_hours\":\"20:30\",\"closed_text\":\"Closed\"},{\"day\":\"Tuesday\",\"_id\":\"a4cc763\",\"opening_hours\":\"05:30\",\"closing_hours\":\"20:30\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"6778403\",\"opening_hours\":\"05:30\",\"closing_hours\":\"20:30\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"54a0872\",\"opening_hours\":\"05:30\",\"closing_hours\":\"20:30\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"12ce824\",\"opening_hours\":\"05:30\",\"closing_hours\":\"20:00\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"highlight\":\"yes\",\"_id\":\"9cfdedb\",\"opening_hours\":\"08:00\",\"closing_hours\":\"13:00\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor4\"}},{\"day\":\"Sunday\",\"highlight\":\"yes\",\"_id\":\"a387f05\",\"opening_hours\":\"08:00\",\"closing_hours\":\"13:00\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor4\"}}],\"business_hours_custom\":[{\"day\":\"Monday\",\"_id\":\"cee2f1e\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Tuesday\",\"_id\":\"45ae0c5\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"86a6f01\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"7a864b7\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"7829cb0\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"0ab76c1\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"872d85e\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"}],\"rows_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"3\",\"bottom\":\"5\",\"left\":\"3\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ef806cc\",\"pp_condition_date_time_before_value\":\"2024-06-11 13:29\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"closed_row_day_color\":\"globals\\/colors?id=astglobalcolor4\",\"closed_row_tex_color\":\"globals\\/colors?id=astglobalcolor4\",\"day_color\":\"globals\\/colors?id=astglobalcolor4\",\"hours_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-business-hours\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ac53f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#241815\"},\"elements\":[{\"id\":\"86a6b29\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All Rights Reserved. Website Developed by\\u00a0<a href=\\\"https:\\/\\/devrivo.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a>\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(4874, 426, '_elementor_source', 'post'),
(4875, 426, '_elementor_edit_mode', 'builder'),
(4876, 426, '_elementor_template_type', 'footer'),
(4877, 426, '_elementor_version', '4.1.3'),
(4878, 426, '_elementor_pro_version', '4.1.1'),
(4879, 426, '_elementor_global_class_usage_indexed', '1'),
(4880, 426, '_elementor_global_class_usage_indexed_preview', '1'),
(4881, 426, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(4882, 426, '_wp_page_template', 'default'),
(4883, 426, '_elementor_data', '[{\"id\":\"36acd947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#2E211D\"},\"elements\":[{\"id\":\"a61f409\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"5b64f0b6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f54abd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"0785fe6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"204810e\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f3adcba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f19265\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"65ebe43c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ba9c024\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1a4d853c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"5011 Gate Parkway Bldg 100 Suite 100  Jacksonville, FL 32256 United States\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=30.246008,-81.533169&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=5011%20Gate%20Pkwy%20Bldg%20100%2C%20Suite%20100%20Collier%20Building%2C%20Parking%20lot%20Jacksonville%2C%20FL%2032256%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"904-901-7913\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:9049017913\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bf68e29\"},{\"text\":\"904-372-6034\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:9043726034\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"030f147\"},{\"text\":\" info@optimalmentalwellness.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto: info@optimalmentalwellness.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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1004a94f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/optimal_mentalhealth?igsh=Y3Z3NjFjYnQ0cXdo\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor6\",\"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\":\"67a9f141\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"48dc4a5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39d06425\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"641fcfd9\",\"elType\":\"widget\",\"settings\":{\"business_hours\":[{\"_id\":\"da64ace\",\"opening_hours\":\"05:30\",\"closing_hours\":\"20:30\",\"closed_text\":\"Closed\"},{\"day\":\"Tuesday\",\"_id\":\"a4cc763\",\"opening_hours\":\"05:30\",\"closing_hours\":\"20:30\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"6778403\",\"opening_hours\":\"05:30\",\"closing_hours\":\"20:30\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"54a0872\",\"opening_hours\":\"05:30\",\"closing_hours\":\"20:30\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"12ce824\",\"opening_hours\":\"05:30\",\"closing_hours\":\"20:00\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"highlight\":\"yes\",\"_id\":\"9cfdedb\",\"opening_hours\":\"08:00\",\"closing_hours\":\"13:00\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor4\"}},{\"day\":\"Sunday\",\"highlight\":\"yes\",\"_id\":\"a387f05\",\"opening_hours\":\"08:00\",\"closing_hours\":\"13:00\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor4\"}}],\"business_hours_custom\":[{\"day\":\"Monday\",\"_id\":\"cee2f1e\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Tuesday\",\"_id\":\"45ae0c5\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"86a6f01\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"7a864b7\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"7829cb0\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"0ab76c1\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"872d85e\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"}],\"rows_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"3\",\"bottom\":\"5\",\"left\":\"3\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ef806cc\",\"pp_condition_date_time_before_value\":\"2024-06-11 13:29\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"closed_row_day_color\":\"globals\\/colors?id=astglobalcolor4\",\"closed_row_tex_color\":\"globals\\/colors?id=astglobalcolor4\",\"day_color\":\"globals\\/colors?id=astglobalcolor4\",\"hours_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-business-hours\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ac53f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#241815\"},\"elements\":[{\"id\":\"86a6b29\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9[copyright]. All Rights Reserved. Website Developed by\\u00a0<a hrecopyrightf=\\\"https:\\/\\/devrivo.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a>\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(4869, 425, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(4885, 426, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(4890, 427, '_elementor_source', 'post'),
(4891, 427, '_elementor_edit_mode', 'builder'),
(4892, 427, '_elementor_template_type', 'footer'),
(4893, 427, '_elementor_version', '4.1.3'),
(4894, 427, '_elementor_pro_version', '4.1.1'),
(4895, 427, '_elementor_global_class_usage_indexed', '1'),
(4896, 427, '_elementor_global_class_usage_indexed_preview', '1'),
(4897, 427, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(4898, 427, '_wp_page_template', 'default');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4899, 427, '_elementor_data', '[{\"id\":\"36acd947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#2E211D\"},\"elements\":[{\"id\":\"a61f409\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"5b64f0b6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f54abd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"0785fe6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"204810e\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f3adcba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f19265\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"65ebe43c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ba9c024\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1a4d853c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"5011 Gate Parkway Bldg 100 Suite 100  Jacksonville, FL 32256 United States\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=30.246008,-81.533169&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=5011%20Gate%20Pkwy%20Bldg%20100%2C%20Suite%20100%20Collier%20Building%2C%20Parking%20lot%20Jacksonville%2C%20FL%2032256%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"904-901-7913\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:9049017913\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bf68e29\"},{\"text\":\"904-372-6034\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:9043726034\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"030f147\"},{\"text\":\" info@optimalmentalwellness.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto: info@optimalmentalwellness.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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1004a94f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/optimal_mentalhealth?igsh=Y3Z3NjFjYnQ0cXdo\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor6\",\"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\":\"67a9f141\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"48dc4a5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39d06425\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"641fcfd9\",\"elType\":\"widget\",\"settings\":{\"business_hours\":[{\"_id\":\"da64ace\",\"opening_hours\":\"05:30\",\"closing_hours\":\"20:30\",\"closed_text\":\"Closed\"},{\"day\":\"Tuesday\",\"_id\":\"a4cc763\",\"opening_hours\":\"05:30\",\"closing_hours\":\"20:30\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"6778403\",\"opening_hours\":\"05:30\",\"closing_hours\":\"20:30\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"54a0872\",\"opening_hours\":\"05:30\",\"closing_hours\":\"20:30\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"12ce824\",\"opening_hours\":\"05:30\",\"closing_hours\":\"20:00\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"highlight\":\"yes\",\"_id\":\"9cfdedb\",\"opening_hours\":\"08:00\",\"closing_hours\":\"13:00\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor4\"}},{\"day\":\"Sunday\",\"highlight\":\"yes\",\"_id\":\"a387f05\",\"opening_hours\":\"08:00\",\"closing_hours\":\"13:00\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor4\"}}],\"business_hours_custom\":[{\"day\":\"Monday\",\"_id\":\"cee2f1e\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Tuesday\",\"_id\":\"45ae0c5\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"86a6f01\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"7a864b7\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"7829cb0\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"0ab76c1\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"872d85e\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"}],\"rows_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"3\",\"bottom\":\"5\",\"left\":\"3\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ef806cc\",\"pp_condition_date_time_before_value\":\"2024-06-11 13:29\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"closed_row_day_color\":\"globals\\/colors?id=astglobalcolor4\",\"closed_row_tex_color\":\"globals\\/colors?id=astglobalcolor4\",\"day_color\":\"globals\\/colors?id=astglobalcolor4\",\"hours_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-business-hours\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ac53f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#241815\"},\"elements\":[{\"id\":\"86a6b29\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 [copyright]. All Rights Reserved. Website Developed by\\u00a0<a hrecopyrightf=\\\"https:\\/\\/devrivo.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a>\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(8712, 733, '_elementor_source', 'post'),
(8713, 733, '_elementor_edit_mode', 'builder'),
(8714, 733, '_elementor_template_type', 'footer'),
(8715, 733, '_elementor_version', '4.1.3'),
(8716, 733, '_elementor_pro_version', '4.1.1'),
(8717, 733, '_elementor_global_class_usage_indexed', '1'),
(8718, 733, '_elementor_global_class_usage_indexed_preview', '1'),
(8719, 733, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(8720, 733, '_wp_page_template', 'default'),
(8721, 733, '_elementor_data', '[{\"id\":\"36acd947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#2E211D\"},\"elements\":[{\"id\":\"a61f409\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"5b64f0b6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f54abd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"0785fe6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"204810e\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f3adcba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f19265\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"65ebe43c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ba9c024\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1a4d853c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"5011 Gate Parkway Bldg 100 Suite 100  Jacksonville, FL 32256 United States\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=30.246008,-81.533169&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=5011%20Gate%20Pkwy%20Bldg%20100%2C%20Suite%20100%20Collier%20Building%2C%20Parking%20lot%20Jacksonville%2C%20FL%2032256%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"2590 Welton Street suite 200 Denver,Colorado  80205\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4bda8ba\"},{\"text\":\"877 296 7846\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:8772967846\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bf68e29\"},{\"text\":\"470 222-2746\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:4702222746\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"030f147\"},{\"text\":\" info@optimalmentalwellness.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto: info@optimalmentalwellness.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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1004a94f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/optimal_mentalhealth?igsh=Y3Z3NjFjYnQ0cXdo\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor6\",\"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\":\"67a9f141\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"48dc4a5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39d06425\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"641fcfd9\",\"elType\":\"widget\",\"settings\":{\"business_hours\":[{\"_id\":\"da64ace\",\"opening_hours\":\"05:30\",\"closing_hours\":\"20:30\",\"closed_text\":\"Closed\"},{\"day\":\"Tuesday\",\"_id\":\"a4cc763\",\"opening_hours\":\"05:30\",\"closing_hours\":\"20:30\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"6778403\",\"opening_hours\":\"05:30\",\"closing_hours\":\"20:30\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"54a0872\",\"opening_hours\":\"05:30\",\"closing_hours\":\"20:30\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"12ce824\",\"opening_hours\":\"05:30\",\"closing_hours\":\"20:00\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"highlight\":\"yes\",\"_id\":\"9cfdedb\",\"opening_hours\":\"08:00\",\"closing_hours\":\"13:00\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor4\"}},{\"day\":\"Sunday\",\"highlight\":\"yes\",\"_id\":\"a387f05\",\"opening_hours\":\"08:00\",\"closing_hours\":\"13:00\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor4\"}}],\"business_hours_custom\":[{\"day\":\"Monday\",\"_id\":\"cee2f1e\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Tuesday\",\"_id\":\"45ae0c5\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"86a6f01\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"7a864b7\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"7829cb0\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"0ab76c1\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"872d85e\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"}],\"rows_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"3\",\"bottom\":\"5\",\"left\":\"3\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ef806cc\",\"pp_condition_date_time_before_value\":\"2024-06-11 13:29\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"closed_row_day_color\":\"globals\\/colors?id=astglobalcolor4\",\"closed_row_tex_color\":\"globals\\/colors?id=astglobalcolor4\",\"day_color\":\"globals\\/colors?id=astglobalcolor4\",\"hours_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-business-hours\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ac53f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#241815\"},\"elements\":[{\"id\":\"86a6b29\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 [copyright]. All Rights Reserved. Website Developed by\\u00a0<a hrecopyrightf=\\\"https:\\/\\/devrivo.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a>\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(7035, 608, '_elementor_page_settings', 'a:0:{}'),
(7037, 609, '_elementor_global_class_usage_indexed', '1'),
(7039, 609, '_elementor_edit_mode', 'builder'),
(7040, 609, '_elementor_template_type', 'wp-page'),
(7041, 609, '_elementor_version', '4.1.3'),
(7042, 609, '_elementor_pro_version', '4.1.1'),
(7043, 609, '_elementor_global_class_usage_indexed_preview', '1'),
(7044, 609, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7045, 609, '_elementor_data', '[{\"id\":\"930c0f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e9b1af4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"88a3c22\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":600,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/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\":\"f3587d7\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9d88ee6\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d778882\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f882cf8\",\"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\":\"05:30 AM - 08:30 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\":\"08:00 AM - 01:00 PM\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"327b8dd\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"745f907\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"cafb309\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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=astglobalcolor6\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"636d4e2\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d38a337\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_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\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"info@optimalmentalwellness.org\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3d9e9f9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de25814\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"4f3d199\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":\"600\",\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/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\":\"5f949be\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4a3e248\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"681d7ef\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b6dc872\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"58b2e9d\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc600c8\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"42aae38\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4778a74\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a544aab\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_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\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"admin@serenesoundwellness.com\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4901, 427, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(7024, 607, '_elementor_page_settings', 'a:0:{}'),
(7025, 608, '_wp_page_template', 'elementor_header_footer'),
(7026, 608, '_elementor_global_class_usage_indexed', '1'),
(7028, 608, '_elementor_edit_mode', 'builder'),
(7029, 608, '_elementor_template_type', 'wp-page'),
(7030, 608, '_elementor_version', '4.1.3'),
(7031, 608, '_elementor_pro_version', '4.1.1'),
(7032, 608, '_elementor_global_class_usage_indexed_preview', '1'),
(7033, 608, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7034, 608, '_elementor_data', '[{\"id\":\"930c0f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e9b1af4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"88a3c22\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":600,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/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\":\"f3587d7\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9d88ee6\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d778882\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f882cf8\",\"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\":\"05:30 AM - 08:30 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\":\"08:00 AM - 01:00 PM\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"327b8dd\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"745f907\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"cafb309\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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=astglobalcolor6\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"636d4e2\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d38a337\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_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\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"admin@serenesoundwellness.com\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3d9e9f9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de25814\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"4f3d199\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":\"600\",\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/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\":\"5f949be\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4a3e248\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"681d7ef\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b6dc872\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"58b2e9d\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc600c8\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"42aae38\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4778a74\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a544aab\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_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\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"admin@serenesoundwellness.com\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4911, 415, '_elementor_screenshot_failed', '2026-06-17 09:14:21'),
(4922, 428, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(7931, 675, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(4926, 428, '_elementor_screenshot_failed', '2026-06-17 02:41:17'),
(4947, 430, '_elementor_source', 'post'),
(4948, 430, '_elementor_edit_mode', 'builder'),
(4949, 430, '_elementor_template_type', 'header'),
(4950, 430, '_elementor_version', '4.1.3'),
(4951, 430, '_elementor_pro_version', '4.1.1'),
(4952, 430, '_elementor_global_class_usage_indexed', '1'),
(4953, 430, '_elementor_global_class_usage_indexed_preview', '1'),
(4954, 430, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(4955, 430, '_wp_page_template', 'default');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4956, 430, '_elementor_data', '[{\"id\":\"7cd2407b\",\"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},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4b376675\",\"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\":\"14e415c9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@optimalmentalwellness.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@optimalmentalwellness.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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5137f99d\",\"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\":\"416cdcb9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"904-901-7913\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:9049017913\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=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\":\"6090cb25\",\"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\"},\"elements\":[{\"id\":\"42e85872\",\"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\":\"5d51e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Optimal-Mental-Health-And-Wellness-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":300,\"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\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_position\":\"absolute\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"388619a3\",\"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\":\"2a70cfde\",\"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\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"500\",\"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=astglobalcolor6\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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\":[]},\"_flex_order_tablet_extra\":\"end\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"ca7841b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"590be00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"454cd36b\",\"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\\/optimalmentalwellness\\/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\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"5aa4113e\",\"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}]'),
(4941, 429, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(8739, 734, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(7014, 607, '_wp_page_template', 'elementor_header_footer'),
(7015, 607, '_elementor_global_class_usage_indexed', '1'),
(7017, 607, '_elementor_edit_mode', 'builder'),
(7018, 607, '_elementor_template_type', 'wp-page'),
(7019, 607, '_elementor_version', '4.1.3'),
(7020, 607, '_elementor_pro_version', '4.1.1'),
(7021, 607, '_elementor_global_class_usage_indexed_preview', '1'),
(7022, 607, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7023, 607, '_elementor_data', '[{\"id\":\"930c0f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e9b1af4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"88a3c22\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":600,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/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\":\"f3587d7\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9d88ee6\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d778882\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f882cf8\",\"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\":\"05:30 AM - 08:30 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\":\"08:00 AM - 01:00 PM\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"327b8dd\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"745f907\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"cafb309\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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=astglobalcolor6\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"636d4e2\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d38a337\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_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\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"admin@serenesoundwellness.com\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3d9e9f9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de25814\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"4f3d199\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":\"600\",\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/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\":\"5f949be\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4a3e248\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"681d7ef\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b6dc872\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"58b2e9d\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc600c8\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"42aae38\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4778a74\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a544aab\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_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\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"admin@serenesoundwellness.com\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4962, 431, '_elementor_edit_mode', 'builder'),
(4963, 431, '_elementor_template_type', 'header'),
(4964, 431, '_elementor_version', '4.1.3'),
(4965, 431, '_elementor_pro_version', '4.1.1'),
(4966, 431, '_elementor_global_class_usage_indexed', '1'),
(4967, 431, '_elementor_global_class_usage_indexed_preview', '1'),
(4968, 431, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(4969, 431, '_wp_page_template', 'default');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4970, 431, '_elementor_data', '[{\"id\":\"7cd2407b\",\"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},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4b376675\",\"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\":\"14e415c9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@optimalmentalwellness.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@optimalmentalwellness.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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5137f99d\",\"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\":\"416cdcb9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"904-901-7913\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:9049017913\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=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\":\"6090cb25\",\"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\"},\"elements\":[{\"id\":\"42e85872\",\"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\":\"5d51e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Optimal-Mental-Health-And-Wellness-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":300,\"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\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_position\":\"absolute\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"388619a3\",\"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\":\"2a70cfde\",\"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\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"500\",\"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=astglobalcolor6\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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\":[]},\"_flex_order_tablet_extra\":\"end\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"ca7841b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"590be00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"454cd36b\",\"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\\/optimalmentalwellness\\/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\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"5aa4113e\",\"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}]'),
(4971, 431, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(4979, 433, '_elementor_source', 'post'),
(4980, 433, '_elementor_edit_mode', 'builder'),
(4981, 433, '_elementor_template_type', 'header'),
(4982, 433, '_elementor_version', '4.1.3'),
(4983, 433, '_elementor_pro_version', '4.1.1'),
(4984, 433, '_elementor_global_class_usage_indexed', '1'),
(4985, 433, '_elementor_global_class_usage_indexed_preview', '1'),
(4986, 433, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(4987, 433, '_wp_page_template', 'default'),
(4988, 433, '_elementor_data', '[{\"id\":\"7cd2407b\",\"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},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4b376675\",\"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\":\"14e415c9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@optimalmentalwellness.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@optimalmentalwellness.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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5137f99d\",\"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\":\"416cdcb9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"904-901-7913\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:9049017913\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=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\":\"6090cb25\",\"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\"},\"elements\":[{\"id\":\"42e85872\",\"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\":\"5d51e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Optimal-Mental-Health-And-Wellness-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":300,\"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\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_position\":\"absolute\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"388619a3\",\"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\":\"2a70cfde\",\"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\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"500\",\"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=astglobalcolor6\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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\":[]},\"_flex_order_tablet_extra\":\"end\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"ca7841b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"590be00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"454cd36b\",\"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\":432,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Mental-Health-And-Wellness-av.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"5aa4113e\",\"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}]'),
(6452, 561, '_elementor_source', 'post'),
(6453, 561, '_elementor_edit_mode', 'builder'),
(6416, 559, '_elementor_source', 'post'),
(6417, 559, '_elementor_edit_mode', 'builder'),
(6418, 559, '_elementor_template_type', 'header'),
(6419, 559, '_elementor_version', '4.1.3'),
(6420, 559, '_elementor_pro_version', '4.1.1'),
(6421, 559, '_elementor_global_class_usage_indexed', '1'),
(6422, 559, '_elementor_global_class_usage_indexed_preview', '1'),
(6423, 559, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6424, 559, '_wp_page_template', 'default'),
(6425, 559, '_elementor_data', '[{\"id\":\"7cd2407b\",\"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},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"boxed_width\":{\"unit\":\"px\",\"size\":1500,\"sizes\":[]}},\"elements\":[{\"id\":\"4b376675\",\"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\":\"14e415c9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@optimalmentalwellness.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@optimalmentalwellness.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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5137f99d\",\"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\":\"416cdcb9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"904-901-7913\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:9049017913\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=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\":\"6090cb25\",\"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\",\"boxed_width\":{\"unit\":\"px\",\"size\":1500,\"sizes\":[]}},\"elements\":[{\"id\":\"42e85872\",\"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\":\"5d51e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Optimal-Mental-Health-And-Wellness-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":300,\"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\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_position\":\"absolute\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"388619a3\",\"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\":\"2a70cfde\",\"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\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"500\",\"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=astglobalcolor6\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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\":[]},\"_flex_order_tablet_extra\":\"end\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"ca7841b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"590be00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"454cd36b\",\"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\":432,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Mental-Health-And-Wellness-av.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"5aa4113e\",\"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}]'),
(6426, 559, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(4977, 432, '_wp_attached_file', '2026/06/Mental-Health-And-Wellness-av.jpg'),
(4978, 432, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:667;s:4:\"file\";s:41:\"2026/06/Mental-Health-And-Wellness-av.jpg\";s:8:\"filesize\";i:139532;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Mental-Health-And-Wellness-av-300x100.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9483;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"Mental-Health-And-Wellness-av-1024x342.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62656;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Mental-Health-And-Wellness-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:6076;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"Mental-Health-And-Wellness-av-768x256.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39442;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:42:\"Mental-Health-And-Wellness-av-1536x512.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122850;}}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:\"\";}}'),
(4989, 433, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(7036, 609, '_wp_page_template', 'elementor_header_footer'),
(4997, 31, '_elementor_edit_mode', 'builder'),
(4998, 31, '_astra_content_layout_flag', 'disabled'),
(5000, 31, 'ast-title-bar-display', 'disabled'),
(5001, 31, 'ast-featured-img', 'disabled'),
(5002, 31, '_elementor_template_type', 'wp-page'),
(5003, 31, '_elementor_version', '4.1.3'),
(5004, 31, '_elementor_pro_version', '4.1.1');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5028, 31, '_elementor_data', '[{\"id\":\"d470357\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"b9719ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"fceae5a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"common_image_animation\"},\"elements\":[{\"id\":\"8b82d55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7915aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"72e147b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"05c690f\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"790d19d\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"b32af58\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"},\"hide_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\":\"icon-list\"},{\"id\":\"da6b95c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"eacb348\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"1e29740\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"css_classes\":\"common_image_animation\"},\"elements\":[{\"id\":\"80acc11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a492158\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"97daae6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5006, 31, '_elementor_global_class_usage_indexed_preview', '1'),
(5007, 31, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5008, 434, '_wp_page_template', 'elementor_header_footer'),
(5010, 434, '_elementor_global_class_usage_indexed', '1'),
(5011, 434, '_elementor_edit_mode', 'builder'),
(5012, 434, '_elementor_template_type', 'wp-page'),
(5013, 434, '_elementor_version', '4.1.3'),
(5014, 434, '_elementor_pro_version', '4.1.1'),
(5015, 434, '_elementor_page_settings', 'a:0:{}'),
(5016, 434, '_elementor_global_class_usage_indexed_preview', '1'),
(5017, 434, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5018, 435, '_wp_page_template', 'elementor_header_footer'),
(5020, 435, '_elementor_global_class_usage_indexed', '1'),
(5021, 435, '_elementor_edit_mode', 'builder'),
(5022, 435, '_elementor_template_type', 'wp-page'),
(5023, 435, '_elementor_version', '4.1.3'),
(5024, 435, '_elementor_pro_version', '4.1.1'),
(5025, 435, '_elementor_page_settings', 'a:0:{}'),
(5026, 435, '_elementor_global_class_usage_indexed_preview', '1'),
(5027, 435, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5029, 436, '_wp_page_template', 'elementor_header_footer'),
(5031, 436, '_elementor_global_class_usage_indexed', '1'),
(5032, 436, '_elementor_edit_mode', 'builder'),
(5033, 436, '_elementor_template_type', 'wp-page'),
(5034, 436, '_elementor_version', '4.1.3'),
(5035, 436, '_elementor_pro_version', '4.1.1'),
(5036, 436, '_elementor_global_class_usage_indexed_preview', '1'),
(5037, 436, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5038, 436, '_elementor_data', '[{\"id\":\"d470357\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"b9719ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"fceae5a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8b82d55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7915aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"72e147b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"05c690f\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"790d19d\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"b32af58\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"},\"hide_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\":\"icon-list\"},{\"id\":\"da6b95c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"eacb348\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"1e29740\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"80acc11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a492158\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"97daae6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8329, 704, '_wp_page_template', 'elementor_header_footer'),
(8330, 704, '_elementor_global_class_usage_indexed', '1'),
(8331, 704, '_elementor_edit_mode', 'builder'),
(8332, 704, '_elementor_template_type', 'wp-page'),
(8333, 704, '_elementor_version', '4.1.3'),
(8334, 704, '_elementor_pro_version', '4.1.1'),
(8335, 704, '_elementor_global_class_usage_indexed_preview', '1'),
(8336, 704, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(8337, 704, '_elementor_data', '[{\"id\":\"d470357\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"b9719ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"fceae5a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8b82d55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7915aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"72e147b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"05c690f\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"790d19d\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"b32af58\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"},\"hide_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\":\"icon-list\"},{\"id\":\"da6b95c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"eacb348\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"1e29740\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"80acc11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a492158\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"97daae6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5043, 12, '_elementor_edit_mode', 'builder'),
(5044, 12, '_astra_content_layout_flag', 'disabled'),
(5046, 12, 'ast-title-bar-display', 'disabled'),
(5047, 12, 'ast-featured-img', 'disabled'),
(5048, 12, '_elementor_template_type', 'wp-page'),
(5049, 12, '_elementor_version', '4.1.3'),
(5050, 12, '_elementor_pro_version', '4.1.1'),
(5074, 12, '_elementor_data', '[{\"id\":\"ac1e13a\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f591f8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"567cfdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a7a518c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b98719c\"}]},\"elements\":[{\"id\":\"f627272\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5563ffc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"05b7cf4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"122bdd4\"}],\"pp_display_conditions\":[{\"_id\":\"f889efe\"}]},\"elements\":[{\"id\":\"26b48d2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9d9933e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"402ab08\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69abc97\"}],\"pp_display_conditions\":[{\"_id\":\"dc50305\"}],\"animation\":\"fadeInLeft\",\"css_classes\":\"common_image_animation\"},\"elements\":[{\"id\":\"d6c45ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/IMG_9815.jpg\",\"id\":440,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"838e566\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a90d849\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9d9933e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"402ab08\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69abc97\"}],\"pp_display_conditions\":[{\"_id\":\"dc50305\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"224a3be\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Provider\",\"pp_display_conditions\":[{\"_id\":\"8723de8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515aee8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arlene Johnson\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"8723de8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae218c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Arlene Johnson is a distinguished board -certified Nurse Practitioner holding a Masters Degree in Nursing Practice. Arlene is licensed in the state of Florida,Washington,Arizona,and Colorado as a Psychiatric Mental Health Nurse Practitioner . She obtained her Bachelor\\u2019s degree and Master\\u2019s degree from Walden University.<\\/p><p>Arlene\'s passion for mental health was ignited early on in her nursing career, and since then, being an advocate for those suffering from mental health conditions has been at the forefront. With well over a decade of experience in the healthcare field, ranging from treating acute to chronic conditions, Arlene believes in a comprehensive approach integrating both her Psychiatric and Medical background grounded in evidence-based practice to provide the highest quality of care. With her patient-centered care tailored to meet the needs of each individual patient, she not only fosters a caring therapeutic environment, but she also empowers her patients to become the best version of themselves.<br \\/><br \\/>Her years of extensive healthcare experience and unparalleled insight has helped individuals cultivate a path towards a balanced and fulfilling life of mental wellness!<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"6e0e683\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5052, 12, '_elementor_global_class_usage_indexed_preview', '1'),
(5053, 12, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5054, 437, '_wp_page_template', 'elementor_header_footer'),
(5056, 437, '_elementor_global_class_usage_indexed', '1'),
(5057, 437, '_elementor_edit_mode', 'builder'),
(5058, 437, '_elementor_template_type', 'wp-page'),
(5059, 437, '_elementor_version', '4.1.3'),
(5060, 437, '_elementor_pro_version', '4.1.1'),
(5061, 437, '_elementor_page_settings', 'a:0:{}'),
(5062, 437, '_elementor_global_class_usage_indexed_preview', '1'),
(5063, 437, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5064, 438, '_wp_page_template', 'elementor_header_footer'),
(5066, 438, '_elementor_global_class_usage_indexed', '1'),
(5067, 438, '_elementor_edit_mode', 'builder'),
(5068, 438, '_elementor_template_type', 'wp-page'),
(5069, 438, '_elementor_version', '4.1.3'),
(5070, 438, '_elementor_pro_version', '4.1.1'),
(5071, 438, '_elementor_page_settings', 'a:0:{}'),
(5072, 438, '_elementor_global_class_usage_indexed_preview', '1'),
(5073, 438, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5075, 439, '_wp_page_template', 'elementor_header_footer'),
(5077, 439, '_elementor_global_class_usage_indexed', '1'),
(5078, 439, '_elementor_edit_mode', 'builder'),
(5079, 439, '_elementor_template_type', 'wp-page'),
(5080, 439, '_elementor_version', '4.1.3'),
(5081, 439, '_elementor_pro_version', '4.1.1'),
(5082, 439, '_elementor_global_class_usage_indexed_preview', '1'),
(5083, 439, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5084, 439, '_elementor_data', '[{\"id\":\"ac1e13a\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f591f8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"567cfdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a7a518c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b98719c\"}]},\"elements\":[{\"id\":\"f627272\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5563ffc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"05b7cf4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"122bdd4\"}],\"pp_display_conditions\":[{\"_id\":\"f889efe\"}]},\"elements\":[{\"id\":\"26b48d2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9d9933e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"402ab08\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69abc97\"}],\"pp_display_conditions\":[{\"_id\":\"dc50305\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"a90d849\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9d9933e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"402ab08\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69abc97\"}],\"pp_display_conditions\":[{\"_id\":\"dc50305\"}]},\"elements\":[{\"id\":\"224a3be\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Provider\",\"pp_display_conditions\":[{\"_id\":\"8723de8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515aee8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arlene Johnson\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"8723de8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae218c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Arlene Johnson is a distinguished board -certified Nurse Practitioner holding a Masters Degree in Nursing Practice. Arlene is licensed in the state of Florida,Washington,Arizona,and Colorado as a Psychiatric Mental Health Nurse Practitioner . She obtained her Bachelor\\u2019s degree and Master\\u2019s degree from Walden University.<\\/p><p>Arlene\'s passion for mental health was ignited early on in her nursing career, and since then, being an advocate for those suffering from mental health conditions has been at the forefront. With well over a decade of experience in the healthcare field, ranging from treating acute to chronic conditions, Arlene believes in a comprehensive approach integrating both her Psychiatric and Medical background grounded in evidence-based practice to provide the highest quality of care. With her patient-centered care tailored to meet the needs of each individual patient, she not only fosters a caring therapeutic environment, but she also empowers her patients to become the best version of themselves.<br \\/><br \\/>Her years of extensive healthcare experience and unparalleled insight has helped individuals cultivate a path towards a balanced and fulfilling life of mental wellness!<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"6e0e683\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5089, 441, '_wp_page_template', 'elementor_header_footer'),
(5091, 441, '_elementor_global_class_usage_indexed', '1'),
(5092, 441, '_elementor_edit_mode', 'builder'),
(5093, 441, '_elementor_template_type', 'wp-page'),
(5094, 441, '_elementor_version', '4.1.3'),
(5095, 441, '_elementor_pro_version', '4.1.1'),
(5096, 441, '_elementor_global_class_usage_indexed_preview', '1'),
(5097, 441, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5098, 441, '_elementor_data', '[{\"id\":\"ac1e13a\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f591f8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"567cfdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a7a518c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b98719c\"}]},\"elements\":[{\"id\":\"f627272\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5563ffc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"05b7cf4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"122bdd4\"}],\"pp_display_conditions\":[{\"_id\":\"f889efe\"}]},\"elements\":[{\"id\":\"26b48d2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9d9933e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"402ab08\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69abc97\"}],\"pp_display_conditions\":[{\"_id\":\"dc50305\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"a90d849\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9d9933e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"402ab08\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69abc97\"}],\"pp_display_conditions\":[{\"_id\":\"dc50305\"}]},\"elements\":[{\"id\":\"224a3be\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Provider\",\"pp_display_conditions\":[{\"_id\":\"8723de8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515aee8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arlene Johnson\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"8723de8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae218c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Arlene Johnson is a distinguished board -certified Nurse Practitioner holding a Masters Degree in Nursing Practice. Arlene is licensed in the state of Florida,Washington,Arizona,and Colorado as a Psychiatric Mental Health Nurse Practitioner . She obtained her Bachelor\\u2019s degree and Master\\u2019s degree from Walden University.<\\/p><p>Arlene\'s passion for mental health was ignited early on in her nursing career, and since then, being an advocate for those suffering from mental health conditions has been at the forefront. With well over a decade of experience in the healthcare field, ranging from treating acute to chronic conditions, Arlene believes in a comprehensive approach integrating both her Psychiatric and Medical background grounded in evidence-based practice to provide the highest quality of care. With her patient-centered care tailored to meet the needs of each individual patient, she not only fosters a caring therapeutic environment, but she also empowers her patients to become the best version of themselves.<br \\/><br \\/>Her years of extensive healthcare experience and unparalleled insight has helped individuals cultivate a path towards a balanced and fulfilling life of mental wellness!<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"6e0e683\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5087, 440, '_wp_attached_file', '2026/06/IMG_9815.jpg');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5088, 440, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:826;s:6:\"height\";i:1188;s:4:\"file\";s:20:\"2026/06/IMG_9815.jpg\";s:8:\"filesize\";i:149784;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"IMG_9815-209x300.jpg\";s:5:\"width\";i:209;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10522;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"IMG_9815-712x1024.jpg\";s:5:\"width\";i:712;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58788;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_9815-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4932;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"IMG_9815-768x1105.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1105;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65370;}}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:10:\"Screenshot\";s:17:\"created_timestamp\";s:10:\"1728604387\";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:10:\"Screenshot\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(5099, 441, '_elementor_page_settings', 'a:0:{}'),
(5100, 442, '_wp_page_template', 'elementor_header_footer'),
(5102, 442, '_elementor_global_class_usage_indexed', '1'),
(5103, 442, '_elementor_edit_mode', 'builder'),
(5104, 442, '_elementor_template_type', 'wp-page'),
(5105, 442, '_elementor_version', '4.1.3'),
(5106, 442, '_elementor_pro_version', '4.1.1'),
(5107, 442, '_elementor_global_class_usage_indexed_preview', '1'),
(5108, 442, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5109, 442, '_elementor_data', '[{\"id\":\"ac1e13a\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f591f8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"567cfdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a7a518c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b98719c\"}]},\"elements\":[{\"id\":\"f627272\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5563ffc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"05b7cf4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"122bdd4\"}],\"pp_display_conditions\":[{\"_id\":\"f889efe\"}]},\"elements\":[{\"id\":\"26b48d2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9d9933e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"402ab08\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69abc97\"}],\"pp_display_conditions\":[{\"_id\":\"dc50305\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"a90d849\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9d9933e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"402ab08\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69abc97\"}],\"pp_display_conditions\":[{\"_id\":\"dc50305\"}]},\"elements\":[{\"id\":\"224a3be\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Provider\",\"pp_display_conditions\":[{\"_id\":\"8723de8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515aee8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arlene Johnson\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"8723de8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae218c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Arlene Johnson is a distinguished board -certified Nurse Practitioner holding a Masters Degree in Nursing Practice. Arlene is licensed in the state of Florida,Washington,Arizona,and Colorado as a Psychiatric Mental Health Nurse Practitioner . She obtained her Bachelor\\u2019s degree and Master\\u2019s degree from Walden University.<\\/p><p>Arlene\'s passion for mental health was ignited early on in her nursing career, and since then, being an advocate for those suffering from mental health conditions has been at the forefront. With well over a decade of experience in the healthcare field, ranging from treating acute to chronic conditions, Arlene believes in a comprehensive approach integrating both her Psychiatric and Medical background grounded in evidence-based practice to provide the highest quality of care. With her patient-centered care tailored to meet the needs of each individual patient, she not only fosters a caring therapeutic environment, but she also empowers her patients to become the best version of themselves.<br \\/><br \\/>Her years of extensive healthcare experience and unparalleled insight has helped individuals cultivate a path towards a balanced and fulfilling life of mental wellness!<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"6e0e683\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5110, 442, '_elementor_page_settings', 'a:0:{}'),
(5111, 443, '_wp_page_template', 'elementor_header_footer'),
(5113, 443, '_elementor_global_class_usage_indexed', '1'),
(5114, 443, '_elementor_edit_mode', 'builder'),
(5115, 443, '_elementor_template_type', 'wp-page'),
(5116, 443, '_elementor_version', '4.1.3'),
(5117, 443, '_elementor_pro_version', '4.1.1'),
(5118, 443, '_elementor_global_class_usage_indexed_preview', '1'),
(5119, 443, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5120, 443, '_elementor_data', '[{\"id\":\"ac1e13a\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f591f8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"567cfdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a7a518c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b98719c\"}]},\"elements\":[{\"id\":\"f627272\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5563ffc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"05b7cf4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"122bdd4\"}],\"pp_display_conditions\":[{\"_id\":\"f889efe\"}]},\"elements\":[{\"id\":\"26b48d2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9d9933e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"402ab08\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69abc97\"}],\"pp_display_conditions\":[{\"_id\":\"dc50305\"}]},\"elements\":[{\"id\":\"d6c45ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/IMG_9815.jpg\",\"id\":440,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"838e566\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a90d849\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9d9933e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"402ab08\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69abc97\"}],\"pp_display_conditions\":[{\"_id\":\"dc50305\"}]},\"elements\":[{\"id\":\"224a3be\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Provider\",\"pp_display_conditions\":[{\"_id\":\"8723de8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515aee8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arlene Johnson\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"8723de8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae218c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Arlene Johnson is a distinguished board -certified Nurse Practitioner holding a Masters Degree in Nursing Practice. Arlene is licensed in the state of Florida,Washington,Arizona,and Colorado as a Psychiatric Mental Health Nurse Practitioner . She obtained her Bachelor\\u2019s degree and Master\\u2019s degree from Walden University.<\\/p><p>Arlene\'s passion for mental health was ignited early on in her nursing career, and since then, being an advocate for those suffering from mental health conditions has been at the forefront. With well over a decade of experience in the healthcare field, ranging from treating acute to chronic conditions, Arlene believes in a comprehensive approach integrating both her Psychiatric and Medical background grounded in evidence-based practice to provide the highest quality of care. With her patient-centered care tailored to meet the needs of each individual patient, she not only fosters a caring therapeutic environment, but she also empowers her patients to become the best version of themselves.<br \\/><br \\/>Her years of extensive healthcare experience and unparalleled insight has helped individuals cultivate a path towards a balanced and fulfilling life of mental wellness!<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"6e0e683\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5123, 444, '_wp_page_template', 'elementor_header_footer'),
(5125, 444, '_elementor_global_class_usage_indexed', '1'),
(5126, 444, '_elementor_edit_mode', 'builder'),
(5127, 444, '_elementor_template_type', 'wp-page'),
(5128, 444, '_elementor_version', '4.1.3'),
(5129, 444, '_elementor_pro_version', '4.1.1'),
(5130, 444, '_elementor_global_class_usage_indexed_preview', '1'),
(5131, 444, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5132, 444, '_elementor_data', '[{\"id\":\"ac1e13a\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f591f8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"567cfdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a7a518c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b98719c\"}]},\"elements\":[{\"id\":\"f627272\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5563ffc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"05b7cf4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"122bdd4\"}],\"pp_display_conditions\":[{\"_id\":\"f889efe\"}]},\"elements\":[{\"id\":\"26b48d2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9d9933e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"402ab08\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69abc97\"}],\"pp_display_conditions\":[{\"_id\":\"dc50305\"}]},\"elements\":[{\"id\":\"d6c45ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/IMG_9815.jpg\",\"id\":440,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"838e566\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a90d849\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9d9933e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"402ab08\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69abc97\"}],\"pp_display_conditions\":[{\"_id\":\"dc50305\"}]},\"elements\":[{\"id\":\"224a3be\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Provider\",\"pp_display_conditions\":[{\"_id\":\"8723de8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515aee8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arlene Johnson\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"8723de8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae218c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Arlene Johnson is a distinguished board -certified Nurse Practitioner holding a Masters Degree in Nursing Practice. Arlene is licensed in the state of Florida,Washington,Arizona,and Colorado as a Psychiatric Mental Health Nurse Practitioner . She obtained her Bachelor\\u2019s degree and Master\\u2019s degree from Walden University.<\\/p><p>Arlene\'s passion for mental health was ignited early on in her nursing career, and since then, being an advocate for those suffering from mental health conditions has been at the forefront. With well over a decade of experience in the healthcare field, ranging from treating acute to chronic conditions, Arlene believes in a comprehensive approach integrating both her Psychiatric and Medical background grounded in evidence-based practice to provide the highest quality of care. With her patient-centered care tailored to meet the needs of each individual patient, she not only fosters a caring therapeutic environment, but she also empowers her patients to become the best version of themselves.<br \\/><br \\/>Her years of extensive healthcare experience and unparalleled insight has helped individuals cultivate a path towards a balanced and fulfilling life of mental wellness!<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"6e0e683\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5133, 444, '_elementor_page_settings', 'a:0:{}'),
(5134, 445, '_wp_page_template', 'elementor_header_footer'),
(5136, 445, '_elementor_global_class_usage_indexed', '1'),
(5137, 445, '_elementor_edit_mode', 'builder'),
(5138, 445, '_elementor_template_type', 'wp-page'),
(5139, 445, '_elementor_version', '4.1.3'),
(5140, 445, '_elementor_pro_version', '4.1.1'),
(5141, 445, '_elementor_global_class_usage_indexed_preview', '1'),
(5142, 445, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5143, 445, '_elementor_data', '[{\"id\":\"ac1e13a\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f591f8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"567cfdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a7a518c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b98719c\"}]},\"elements\":[{\"id\":\"f627272\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5563ffc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"05b7cf4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"122bdd4\"}],\"pp_display_conditions\":[{\"_id\":\"f889efe\"}]},\"elements\":[{\"id\":\"26b48d2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9d9933e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"402ab08\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69abc97\"}],\"pp_display_conditions\":[{\"_id\":\"dc50305\"}]},\"elements\":[{\"id\":\"d6c45ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/IMG_9815.jpg\",\"id\":440,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"838e566\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a90d849\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9d9933e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"402ab08\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69abc97\"}],\"pp_display_conditions\":[{\"_id\":\"dc50305\"}]},\"elements\":[{\"id\":\"224a3be\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Provider\",\"pp_display_conditions\":[{\"_id\":\"8723de8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515aee8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arlene Johnson\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"8723de8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae218c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Arlene Johnson is a distinguished board -certified Nurse Practitioner holding a Masters Degree in Nursing Practice. Arlene is licensed in the state of Florida,Washington,Arizona,and Colorado as a Psychiatric Mental Health Nurse Practitioner . She obtained her Bachelor\\u2019s degree and Master\\u2019s degree from Walden University.<\\/p><p>Arlene\'s passion for mental health was ignited early on in her nursing career, and since then, being an advocate for those suffering from mental health conditions has been at the forefront. With well over a decade of experience in the healthcare field, ranging from treating acute to chronic conditions, Arlene believes in a comprehensive approach integrating both her Psychiatric and Medical background grounded in evidence-based practice to provide the highest quality of care. With her patient-centered care tailored to meet the needs of each individual patient, she not only fosters a caring therapeutic environment, but she also empowers her patients to become the best version of themselves.<br \\/><br \\/>Her years of extensive healthcare experience and unparalleled insight has helped individuals cultivate a path towards a balanced and fulfilling life of mental wellness!<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"6e0e683\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5144, 445, '_elementor_page_settings', 'a:0:{}'),
(5145, 446, '_wp_page_template', 'elementor_header_footer'),
(5147, 446, '_elementor_global_class_usage_indexed', '1'),
(5148, 446, '_elementor_edit_mode', 'builder'),
(5149, 446, '_elementor_template_type', 'wp-page'),
(5150, 446, '_elementor_version', '4.1.3'),
(5151, 446, '_elementor_pro_version', '4.1.1'),
(5152, 446, '_elementor_global_class_usage_indexed_preview', '1'),
(5153, 446, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5154, 446, '_elementor_data', '[{\"id\":\"ac1e13a\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f591f8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"567cfdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a7a518c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b98719c\"}]},\"elements\":[{\"id\":\"f627272\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5563ffc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"05b7cf4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"122bdd4\"}],\"pp_display_conditions\":[{\"_id\":\"f889efe\"}]},\"elements\":[{\"id\":\"26b48d2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9d9933e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"402ab08\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69abc97\"}],\"pp_display_conditions\":[{\"_id\":\"dc50305\"}]},\"elements\":[{\"id\":\"d6c45ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/IMG_9815.jpg\",\"id\":440,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"838e566\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a90d849\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9d9933e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"402ab08\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69abc97\"}],\"pp_display_conditions\":[{\"_id\":\"dc50305\"}]},\"elements\":[{\"id\":\"224a3be\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Provider\",\"pp_display_conditions\":[{\"_id\":\"8723de8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515aee8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arlene Johnson\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"8723de8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae218c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Arlene Johnson is a distinguished board -certified Nurse Practitioner holding a Masters Degree in Nursing Practice. Arlene is licensed in the state of Florida,Washington,Arizona,and Colorado as a Psychiatric Mental Health Nurse Practitioner . She obtained her Bachelor\\u2019s degree and Master\\u2019s degree from Walden University.<\\/p><p>Arlene\'s passion for mental health was ignited early on in her nursing career, and since then, being an advocate for those suffering from mental health conditions has been at the forefront. With well over a decade of experience in the healthcare field, ranging from treating acute to chronic conditions, Arlene believes in a comprehensive approach integrating both her Psychiatric and Medical background grounded in evidence-based practice to provide the highest quality of care. With her patient-centered care tailored to meet the needs of each individual patient, she not only fosters a caring therapeutic environment, but she also empowers her patients to become the best version of themselves.<br \\/><br \\/>Her years of extensive healthcare experience and unparalleled insight has helped individuals cultivate a path towards a balanced and fulfilling life of mental wellness!<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"6e0e683\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5159, 447, '_wp_page_template', 'elementor_header_footer'),
(5161, 447, '_elementor_global_class_usage_indexed', '1'),
(5162, 447, '_elementor_edit_mode', 'builder'),
(5163, 447, '_elementor_template_type', 'wp-page'),
(5164, 447, '_elementor_version', '4.1.3'),
(5165, 447, '_elementor_pro_version', '4.1.1'),
(5166, 447, '_elementor_global_class_usage_indexed_preview', '1'),
(5167, 447, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5168, 447, '_elementor_data', '[{\"id\":\"ac1e13a\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f591f8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"567cfdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a7a518c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b98719c\"}]},\"elements\":[{\"id\":\"f627272\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5563ffc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"05b7cf4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"122bdd4\"}],\"pp_display_conditions\":[{\"_id\":\"f889efe\"}]},\"elements\":[{\"id\":\"26b48d2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9d9933e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"402ab08\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69abc97\"}],\"pp_display_conditions\":[{\"_id\":\"dc50305\"}]},\"elements\":[{\"id\":\"d6c45ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/IMG_9815.jpg\",\"id\":440,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"838e566\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a90d849\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9d9933e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"402ab08\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69abc97\"}],\"pp_display_conditions\":[{\"_id\":\"dc50305\"}]},\"elements\":[{\"id\":\"224a3be\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Provider\",\"pp_display_conditions\":[{\"_id\":\"8723de8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515aee8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arlene Johnson\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"8723de8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae218c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Arlene Johnson is a distinguished board -certified Nurse Practitioner holding a Masters Degree in Nursing Practice. Arlene is licensed in the state of Florida,Washington,Arizona,and Colorado as a Psychiatric Mental Health Nurse Practitioner . She obtained her Bachelor\\u2019s degree and Master\\u2019s degree from Walden University.<\\/p><p>Arlene\'s passion for mental health was ignited early on in her nursing career, and since then, being an advocate for those suffering from mental health conditions has been at the forefront. With well over a decade of experience in the healthcare field, ranging from treating acute to chronic conditions, Arlene believes in a comprehensive approach integrating both her Psychiatric and Medical background grounded in evidence-based practice to provide the highest quality of care. With her patient-centered care tailored to meet the needs of each individual patient, she not only fosters a caring therapeutic environment, but she also empowers her patients to become the best version of themselves.<br \\/><br \\/>Her years of extensive healthcare experience and unparalleled insight has helped individuals cultivate a path towards a balanced and fulfilling life of mental wellness!<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"6e0e683\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5199, 450, '_wp_page_template', 'elementor_header_footer'),
(5201, 450, '_elementor_global_class_usage_indexed', '1'),
(5202, 450, '_elementor_edit_mode', 'builder'),
(5203, 450, '_elementor_template_type', 'wp-page'),
(5204, 450, '_elementor_version', '4.1.3'),
(5205, 450, '_elementor_pro_version', '4.1.1'),
(5206, 450, '_elementor_global_class_usage_indexed_preview', '1'),
(5207, 450, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5208, 450, '_elementor_data', '[{\"id\":\"ac1e13a\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f591f8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"567cfdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a7a518c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b98719c\"}]},\"elements\":[{\"id\":\"f627272\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5563ffc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"05b7cf4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"122bdd4\"}],\"pp_display_conditions\":[{\"_id\":\"f889efe\"}]},\"elements\":[{\"id\":\"26b48d2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9d9933e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"402ab08\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69abc97\"}],\"pp_display_conditions\":[{\"_id\":\"dc50305\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"d6c45ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/IMG_9815.jpg\",\"id\":440,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"838e566\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a90d849\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9d9933e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"402ab08\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69abc97\"}],\"pp_display_conditions\":[{\"_id\":\"dc50305\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"224a3be\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Provider\",\"pp_display_conditions\":[{\"_id\":\"8723de8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515aee8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arlene Johnson\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"8723de8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae218c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Arlene Johnson is a distinguished board -certified Nurse Practitioner holding a Masters Degree in Nursing Practice. Arlene is licensed in the state of Florida,Washington,Arizona,and Colorado as a Psychiatric Mental Health Nurse Practitioner . She obtained her Bachelor\\u2019s degree and Master\\u2019s degree from Walden University.<\\/p><p>Arlene\'s passion for mental health was ignited early on in her nursing career, and since then, being an advocate for those suffering from mental health conditions has been at the forefront. With well over a decade of experience in the healthcare field, ranging from treating acute to chronic conditions, Arlene believes in a comprehensive approach integrating both her Psychiatric and Medical background grounded in evidence-based practice to provide the highest quality of care. With her patient-centered care tailored to meet the needs of each individual patient, she not only fosters a caring therapeutic environment, but she also empowers her patients to become the best version of themselves.<br \\/><br \\/>Her years of extensive healthcare experience and unparalleled insight has helped individuals cultivate a path towards a balanced and fulfilling life of mental wellness!<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"6e0e683\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5169, 447, '_elementor_page_settings', 'a:0:{}'),
(5172, 448, '_wp_page_template', 'elementor_header_footer'),
(5174, 448, '_elementor_global_class_usage_indexed', '1'),
(5175, 448, '_elementor_edit_mode', 'builder'),
(5176, 448, '_elementor_template_type', 'wp-page'),
(5177, 448, '_elementor_version', '4.1.3'),
(5178, 448, '_elementor_pro_version', '4.1.1'),
(5179, 448, '_elementor_global_class_usage_indexed_preview', '1'),
(5180, 448, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5181, 448, '_elementor_data', '[{\"id\":\"ac1e13a\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f591f8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"567cfdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a7a518c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b98719c\"}]},\"elements\":[{\"id\":\"f627272\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5563ffc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"05b7cf4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"122bdd4\"}],\"pp_display_conditions\":[{\"_id\":\"f889efe\"}]},\"elements\":[{\"id\":\"26b48d2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9d9933e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"402ab08\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69abc97\"}],\"pp_display_conditions\":[{\"_id\":\"dc50305\"}]},\"elements\":[{\"id\":\"d6c45ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/IMG_9815.jpg\",\"id\":440,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"838e566\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a90d849\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9d9933e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"402ab08\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69abc97\"}],\"pp_display_conditions\":[{\"_id\":\"dc50305\"}]},\"elements\":[{\"id\":\"224a3be\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Provider\",\"pp_display_conditions\":[{\"_id\":\"8723de8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515aee8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arlene Johnson\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"8723de8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae218c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Arlene Johnson is a distinguished board -certified Nurse Practitioner holding a Masters Degree in Nursing Practice. Arlene is licensed in the state of Florida,Washington,Arizona,and Colorado as a Psychiatric Mental Health Nurse Practitioner . She obtained her Bachelor\\u2019s degree and Master\\u2019s degree from Walden University.<\\/p><p>Arlene\'s passion for mental health was ignited early on in her nursing career, and since then, being an advocate for those suffering from mental health conditions has been at the forefront. With well over a decade of experience in the healthcare field, ranging from treating acute to chronic conditions, Arlene believes in a comprehensive approach integrating both her Psychiatric and Medical background grounded in evidence-based practice to provide the highest quality of care. With her patient-centered care tailored to meet the needs of each individual patient, she not only fosters a caring therapeutic environment, but she also empowers her patients to become the best version of themselves.<br \\/><br \\/>Her years of extensive healthcare experience and unparalleled insight has helped individuals cultivate a path towards a balanced and fulfilling life of mental wellness!<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"6e0e683\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5182, 448, '_elementor_page_settings', 'a:0:{}'),
(5185, 449, '_wp_page_template', 'elementor_header_footer'),
(5187, 449, '_elementor_global_class_usage_indexed', '1'),
(5188, 449, '_elementor_edit_mode', 'builder'),
(5189, 449, '_elementor_template_type', 'wp-page'),
(5190, 449, '_elementor_version', '4.1.3'),
(5191, 449, '_elementor_pro_version', '4.1.1'),
(5192, 449, '_elementor_global_class_usage_indexed_preview', '1'),
(5193, 449, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5194, 449, '_elementor_data', '[{\"id\":\"ac1e13a\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f591f8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"567cfdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a7a518c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b98719c\"}]},\"elements\":[{\"id\":\"f627272\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5563ffc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"05b7cf4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"122bdd4\"}],\"pp_display_conditions\":[{\"_id\":\"f889efe\"}]},\"elements\":[{\"id\":\"26b48d2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9d9933e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"402ab08\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69abc97\"}],\"pp_display_conditions\":[{\"_id\":\"dc50305\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"d6c45ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/IMG_9815.jpg\",\"id\":440,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"838e566\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a90d849\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9d9933e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"402ab08\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69abc97\"}],\"pp_display_conditions\":[{\"_id\":\"dc50305\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"224a3be\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Provider\",\"pp_display_conditions\":[{\"_id\":\"8723de8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515aee8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arlene Johnson\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"8723de8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae218c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Arlene Johnson is a distinguished board -certified Nurse Practitioner holding a Masters Degree in Nursing Practice. Arlene is licensed in the state of Florida,Washington,Arizona,and Colorado as a Psychiatric Mental Health Nurse Practitioner . She obtained her Bachelor\\u2019s degree and Master\\u2019s degree from Walden University.<\\/p><p>Arlene\'s passion for mental health was ignited early on in her nursing career, and since then, being an advocate for those suffering from mental health conditions has been at the forefront. With well over a decade of experience in the healthcare field, ranging from treating acute to chronic conditions, Arlene believes in a comprehensive approach integrating both her Psychiatric and Medical background grounded in evidence-based practice to provide the highest quality of care. With her patient-centered care tailored to meet the needs of each individual patient, she not only fosters a caring therapeutic environment, but she also empowers her patients to become the best version of themselves.<br \\/><br \\/>Her years of extensive healthcare experience and unparalleled insight has helped individuals cultivate a path towards a balanced and fulfilling life of mental wellness!<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"6e0e683\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7001, 605, '_elementor_page_settings', 'a:0:{}'),
(7110, 615, '_wp_page_template', 'elementor_header_footer'),
(7002, 606, '_wp_page_template', 'elementor_header_footer'),
(7003, 606, '_elementor_global_class_usage_indexed', '1'),
(7005, 606, '_elementor_edit_mode', 'builder'),
(7006, 606, '_elementor_template_type', 'wp-page'),
(7007, 606, '_elementor_version', '4.1.3'),
(7008, 606, '_elementor_pro_version', '4.1.1'),
(7009, 606, '_elementor_global_class_usage_indexed_preview', '1'),
(7010, 606, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7011, 606, '_elementor_data', '[{\"id\":\"930c0f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e9b1af4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"88a3c22\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":600,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/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\":\"f3587d7\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9d88ee6\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d778882\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f882cf8\",\"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\":\"05:30 AM - 08:30 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\":\"08:00 AM - 01:00 PM\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"327b8dd\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"745f907\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"cafb309\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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=astglobalcolor6\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"636d4e2\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d38a337\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_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\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"admin@serenesoundwellness.com\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3d9e9f9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de25814\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"4f3d199\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":\"600\",\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/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\":\"5f949be\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4a3e248\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"681d7ef\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b6dc872\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"58b2e9d\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc600c8\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"42aae38\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4778a74\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a544aab\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_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\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"admin@serenesoundwellness.com\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5209, 450, '_elementor_page_settings', 'a:0:{}'),
(5210, 451, '_wp_page_template', 'elementor_header_footer'),
(5212, 451, '_elementor_global_class_usage_indexed', '1'),
(5213, 451, '_elementor_edit_mode', 'builder'),
(5214, 451, '_elementor_template_type', 'wp-page'),
(5215, 451, '_elementor_version', '4.1.3'),
(5216, 451, '_elementor_pro_version', '4.1.1'),
(5217, 451, '_elementor_global_class_usage_indexed_preview', '1'),
(5218, 451, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5219, 451, '_elementor_data', '[{\"id\":\"ac1e13a\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f591f8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"567cfdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a7a518c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b98719c\"}]},\"elements\":[{\"id\":\"f627272\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5563ffc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"05b7cf4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"122bdd4\"}],\"pp_display_conditions\":[{\"_id\":\"f889efe\"}]},\"elements\":[{\"id\":\"26b48d2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9d9933e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"402ab08\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69abc97\"}],\"pp_display_conditions\":[{\"_id\":\"dc50305\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"d6c45ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/IMG_9815.jpg\",\"id\":440,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"838e566\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a90d849\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9d9933e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"402ab08\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69abc97\"}],\"pp_display_conditions\":[{\"_id\":\"dc50305\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"224a3be\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Provider\",\"pp_display_conditions\":[{\"_id\":\"8723de8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515aee8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arlene Johnson\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"8723de8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae218c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Arlene Johnson is a distinguished board -certified Nurse Practitioner holding a Masters Degree in Nursing Practice. Arlene is licensed in the state of Florida,Washington,Arizona,and Colorado as a Psychiatric Mental Health Nurse Practitioner . She obtained her Bachelor\\u2019s degree and Master\\u2019s degree from Walden University.<\\/p><p>Arlene\'s passion for mental health was ignited early on in her nursing career, and since then, being an advocate for those suffering from mental health conditions has been at the forefront. With well over a decade of experience in the healthcare field, ranging from treating acute to chronic conditions, Arlene believes in a comprehensive approach integrating both her Psychiatric and Medical background grounded in evidence-based practice to provide the highest quality of care. With her patient-centered care tailored to meet the needs of each individual patient, she not only fosters a caring therapeutic environment, but she also empowers her patients to become the best version of themselves.<br \\/><br \\/>Her years of extensive healthcare experience and unparalleled insight has helped individuals cultivate a path towards a balanced and fulfilling life of mental wellness!<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"6e0e683\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5220, 451, '_elementor_page_settings', 'a:0:{}'),
(5221, 452, '_wp_page_template', 'elementor_header_footer'),
(5223, 452, '_elementor_global_class_usage_indexed', '1'),
(5224, 452, '_elementor_edit_mode', 'builder'),
(5225, 452, '_elementor_template_type', 'wp-page'),
(5226, 452, '_elementor_version', '4.1.3'),
(5227, 452, '_elementor_pro_version', '4.1.1'),
(5228, 452, '_elementor_global_class_usage_indexed_preview', '1'),
(5229, 452, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5230, 452, '_elementor_data', '[{\"id\":\"ac1e13a\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f591f8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"567cfdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a7a518c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b98719c\"}]},\"elements\":[{\"id\":\"f627272\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5563ffc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"05b7cf4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"122bdd4\"}],\"pp_display_conditions\":[{\"_id\":\"f889efe\"}]},\"elements\":[{\"id\":\"26b48d2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9d9933e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"402ab08\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69abc97\"}],\"pp_display_conditions\":[{\"_id\":\"dc50305\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"d6c45ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/IMG_9815.jpg\",\"id\":440,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"838e566\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a90d849\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9d9933e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"402ab08\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69abc97\"}],\"pp_display_conditions\":[{\"_id\":\"dc50305\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"224a3be\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Provider\",\"pp_display_conditions\":[{\"_id\":\"8723de8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515aee8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arlene Johnson\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"8723de8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae218c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Arlene Johnson is a distinguished board -certified Nurse Practitioner holding a Masters Degree in Nursing Practice. Arlene is licensed in the state of Florida,Washington,Arizona,and Colorado as a Psychiatric Mental Health Nurse Practitioner . She obtained her Bachelor\\u2019s degree and Master\\u2019s degree from Walden University.<\\/p><p>Arlene\'s passion for mental health was ignited early on in her nursing career, and since then, being an advocate for those suffering from mental health conditions has been at the forefront. With well over a decade of experience in the healthcare field, ranging from treating acute to chronic conditions, Arlene believes in a comprehensive approach integrating both her Psychiatric and Medical background grounded in evidence-based practice to provide the highest quality of care. With her patient-centered care tailored to meet the needs of each individual patient, she not only fosters a caring therapeutic environment, but she also empowers her patients to become the best version of themselves.<br \\/><br \\/>Her years of extensive healthcare experience and unparalleled insight has helped individuals cultivate a path towards a balanced and fulfilling life of mental wellness!<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"6e0e683\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8373, 707, '_wp_page_template', 'elementor_header_footer'),
(8374, 707, '_elementor_global_class_usage_indexed', '1'),
(8375, 707, '_elementor_edit_mode', 'builder'),
(8376, 707, '_elementor_template_type', 'wp-page'),
(8377, 707, '_elementor_version', '4.1.3'),
(8378, 707, '_elementor_pro_version', '4.1.1'),
(8379, 707, '_elementor_global_class_usage_indexed_preview', '1'),
(8380, 707, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8381, 707, '_elementor_data', '[{\"id\":\"ac1e13a\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f591f8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"567cfdd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a7a518c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b98719c\"}]},\"elements\":[{\"id\":\"f627272\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5563ffc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"05b7cf4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"122bdd4\"}],\"pp_display_conditions\":[{\"_id\":\"f889efe\"}]},\"elements\":[{\"id\":\"26b48d2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9d9933e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"402ab08\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69abc97\"}],\"pp_display_conditions\":[{\"_id\":\"dc50305\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"d6c45ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/IMG_9815.jpg\",\"id\":440,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"838e566\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a90d849\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9d9933e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"402ab08\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69abc97\"}],\"pp_display_conditions\":[{\"_id\":\"dc50305\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"224a3be\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Provider\",\"pp_display_conditions\":[{\"_id\":\"8723de8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"515aee8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arlene Johnson\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"8723de8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae218c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Arlene Johnson is a distinguished board -certified Nurse Practitioner holding a Masters Degree in Nursing Practice. Arlene is licensed in the state of Florida,Washington,Arizona,and Colorado as a Psychiatric Mental Health Nurse Practitioner . She obtained her Bachelor\\u2019s degree and Master\\u2019s degree from Walden University.<\\/p><p>Arlene\'s passion for mental health was ignited early on in her nursing career, and since then, being an advocate for those suffering from mental health conditions has been at the forefront. With well over a decade of experience in the healthcare field, ranging from treating acute to chronic conditions, Arlene believes in a comprehensive approach integrating both her Psychiatric and Medical background grounded in evidence-based practice to provide the highest quality of care. With her patient-centered care tailored to meet the needs of each individual patient, she not only fosters a caring therapeutic environment, but she also empowers her patients to become the best version of themselves.<br \\/><br \\/>Her years of extensive healthcare experience and unparalleled insight has helped individuals cultivate a path towards a balanced and fulfilling life of mental wellness!<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"6e0e683\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5233, 14, '_elementor_edit_mode', 'builder'),
(5234, 14, '_astra_content_layout_flag', 'disabled'),
(5236, 14, 'ast-title-bar-display', 'disabled'),
(5237, 14, 'ast-featured-img', 'disabled'),
(5238, 14, '_elementor_template_type', 'wp-page'),
(5239, 14, '_elementor_version', '4.1.3'),
(5240, 14, '_elementor_pro_version', '4.1.1'),
(5264, 14, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\",\"css_classes\":\"common_image_animation\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\",\"css_classes\":\"common_image_animation\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc1421c\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"fbe05c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"11c59e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\",\"css_classes\":\"common_image_animation\"},\"elements\":[{\"id\":\"df4e00a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7673fe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"806e853\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychotherapy\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b609356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Individual therapy<\\/li>\\n \\t<li>Couples\\/marriage therapy<\\/li>\\n \\t<li>Family therapy<\\/li>\\n \\t<li>Child\\/teen therapy<\\/li>\\n \\t<li>Online therapy<\\/li>\\n \\t<li>COMMON SPECIALTIES &amp; approaches<\\/li>\\n \\t<li>Anxiety therapy<\\/li>\\n \\t<li>Cognitive behavioral therapy (CBT)<\\/li>\\n \\t<li>Depression counseling<\\/li>\\n \\t<li>Dialectical behavior therapy (DBT)<\\/li>\\n \\t<li>Grief &amp; loss counseling<\\/li>\\n \\t<li>Relational therapy<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15c408\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7b01183\",\"elType\":\"widget\",\"settings\":{\"title\":\"Therapy can be highly beneficial for mental health for several reasons:\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3d35599\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"09c417e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"d99ddf0\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Safe Space\",\"_id\":\"776845c\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/dimension_9728408.svg\",\"id\":504},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Emotional Support\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/friendship_4760671.svg\",\"id\":509},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ca6452d\"},{\"title\":\"Self-Exploration\",\"subtitle\":\"\",\"description\":\"<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/medical_12751971.svg\",\"id\":513},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"81a0197\"},{\"title\":\"Coping Strategies\",\"subtitle\":\"\",\"description\":\"<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/advisory-services_12963796.svg\",\"id\":517},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5a9c4f4\"},{\"title\":\"Goal Setting\",\"subtitle\":\"\",\"description\":\"<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/setup_917115.svg\",\"id\":521},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0381d8b\"},{\"title\":\"Relationship Improvement\",\"subtitle\":\"\",\"description\":\"<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/employee-benefit_9888459.svg\",\"id\":525},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5d28a9d\"},{\"title\":\"Skill Development\",\"subtitle\":\"\",\"description\":\"<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mindful_18810720.svg\",\"id\":529},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ee22b3d\"},{\"title\":\"Tailored Approaches\",\"subtitle\":\"\",\"description\":\"<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/structure_7287549.svg\",\"id\":533},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"9d17efb\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"870829e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"8f5a2f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"01c35ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5242, 14, '_elementor_global_class_usage_indexed_preview', '1'),
(5243, 14, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5244, 453, '_wp_page_template', 'elementor_header_footer'),
(5246, 453, '_elementor_global_class_usage_indexed', '1'),
(5247, 453, '_elementor_edit_mode', 'builder'),
(5248, 453, '_elementor_template_type', 'wp-page'),
(5249, 453, '_elementor_version', '4.1.3'),
(5250, 453, '_elementor_pro_version', '4.1.1'),
(5251, 453, '_elementor_page_settings', 'a:0:{}'),
(5252, 453, '_elementor_global_class_usage_indexed_preview', '1'),
(5253, 453, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5254, 454, '_wp_page_template', 'elementor_header_footer'),
(5256, 454, '_elementor_global_class_usage_indexed', '1'),
(5257, 454, '_elementor_edit_mode', 'builder'),
(5258, 454, '_elementor_template_type', 'wp-page'),
(5259, 454, '_elementor_version', '4.1.3'),
(5260, 454, '_elementor_pro_version', '4.1.1'),
(5261, 454, '_elementor_page_settings', 'a:0:{}'),
(5262, 454, '_elementor_global_class_usage_indexed_preview', '1'),
(5263, 454, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5265, 455, '_wp_page_template', 'elementor_header_footer'),
(5267, 455, '_elementor_global_class_usage_indexed', '1'),
(5268, 455, '_elementor_edit_mode', 'builder'),
(5269, 455, '_elementor_template_type', 'wp-page'),
(5270, 455, '_elementor_version', '4.1.3'),
(5271, 455, '_elementor_pro_version', '4.1.1'),
(5272, 455, '_elementor_global_class_usage_indexed_preview', '1'),
(5273, 455, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5274, 455, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}]},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}]},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5277, 456, '_wp_page_template', 'elementor_header_footer'),
(5279, 456, '_elementor_global_class_usage_indexed', '1'),
(5280, 456, '_elementor_edit_mode', 'builder'),
(5281, 456, '_elementor_template_type', 'wp-page'),
(5282, 456, '_elementor_version', '4.1.3'),
(5283, 456, '_elementor_pro_version', '4.1.1'),
(5284, 456, '_elementor_global_class_usage_indexed_preview', '1'),
(5285, 456, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5286, 456, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}]},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}]},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5287, 456, '_elementor_page_settings', 'a:0:{}'),
(5288, 457, '_wp_page_template', 'elementor_header_footer'),
(5290, 457, '_elementor_global_class_usage_indexed', '1'),
(5291, 457, '_elementor_edit_mode', 'builder'),
(5292, 457, '_elementor_template_type', 'wp-page'),
(5293, 457, '_elementor_version', '4.1.3'),
(5294, 457, '_elementor_pro_version', '4.1.1'),
(5295, 457, '_elementor_global_class_usage_indexed_preview', '1'),
(5296, 457, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5297, 457, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}]},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}]},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5298, 457, '_elementor_page_settings', 'a:0:{}'),
(5299, 458, '_wp_page_template', 'elementor_header_footer'),
(5301, 458, '_elementor_global_class_usage_indexed', '1'),
(5302, 458, '_elementor_edit_mode', 'builder'),
(5303, 458, '_elementor_template_type', 'wp-page'),
(5304, 458, '_elementor_version', '4.1.3'),
(5305, 458, '_elementor_pro_version', '4.1.1'),
(5306, 458, '_elementor_global_class_usage_indexed_preview', '1'),
(5307, 458, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5308, 458, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5311, 459, '_wp_page_template', 'elementor_header_footer'),
(5313, 459, '_elementor_global_class_usage_indexed', '1'),
(5314, 459, '_elementor_edit_mode', 'builder'),
(5315, 459, '_elementor_template_type', 'wp-page'),
(5316, 459, '_elementor_version', '4.1.3'),
(5317, 459, '_elementor_pro_version', '4.1.1'),
(5318, 459, '_elementor_global_class_usage_indexed_preview', '1'),
(5319, 459, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5320, 459, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5321, 459, '_elementor_page_settings', 'a:0:{}'),
(5322, 460, '_wp_page_template', 'elementor_header_footer'),
(5324, 460, '_elementor_global_class_usage_indexed', '1'),
(5325, 460, '_elementor_edit_mode', 'builder'),
(5326, 460, '_elementor_template_type', 'wp-page'),
(5327, 460, '_elementor_version', '4.1.3'),
(5328, 460, '_elementor_pro_version', '4.1.1'),
(5329, 460, '_elementor_global_class_usage_indexed_preview', '1'),
(5330, 460, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5331, 460, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5332, 460, '_elementor_page_settings', 'a:0:{}'),
(5333, 461, '_wp_page_template', 'elementor_header_footer'),
(5335, 461, '_elementor_global_class_usage_indexed', '1'),
(5336, 461, '_elementor_edit_mode', 'builder'),
(5337, 461, '_elementor_template_type', 'wp-page'),
(5338, 461, '_elementor_version', '4.1.3'),
(5339, 461, '_elementor_pro_version', '4.1.1'),
(5340, 461, '_elementor_global_class_usage_indexed_preview', '1'),
(5341, 461, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5342, 461, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5345, 462, '_wp_page_template', 'elementor_header_footer'),
(5347, 462, '_elementor_global_class_usage_indexed', '1'),
(5348, 462, '_elementor_edit_mode', 'builder'),
(5349, 462, '_elementor_template_type', 'wp-page'),
(5350, 462, '_elementor_version', '4.1.3'),
(5351, 462, '_elementor_pro_version', '4.1.1'),
(5352, 462, '_elementor_global_class_usage_indexed_preview', '1'),
(5353, 462, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5354, 462, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5355, 462, '_elementor_page_settings', 'a:0:{}'),
(5356, 463, '_wp_page_template', 'elementor_header_footer'),
(5358, 463, '_elementor_global_class_usage_indexed', '1'),
(5359, 463, '_elementor_edit_mode', 'builder'),
(5360, 463, '_elementor_template_type', 'wp-page'),
(5361, 463, '_elementor_version', '4.1.3'),
(5362, 463, '_elementor_pro_version', '4.1.1'),
(5363, 463, '_elementor_global_class_usage_indexed_preview', '1'),
(5364, 463, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5365, 463, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5366, 463, '_elementor_page_settings', 'a:0:{}'),
(5367, 464, '_wp_page_template', 'elementor_header_footer'),
(5369, 464, '_elementor_global_class_usage_indexed', '1'),
(5370, 464, '_elementor_edit_mode', 'builder'),
(5371, 464, '_elementor_template_type', 'wp-page'),
(5372, 464, '_elementor_version', '4.1.3'),
(5373, 464, '_elementor_pro_version', '4.1.1'),
(5374, 464, '_elementor_global_class_usage_indexed_preview', '1'),
(5375, 464, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5376, 464, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"29e9493\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5383, 466, '_wp_page_template', 'elementor_header_footer'),
(5385, 466, '_elementor_global_class_usage_indexed', '1'),
(5386, 466, '_elementor_edit_mode', 'builder'),
(5387, 466, '_elementor_template_type', 'wp-page'),
(5388, 466, '_elementor_version', '4.1.3'),
(5389, 466, '_elementor_pro_version', '4.1.1'),
(5390, 466, '_elementor_global_class_usage_indexed_preview', '1'),
(5391, 466, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5392, 466, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"29e9493\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5423, 469, '_wp_page_template', 'elementor_header_footer'),
(5425, 469, '_elementor_global_class_usage_indexed', '1'),
(5426, 469, '_elementor_edit_mode', 'builder'),
(5427, 469, '_elementor_template_type', 'wp-page'),
(5428, 469, '_elementor_version', '4.1.3'),
(5429, 469, '_elementor_pro_version', '4.1.1'),
(5430, 469, '_elementor_global_class_usage_indexed_preview', '1'),
(5431, 469, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5432, 469, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"29e9493\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5393, 466, '_elementor_page_settings', 'a:0:{}'),
(5396, 467, '_wp_page_template', 'elementor_header_footer'),
(5398, 467, '_elementor_global_class_usage_indexed', '1'),
(5399, 467, '_elementor_edit_mode', 'builder'),
(5400, 467, '_elementor_template_type', 'wp-page'),
(5401, 467, '_elementor_version', '4.1.3'),
(5402, 467, '_elementor_pro_version', '4.1.1'),
(5403, 467, '_elementor_global_class_usage_indexed_preview', '1'),
(5404, 467, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5405, 467, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"29e9493\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5406, 467, '_elementor_page_settings', 'a:0:{}'),
(5409, 468, '_wp_page_template', 'elementor_header_footer'),
(5411, 468, '_elementor_global_class_usage_indexed', '1'),
(5412, 468, '_elementor_edit_mode', 'builder'),
(5413, 468, '_elementor_template_type', 'wp-page'),
(5414, 468, '_elementor_version', '4.1.3'),
(5415, 468, '_elementor_pro_version', '4.1.1'),
(5416, 468, '_elementor_global_class_usage_indexed_preview', '1'),
(5417, 468, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5418, 468, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"29e9493\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5433, 469, '_elementor_page_settings', 'a:0:{}'),
(5434, 470, '_wp_page_template', 'elementor_header_footer'),
(5436, 470, '_elementor_global_class_usage_indexed', '1'),
(5437, 470, '_elementor_edit_mode', 'builder'),
(5438, 470, '_elementor_template_type', 'wp-page'),
(5439, 470, '_elementor_version', '4.1.3'),
(5440, 470, '_elementor_pro_version', '4.1.1'),
(5441, 470, '_elementor_global_class_usage_indexed_preview', '1'),
(5442, 470, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5443, 470, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"29e9493\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5444, 470, '_elementor_page_settings', 'a:0:{}'),
(5445, 471, '_wp_page_template', 'elementor_header_footer'),
(5447, 471, '_elementor_global_class_usage_indexed', '1'),
(5448, 471, '_elementor_edit_mode', 'builder'),
(5449, 471, '_elementor_template_type', 'wp-page'),
(5450, 471, '_elementor_version', '4.1.3'),
(5451, 471, '_elementor_pro_version', '4.1.1'),
(5452, 471, '_elementor_global_class_usage_indexed_preview', '1'),
(5453, 471, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5454, 471, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5479, 474, '_wp_page_template', 'elementor_header_footer'),
(5457, 472, '_wp_page_template', 'elementor_header_footer'),
(5459, 472, '_elementor_global_class_usage_indexed', '1'),
(5460, 472, '_elementor_edit_mode', 'builder'),
(5461, 472, '_elementor_template_type', 'wp-page'),
(5462, 472, '_elementor_version', '4.1.3'),
(5463, 472, '_elementor_pro_version', '4.1.1'),
(5464, 472, '_elementor_global_class_usage_indexed_preview', '1'),
(5465, 472, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5466, 472, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5467, 472, '_elementor_page_settings', 'a:0:{}'),
(5468, 473, '_wp_page_template', 'elementor_header_footer'),
(5470, 473, '_elementor_global_class_usage_indexed', '1'),
(5471, 473, '_elementor_edit_mode', 'builder'),
(5472, 473, '_elementor_template_type', 'wp-page'),
(5473, 473, '_elementor_version', '4.1.3'),
(5474, 473, '_elementor_pro_version', '4.1.1'),
(5475, 473, '_elementor_global_class_usage_indexed_preview', '1'),
(5476, 473, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5477, 473, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5478, 473, '_elementor_page_settings', 'a:0:{}'),
(5481, 474, '_elementor_global_class_usage_indexed', '1'),
(5482, 474, '_elementor_edit_mode', 'builder'),
(5483, 474, '_elementor_template_type', 'wp-page'),
(5484, 474, '_elementor_version', '4.1.3'),
(5485, 474, '_elementor_pro_version', '4.1.1'),
(5486, 474, '_elementor_global_class_usage_indexed_preview', '1'),
(5487, 474, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5488, 474, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5513, 477, '_wp_page_template', 'elementor_header_footer'),
(5491, 475, '_wp_page_template', 'elementor_header_footer'),
(5493, 475, '_elementor_global_class_usage_indexed', '1'),
(5494, 475, '_elementor_edit_mode', 'builder'),
(5495, 475, '_elementor_template_type', 'wp-page'),
(5496, 475, '_elementor_version', '4.1.3'),
(5497, 475, '_elementor_pro_version', '4.1.1'),
(5498, 475, '_elementor_global_class_usage_indexed_preview', '1'),
(5499, 475, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5500, 475, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5501, 475, '_elementor_page_settings', 'a:0:{}'),
(5502, 476, '_wp_page_template', 'elementor_header_footer'),
(5504, 476, '_elementor_global_class_usage_indexed', '1'),
(5505, 476, '_elementor_edit_mode', 'builder'),
(5506, 476, '_elementor_template_type', 'wp-page'),
(5507, 476, '_elementor_version', '4.1.3'),
(5508, 476, '_elementor_pro_version', '4.1.1'),
(5509, 476, '_elementor_global_class_usage_indexed_preview', '1'),
(5510, 476, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5511, 476, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5512, 476, '_elementor_page_settings', 'a:0:{}'),
(5515, 477, '_elementor_global_class_usage_indexed', '1'),
(5516, 477, '_elementor_edit_mode', 'builder'),
(5517, 477, '_elementor_template_type', 'wp-page'),
(5518, 477, '_elementor_version', '4.1.3'),
(5519, 477, '_elementor_pro_version', '4.1.1'),
(5520, 477, '_elementor_global_class_usage_indexed_preview', '1'),
(5521, 477, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5522, 477, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5525, 478, '_wp_page_template', 'elementor_header_footer'),
(5527, 478, '_elementor_global_class_usage_indexed', '1'),
(5528, 478, '_elementor_edit_mode', 'builder'),
(5529, 478, '_elementor_template_type', 'wp-page'),
(5530, 478, '_elementor_version', '4.1.3'),
(5531, 478, '_elementor_pro_version', '4.1.1'),
(5532, 478, '_elementor_global_class_usage_indexed_preview', '1'),
(5533, 478, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5534, 478, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5535, 478, '_elementor_page_settings', 'a:0:{}'),
(5536, 479, '_wp_page_template', 'elementor_header_footer'),
(5538, 479, '_elementor_global_class_usage_indexed', '1'),
(5539, 479, '_elementor_edit_mode', 'builder'),
(5540, 479, '_elementor_template_type', 'wp-page'),
(5541, 479, '_elementor_version', '4.1.3'),
(5542, 479, '_elementor_pro_version', '4.1.1'),
(5543, 479, '_elementor_global_class_usage_indexed_preview', '1'),
(5544, 479, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5545, 479, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5546, 479, '_elementor_page_settings', 'a:0:{}'),
(5547, 480, '_wp_page_template', 'elementor_header_footer'),
(5549, 480, '_elementor_global_class_usage_indexed', '1'),
(5550, 480, '_elementor_edit_mode', 'builder'),
(5551, 480, '_elementor_template_type', 'wp-page'),
(5552, 480, '_elementor_version', '4.1.3'),
(5553, 480, '_elementor_pro_version', '4.1.1'),
(5554, 480, '_elementor_global_class_usage_indexed_preview', '1'),
(5555, 480, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5556, 480, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"pp_display_conditions\":[{\"_id\":\"598296d\"}]},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul>\\n \\t<li>Enhance the effectiveness of medications through optimal nutrition.<\\/li>\\n \\t<li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li>\\n \\t<li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5559, 481, '_wp_page_template', 'elementor_header_footer'),
(5561, 481, '_elementor_global_class_usage_indexed', '1'),
(5562, 481, '_elementor_edit_mode', 'builder'),
(5563, 481, '_elementor_template_type', 'wp-page'),
(5564, 481, '_elementor_version', '4.1.3'),
(5565, 481, '_elementor_pro_version', '4.1.1'),
(5566, 481, '_elementor_global_class_usage_indexed_preview', '1'),
(5567, 481, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5568, 481, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"pp_display_conditions\":[{\"_id\":\"598296d\"}]},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul>\\n \\t<li>Enhance the effectiveness of medications through optimal nutrition.<\\/li>\\n \\t<li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li>\\n \\t<li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5569, 481, '_elementor_page_settings', 'a:0:{}'),
(5570, 482, '_wp_page_template', 'elementor_header_footer'),
(5572, 482, '_elementor_global_class_usage_indexed', '1'),
(5573, 482, '_elementor_edit_mode', 'builder'),
(5574, 482, '_elementor_template_type', 'wp-page'),
(5575, 482, '_elementor_version', '4.1.3'),
(5576, 482, '_elementor_pro_version', '4.1.1'),
(5577, 482, '_elementor_global_class_usage_indexed_preview', '1'),
(5578, 482, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5579, 482, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"pp_display_conditions\":[{\"_id\":\"598296d\"}]},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul>\\n \\t<li>Enhance the effectiveness of medications through optimal nutrition.<\\/li>\\n \\t<li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li>\\n \\t<li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5580, 482, '_elementor_page_settings', 'a:0:{}'),
(5581, 483, '_wp_page_template', 'elementor_header_footer'),
(5583, 483, '_elementor_global_class_usage_indexed', '1'),
(5584, 483, '_elementor_edit_mode', 'builder'),
(5585, 483, '_elementor_template_type', 'wp-page'),
(5586, 483, '_elementor_version', '4.1.3'),
(5587, 483, '_elementor_pro_version', '4.1.1'),
(5588, 483, '_elementor_global_class_usage_indexed_preview', '1'),
(5589, 483, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5590, 483, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"pp_display_conditions\":[{\"_id\":\"598296d\"}]},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5593, 484, '_wp_page_template', 'elementor_header_footer'),
(5595, 484, '_elementor_global_class_usage_indexed', '1'),
(5596, 484, '_elementor_edit_mode', 'builder'),
(5597, 484, '_elementor_template_type', 'wp-page'),
(5598, 484, '_elementor_version', '4.1.3'),
(5599, 484, '_elementor_pro_version', '4.1.1'),
(5600, 484, '_elementor_global_class_usage_indexed_preview', '1'),
(5601, 484, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5602, 484, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"pp_display_conditions\":[{\"_id\":\"598296d\"}]},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5603, 484, '_elementor_page_settings', 'a:0:{}'),
(5604, 485, '_wp_page_template', 'elementor_header_footer'),
(5606, 485, '_elementor_global_class_usage_indexed', '1'),
(5607, 485, '_elementor_edit_mode', 'builder'),
(5608, 485, '_elementor_template_type', 'wp-page'),
(5609, 485, '_elementor_version', '4.1.3'),
(5610, 485, '_elementor_pro_version', '4.1.1'),
(5611, 485, '_elementor_global_class_usage_indexed_preview', '1'),
(5612, 485, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5613, 485, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"pp_display_conditions\":[{\"_id\":\"598296d\"}]},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5614, 485, '_elementor_page_settings', 'a:0:{}'),
(5615, 486, '_wp_page_template', 'elementor_header_footer'),
(5617, 486, '_elementor_global_class_usage_indexed', '1'),
(5618, 486, '_elementor_edit_mode', 'builder'),
(5619, 486, '_elementor_template_type', 'wp-page'),
(5620, 486, '_elementor_version', '4.1.3'),
(5621, 486, '_elementor_pro_version', '4.1.1'),
(5622, 486, '_elementor_global_class_usage_indexed_preview', '1'),
(5623, 486, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5624, 486, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}]},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5627, 487, '_wp_page_template', 'elementor_header_footer'),
(5629, 487, '_elementor_global_class_usage_indexed', '1'),
(5630, 487, '_elementor_edit_mode', 'builder'),
(5631, 487, '_elementor_template_type', 'wp-page'),
(5632, 487, '_elementor_version', '4.1.3'),
(5633, 487, '_elementor_pro_version', '4.1.1'),
(5634, 487, '_elementor_global_class_usage_indexed_preview', '1'),
(5635, 487, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5636, 487, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}]},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5637, 487, '_elementor_page_settings', 'a:0:{}'),
(5638, 488, '_wp_page_template', 'elementor_header_footer'),
(5640, 488, '_elementor_global_class_usage_indexed', '1'),
(5641, 488, '_elementor_edit_mode', 'builder'),
(5642, 488, '_elementor_template_type', 'wp-page'),
(5643, 488, '_elementor_version', '4.1.3'),
(5644, 488, '_elementor_pro_version', '4.1.1'),
(5645, 488, '_elementor_global_class_usage_indexed_preview', '1'),
(5646, 488, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5647, 488, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}]},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5648, 488, '_elementor_page_settings', 'a:0:{}'),
(5649, 489, '_wp_page_template', 'elementor_header_footer'),
(5651, 489, '_elementor_global_class_usage_indexed', '1'),
(5652, 489, '_elementor_edit_mode', 'builder'),
(5653, 489, '_elementor_template_type', 'wp-page'),
(5654, 489, '_elementor_version', '4.1.3'),
(5655, 489, '_elementor_pro_version', '4.1.1'),
(5656, 489, '_elementor_global_class_usage_indexed_preview', '1'),
(5657, 489, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5658, 489, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5673, 491, '_wp_page_template', 'elementor_header_footer'),
(5675, 491, '_elementor_global_class_usage_indexed', '1'),
(5676, 491, '_elementor_edit_mode', 'builder'),
(5677, 491, '_elementor_template_type', 'wp-page'),
(5678, 491, '_elementor_version', '4.1.3'),
(5679, 491, '_elementor_pro_version', '4.1.1');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5680, 491, '_elementor_global_class_usage_indexed_preview', '1'),
(5681, 491, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5682, 491, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5695, 493, '_wp_page_template', 'elementor_header_footer'),
(5697, 493, '_elementor_global_class_usage_indexed', '1'),
(5698, 493, '_elementor_edit_mode', 'builder'),
(5699, 493, '_elementor_template_type', 'wp-page'),
(5700, 493, '_elementor_version', '4.1.3'),
(5701, 493, '_elementor_pro_version', '4.1.1'),
(5702, 493, '_elementor_global_class_usage_indexed_preview', '1'),
(5703, 493, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5704, 493, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc1421c\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"fbe05c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"11c59e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"df4e00a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7673fe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"806e853\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b609356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Individual therapy<\\/li>\\n \\t<li>Couples\\/marriage therapy<\\/li>\\n \\t<li>Family therapy<\\/li>\\n \\t<li>Child\\/teen therapy<\\/li>\\n \\t<li>Online therapy<\\/li>\\n \\t<li>COMMON SPECIALTIES &amp; approaches<\\/li>\\n \\t<li>Anxiety therapy<\\/li>\\n \\t<li>Cognitive behavioral therapy (CBT)<\\/li>\\n \\t<li>Depression counseling<\\/li>\\n \\t<li>Dialectical behavior therapy (DBT)<\\/li>\\n \\t<li>Grief &amp; loss counseling<\\/li>\\n \\t<li>Relational therapy<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15c408\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"54f544f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Enhance the effectiveness of medications through optimal nutrition.<\\/li>\\n \\t<li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li>\\n \\t<li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"843e5db\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5683, 491, '_elementor_page_settings', 'a:0:{}'),
(5684, 492, '_wp_page_template', 'elementor_header_footer'),
(5686, 492, '_elementor_global_class_usage_indexed', '1'),
(5687, 492, '_elementor_edit_mode', 'builder'),
(5688, 492, '_elementor_template_type', 'wp-page'),
(5689, 492, '_elementor_version', '4.1.3'),
(5690, 492, '_elementor_pro_version', '4.1.1'),
(5691, 492, '_elementor_global_class_usage_indexed_preview', '1'),
(5692, 492, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5693, 492, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5694, 492, '_elementor_page_settings', 'a:0:{}'),
(5707, 494, '_wp_page_template', 'elementor_header_footer'),
(5709, 494, '_elementor_global_class_usage_indexed', '1'),
(5710, 494, '_elementor_edit_mode', 'builder'),
(5711, 494, '_elementor_template_type', 'wp-page'),
(5712, 494, '_elementor_version', '4.1.3'),
(5713, 494, '_elementor_pro_version', '4.1.1'),
(5714, 494, '_elementor_global_class_usage_indexed_preview', '1'),
(5715, 494, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5716, 494, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc1421c\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"fbe05c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"11c59e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"df4e00a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7673fe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"806e853\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b609356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Individual therapy<\\/li>\\n \\t<li>Couples\\/marriage therapy<\\/li>\\n \\t<li>Family therapy<\\/li>\\n \\t<li>Child\\/teen therapy<\\/li>\\n \\t<li>Online therapy<\\/li>\\n \\t<li>COMMON SPECIALTIES &amp; approaches<\\/li>\\n \\t<li>Anxiety therapy<\\/li>\\n \\t<li>Cognitive behavioral therapy (CBT)<\\/li>\\n \\t<li>Depression counseling<\\/li>\\n \\t<li>Dialectical behavior therapy (DBT)<\\/li>\\n \\t<li>Grief &amp; loss counseling<\\/li>\\n \\t<li>Relational therapy<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15c408\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"54f544f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Enhance the effectiveness of medications through optimal nutrition.<\\/li>\\n \\t<li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li>\\n \\t<li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"843e5db\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5717, 494, '_elementor_page_settings', 'a:0:{}'),
(5718, 495, '_wp_page_template', 'elementor_header_footer'),
(5720, 495, '_elementor_global_class_usage_indexed', '1'),
(5721, 495, '_elementor_edit_mode', 'builder'),
(5722, 495, '_elementor_template_type', 'wp-page'),
(5723, 495, '_elementor_version', '4.1.3'),
(5724, 495, '_elementor_pro_version', '4.1.1'),
(5725, 495, '_elementor_global_class_usage_indexed_preview', '1'),
(5726, 495, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5727, 495, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc1421c\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"fbe05c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"11c59e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"df4e00a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7673fe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"806e853\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b609356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Individual therapy<\\/li>\\n \\t<li>Couples\\/marriage therapy<\\/li>\\n \\t<li>Family therapy<\\/li>\\n \\t<li>Child\\/teen therapy<\\/li>\\n \\t<li>Online therapy<\\/li>\\n \\t<li>COMMON SPECIALTIES &amp; approaches<\\/li>\\n \\t<li>Anxiety therapy<\\/li>\\n \\t<li>Cognitive behavioral therapy (CBT)<\\/li>\\n \\t<li>Depression counseling<\\/li>\\n \\t<li>Dialectical behavior therapy (DBT)<\\/li>\\n \\t<li>Grief &amp; loss counseling<\\/li>\\n \\t<li>Relational therapy<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15c408\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"54f544f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Enhance the effectiveness of medications through optimal nutrition.<\\/li>\\n \\t<li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li>\\n \\t<li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"843e5db\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5728, 495, '_elementor_page_settings', 'a:0:{}'),
(5729, 496, '_wp_page_template', 'elementor_header_footer'),
(5731, 496, '_elementor_global_class_usage_indexed', '1'),
(5732, 496, '_elementor_edit_mode', 'builder'),
(5733, 496, '_elementor_template_type', 'wp-page'),
(5734, 496, '_elementor_version', '4.1.3'),
(5735, 496, '_elementor_pro_version', '4.1.1'),
(5736, 496, '_elementor_global_class_usage_indexed_preview', '1'),
(5737, 496, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5738, 496, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc1421c\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"fbe05c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"11c59e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"df4e00a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7673fe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"806e853\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b609356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Individual therapy<\\/li>\\n \\t<li>Couples\\/marriage therapy<\\/li>\\n \\t<li>Family therapy<\\/li>\\n \\t<li>Child\\/teen therapy<\\/li>\\n \\t<li>Online therapy<\\/li>\\n \\t<li>COMMON SPECIALTIES &amp; approaches<\\/li>\\n \\t<li>Anxiety therapy<\\/li>\\n \\t<li>Cognitive behavioral therapy (CBT)<\\/li>\\n \\t<li>Depression counseling<\\/li>\\n \\t<li>Dialectical behavior therapy (DBT)<\\/li>\\n \\t<li>Grief &amp; loss counseling<\\/li>\\n \\t<li>Relational therapy<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15c408\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7b01183\",\"elType\":\"widget\",\"settings\":{\"title\":\"Therapy can be highly beneficial for mental health for several reasons:\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3d35599\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"09c417e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"d99ddf0\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Safe Space\",\"_id\":\"776845c\",\"subtitle\":\"\",\"description\":\"Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Emotional Support\",\"subtitle\":\"\",\"description\":\"Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ca6452d\"},{\"title\":\"Self-Exploration\",\"subtitle\":\"\",\"description\":\"Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"81a0197\"},{\"title\":\"Coping Strategies\",\"subtitle\":\"\",\"description\":\"Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5a9c4f4\"},{\"title\":\"Goal Setting\",\"subtitle\":\"\",\"description\":\"Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0381d8b\"},{\"title\":\"Relationship Improvement\",\"subtitle\":\"\",\"description\":\"Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.\\n\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5d28a9d\"},{\"title\":\"Skill Development\",\"subtitle\":\"\",\"description\":\"Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ee22b3d\"},{\"title\":\"Tailored Approaches\",\"subtitle\":\"\",\"description\":\"Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"9d17efb\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"870829e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(5769, 499, '_wp_page_template', 'elementor_header_footer'),
(5743, 497, '_wp_page_template', 'elementor_header_footer'),
(5745, 497, '_elementor_global_class_usage_indexed', '1'),
(5746, 497, '_elementor_edit_mode', 'builder'),
(5747, 497, '_elementor_template_type', 'wp-page'),
(5748, 497, '_elementor_version', '4.1.3'),
(5749, 497, '_elementor_pro_version', '4.1.1'),
(5750, 497, '_elementor_global_class_usage_indexed_preview', '1'),
(5751, 497, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5752, 497, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc1421c\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"fbe05c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"11c59e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"df4e00a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7673fe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"806e853\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b609356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Individual therapy<\\/li>\\n \\t<li>Couples\\/marriage therapy<\\/li>\\n \\t<li>Family therapy<\\/li>\\n \\t<li>Child\\/teen therapy<\\/li>\\n \\t<li>Online therapy<\\/li>\\n \\t<li>COMMON SPECIALTIES &amp; approaches<\\/li>\\n \\t<li>Anxiety therapy<\\/li>\\n \\t<li>Cognitive behavioral therapy (CBT)<\\/li>\\n \\t<li>Depression counseling<\\/li>\\n \\t<li>Dialectical behavior therapy (DBT)<\\/li>\\n \\t<li>Grief &amp; loss counseling<\\/li>\\n \\t<li>Relational therapy<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15c408\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7b01183\",\"elType\":\"widget\",\"settings\":{\"title\":\"Therapy can be highly beneficial for mental health for several reasons:\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3d35599\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"09c417e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"d99ddf0\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Safe Space\",\"_id\":\"776845c\",\"subtitle\":\"\",\"description\":\"Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Emotional Support\",\"subtitle\":\"\",\"description\":\"Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ca6452d\"},{\"title\":\"Self-Exploration\",\"subtitle\":\"\",\"description\":\"Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"81a0197\"},{\"title\":\"Coping Strategies\",\"subtitle\":\"\",\"description\":\"Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5a9c4f4\"},{\"title\":\"Goal Setting\",\"subtitle\":\"\",\"description\":\"Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0381d8b\"},{\"title\":\"Relationship Improvement\",\"subtitle\":\"\",\"description\":\"Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.\\n\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5d28a9d\"},{\"title\":\"Skill Development\",\"subtitle\":\"\",\"description\":\"Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ee22b3d\"},{\"title\":\"Tailored Approaches\",\"subtitle\":\"\",\"description\":\"Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"9d17efb\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"870829e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(5785, 500, '_wp_page_template', 'elementor_header_footer'),
(5787, 500, '_elementor_global_class_usage_indexed', '1');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5788, 500, '_elementor_edit_mode', 'builder'),
(5789, 500, '_elementor_template_type', 'wp-page'),
(5790, 500, '_elementor_version', '4.1.3'),
(5791, 500, '_elementor_pro_version', '4.1.1'),
(5792, 500, '_elementor_global_class_usage_indexed_preview', '1'),
(5793, 500, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5794, 500, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc1421c\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"fbe05c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"11c59e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"df4e00a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7673fe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"806e853\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychotherapy\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b609356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Individual therapy<\\/li>\\n \\t<li>Couples\\/marriage therapy<\\/li>\\n \\t<li>Family therapy<\\/li>\\n \\t<li>Child\\/teen therapy<\\/li>\\n \\t<li>Online therapy<\\/li>\\n \\t<li>COMMON SPECIALTIES &amp; approaches<\\/li>\\n \\t<li>Anxiety therapy<\\/li>\\n \\t<li>Cognitive behavioral therapy (CBT)<\\/li>\\n \\t<li>Depression counseling<\\/li>\\n \\t<li>Dialectical behavior therapy (DBT)<\\/li>\\n \\t<li>Grief &amp; loss counseling<\\/li>\\n \\t<li>Relational therapy<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15c408\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7b01183\",\"elType\":\"widget\",\"settings\":{\"title\":\"Therapy can be highly beneficial for mental health for several reasons:\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3d35599\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"09c417e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"d99ddf0\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Safe Space\",\"_id\":\"776845c\",\"subtitle\":\"\",\"description\":\"Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Emotional Support\",\"subtitle\":\"\",\"description\":\"Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ca6452d\"},{\"title\":\"Self-Exploration\",\"subtitle\":\"\",\"description\":\"Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"81a0197\"},{\"title\":\"Coping Strategies\",\"subtitle\":\"\",\"description\":\"Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5a9c4f4\"},{\"title\":\"Goal Setting\",\"subtitle\":\"\",\"description\":\"Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0381d8b\"},{\"title\":\"Relationship Improvement\",\"subtitle\":\"\",\"description\":\"Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.\\n\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5d28a9d\"},{\"title\":\"Skill Development\",\"subtitle\":\"\",\"description\":\"Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ee22b3d\"},{\"title\":\"Tailored Approaches\",\"subtitle\":\"\",\"description\":\"Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"9d17efb\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"870829e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(5884, 510, '_elementor_global_class_usage_indexed', '1'),
(5885, 510, '_elementor_edit_mode', 'builder'),
(5886, 510, '_elementor_template_type', 'wp-page'),
(5887, 510, '_elementor_version', '4.1.3'),
(5888, 510, '_elementor_pro_version', '4.1.1'),
(5889, 510, '_elementor_global_class_usage_indexed_preview', '1'),
(5890, 510, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5908, 512, '_wp_page_template', 'elementor_header_footer'),
(5891, 510, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc1421c\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"fbe05c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"11c59e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"df4e00a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7673fe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"806e853\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychotherapy\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b609356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Individual therapy<\\/li>\\n \\t<li>Couples\\/marriage therapy<\\/li>\\n \\t<li>Family therapy<\\/li>\\n \\t<li>Child\\/teen therapy<\\/li>\\n \\t<li>Online therapy<\\/li>\\n \\t<li>COMMON SPECIALTIES &amp; approaches<\\/li>\\n \\t<li>Anxiety therapy<\\/li>\\n \\t<li>Cognitive behavioral therapy (CBT)<\\/li>\\n \\t<li>Depression counseling<\\/li>\\n \\t<li>Dialectical behavior therapy (DBT)<\\/li>\\n \\t<li>Grief &amp; loss counseling<\\/li>\\n \\t<li>Relational therapy<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15c408\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7b01183\",\"elType\":\"widget\",\"settings\":{\"title\":\"Therapy can be highly beneficial for mental health for several reasons:\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3d35599\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"09c417e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"d99ddf0\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Safe Space\",\"_id\":\"776845c\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/dimension_9728408.svg\",\"id\":504},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Emotional Support\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ca6452d\"},{\"title\":\"Self-Exploration\",\"subtitle\":\"\",\"description\":\"<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"81a0197\"},{\"title\":\"Coping Strategies\",\"subtitle\":\"\",\"description\":\"<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5a9c4f4\"},{\"title\":\"Goal Setting\",\"subtitle\":\"\",\"description\":\"<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0381d8b\"},{\"title\":\"Relationship Improvement\",\"subtitle\":\"\",\"description\":\"<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5d28a9d\"},{\"title\":\"Skill Development\",\"subtitle\":\"\",\"description\":\"<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ee22b3d\"},{\"title\":\"Tailored Approaches\",\"subtitle\":\"\",\"description\":\"<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"9d17efb\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"870829e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"8f5a2f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"01c35ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5753, 497, '_elementor_page_settings', 'a:0:{}'),
(5756, 498, '_wp_page_template', 'elementor_header_footer'),
(5758, 498, '_elementor_global_class_usage_indexed', '1'),
(5759, 498, '_elementor_edit_mode', 'builder'),
(5760, 498, '_elementor_template_type', 'wp-page'),
(5761, 498, '_elementor_version', '4.1.3'),
(5762, 498, '_elementor_pro_version', '4.1.1'),
(5763, 498, '_elementor_global_class_usage_indexed_preview', '1'),
(5764, 498, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5765, 498, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc1421c\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"fbe05c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"11c59e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"df4e00a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7673fe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"806e853\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b609356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Individual therapy<\\/li>\\n \\t<li>Couples\\/marriage therapy<\\/li>\\n \\t<li>Family therapy<\\/li>\\n \\t<li>Child\\/teen therapy<\\/li>\\n \\t<li>Online therapy<\\/li>\\n \\t<li>COMMON SPECIALTIES &amp; approaches<\\/li>\\n \\t<li>Anxiety therapy<\\/li>\\n \\t<li>Cognitive behavioral therapy (CBT)<\\/li>\\n \\t<li>Depression counseling<\\/li>\\n \\t<li>Dialectical behavior therapy (DBT)<\\/li>\\n \\t<li>Grief &amp; loss counseling<\\/li>\\n \\t<li>Relational therapy<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15c408\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7b01183\",\"elType\":\"widget\",\"settings\":{\"title\":\"Therapy can be highly beneficial for mental health for several reasons:\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3d35599\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"09c417e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"d99ddf0\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Safe Space\",\"_id\":\"776845c\",\"subtitle\":\"\",\"description\":\"Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Emotional Support\",\"subtitle\":\"\",\"description\":\"Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ca6452d\"},{\"title\":\"Self-Exploration\",\"subtitle\":\"\",\"description\":\"Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"81a0197\"},{\"title\":\"Coping Strategies\",\"subtitle\":\"\",\"description\":\"Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5a9c4f4\"},{\"title\":\"Goal Setting\",\"subtitle\":\"\",\"description\":\"Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0381d8b\"},{\"title\":\"Relationship Improvement\",\"subtitle\":\"\",\"description\":\"Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.\\n\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5d28a9d\"},{\"title\":\"Skill Development\",\"subtitle\":\"\",\"description\":\"Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ee22b3d\"},{\"title\":\"Tailored Approaches\",\"subtitle\":\"\",\"description\":\"Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"9d17efb\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"870829e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(5766, 498, '_elementor_page_settings', 'a:0:{}'),
(6990, 604, '_elementor_page_settings', 'a:0:{}'),
(6991, 605, '_wp_page_template', 'elementor_header_footer'),
(6992, 605, '_elementor_global_class_usage_indexed', '1'),
(6994, 605, '_elementor_edit_mode', 'builder'),
(6995, 605, '_elementor_template_type', 'wp-page'),
(6996, 605, '_elementor_version', '4.1.3'),
(6997, 605, '_elementor_pro_version', '4.1.1'),
(6998, 605, '_elementor_global_class_usage_indexed_preview', '1'),
(6999, 605, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7000, 605, '_elementor_data', '[{\"id\":\"930c0f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e9b1af4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"88a3c22\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":600,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/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\":\"f3587d7\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9d88ee6\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d778882\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f882cf8\",\"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\":\"05:30 AM - 08:30 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\":\"08:00 AM - 01:00 PM\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"327b8dd\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"745f907\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"cafb309\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"636d4e2\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d38a337\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_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\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"admin@serenesoundwellness.com\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3d9e9f9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de25814\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"4f3d199\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":\"600\",\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/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\":\"5f949be\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4a3e248\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"681d7ef\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b6dc872\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"58b2e9d\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc600c8\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"42aae38\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4778a74\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a544aab\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_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\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"admin@serenesoundwellness.com\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5771, 499, '_elementor_global_class_usage_indexed', '1'),
(5772, 499, '_elementor_edit_mode', 'builder'),
(5773, 499, '_elementor_template_type', 'wp-page'),
(5774, 499, '_elementor_version', '4.1.3'),
(5775, 499, '_elementor_pro_version', '4.1.1'),
(5776, 499, '_elementor_global_class_usage_indexed_preview', '1'),
(5777, 499, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5778, 499, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc1421c\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"fbe05c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"11c59e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"df4e00a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7673fe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"806e853\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychotherapy\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b609356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Individual therapy<\\/li>\\n \\t<li>Couples\\/marriage therapy<\\/li>\\n \\t<li>Family therapy<\\/li>\\n \\t<li>Child\\/teen therapy<\\/li>\\n \\t<li>Online therapy<\\/li>\\n \\t<li>COMMON SPECIALTIES &amp; approaches<\\/li>\\n \\t<li>Anxiety therapy<\\/li>\\n \\t<li>Cognitive behavioral therapy (CBT)<\\/li>\\n \\t<li>Depression counseling<\\/li>\\n \\t<li>Dialectical behavior therapy (DBT)<\\/li>\\n \\t<li>Grief &amp; loss counseling<\\/li>\\n \\t<li>Relational therapy<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15c408\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7b01183\",\"elType\":\"widget\",\"settings\":{\"title\":\"Therapy can be highly beneficial for mental health for several reasons:\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3d35599\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"09c417e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"d99ddf0\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Safe Space\",\"_id\":\"776845c\",\"subtitle\":\"\",\"description\":\"Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Emotional Support\",\"subtitle\":\"\",\"description\":\"Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ca6452d\"},{\"title\":\"Self-Exploration\",\"subtitle\":\"\",\"description\":\"Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"81a0197\"},{\"title\":\"Coping Strategies\",\"subtitle\":\"\",\"description\":\"Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5a9c4f4\"},{\"title\":\"Goal Setting\",\"subtitle\":\"\",\"description\":\"Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0381d8b\"},{\"title\":\"Relationship Improvement\",\"subtitle\":\"\",\"description\":\"Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.\\n\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5d28a9d\"},{\"title\":\"Skill Development\",\"subtitle\":\"\",\"description\":\"Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ee22b3d\"},{\"title\":\"Tailored Approaches\",\"subtitle\":\"\",\"description\":\"Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"9d17efb\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"870829e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(7905, 674, '_elementor_source', 'post'),
(7906, 674, '_elementor_edit_mode', 'builder'),
(7907, 674, '_elementor_template_type', 'header'),
(7908, 674, '_elementor_version', '4.1.3'),
(7901, 673, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(7909, 674, '_elementor_pro_version', '4.1.1'),
(5840, 505, '_wp_page_template', 'elementor_header_footer'),
(5842, 505, '_elementor_global_class_usage_indexed', '1'),
(5843, 505, '_elementor_edit_mode', 'builder'),
(5844, 505, '_elementor_template_type', 'wp-page'),
(5845, 505, '_elementor_version', '4.1.3'),
(5846, 505, '_elementor_pro_version', '4.1.1'),
(5847, 505, '_elementor_global_class_usage_indexed_preview', '1'),
(5848, 505, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5849, 505, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc1421c\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"fbe05c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"11c59e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"df4e00a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7673fe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"806e853\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychotherapy\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b609356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Individual therapy<\\/li>\\n \\t<li>Couples\\/marriage therapy<\\/li>\\n \\t<li>Family therapy<\\/li>\\n \\t<li>Child\\/teen therapy<\\/li>\\n \\t<li>Online therapy<\\/li>\\n \\t<li>COMMON SPECIALTIES &amp; approaches<\\/li>\\n \\t<li>Anxiety therapy<\\/li>\\n \\t<li>Cognitive behavioral therapy (CBT)<\\/li>\\n \\t<li>Depression counseling<\\/li>\\n \\t<li>Dialectical behavior therapy (DBT)<\\/li>\\n \\t<li>Grief &amp; loss counseling<\\/li>\\n \\t<li>Relational therapy<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15c408\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7b01183\",\"elType\":\"widget\",\"settings\":{\"title\":\"Therapy can be highly beneficial for mental health for several reasons:\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3d35599\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"09c417e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"d99ddf0\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Safe Space\",\"_id\":\"776845c\",\"subtitle\":\"\",\"description\":\"Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Emotional Support\",\"subtitle\":\"\",\"description\":\"Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ca6452d\"},{\"title\":\"Self-Exploration\",\"subtitle\":\"\",\"description\":\"Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"81a0197\"},{\"title\":\"Coping Strategies\",\"subtitle\":\"\",\"description\":\"Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5a9c4f4\"},{\"title\":\"Goal Setting\",\"subtitle\":\"\",\"description\":\"Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0381d8b\"},{\"title\":\"Relationship Improvement\",\"subtitle\":\"\",\"description\":\"Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.\\n\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5d28a9d\"},{\"title\":\"Skill Development\",\"subtitle\":\"\",\"description\":\"Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ee22b3d\"},{\"title\":\"Tailored Approaches\",\"subtitle\":\"\",\"description\":\"Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"9d17efb\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"870829e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"8f5a2f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"01c35ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5795, 500, '_elementor_page_settings', 'a:0:{}'),
(7111, 615, '_elementor_global_class_usage_indexed', '1'),
(6980, 604, '_wp_page_template', 'elementor_header_footer'),
(6981, 604, '_elementor_global_class_usage_indexed', '1'),
(6983, 604, '_elementor_edit_mode', 'builder'),
(6984, 604, '_elementor_template_type', 'wp-page'),
(6985, 604, '_elementor_version', '4.1.3'),
(6986, 604, '_elementor_pro_version', '4.1.1'),
(6987, 604, '_elementor_global_class_usage_indexed_preview', '1'),
(6988, 604, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6989, 604, '_elementor_data', '[{\"id\":\"930c0f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e9b1af4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"88a3c22\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":600,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/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\":\"f3587d7\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9d88ee6\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d778882\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f882cf8\",\"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\":\"05:30 AM - 08:30 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\":\"08:00 AM - 01:00 PM\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"327b8dd\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"745f907\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"cafb309\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"636d4e2\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d38a337\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_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\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"admin@serenesoundwellness.com\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3d9e9f9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de25814\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"4f3d199\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":\"600\",\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/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\":\"5f949be\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4a3e248\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"681d7ef\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b6dc872\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"58b2e9d\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc600c8\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"42aae38\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4778a74\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a544aab\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_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\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"admin@serenesoundwellness.com\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5798, 501, '_wp_page_template', 'elementor_header_footer'),
(7960, 677, '_elementor_version', '4.1.3'),
(7961, 677, '_elementor_pro_version', '4.1.1'),
(7962, 677, '_elementor_global_class_usage_indexed', '1'),
(7963, 677, '_elementor_global_class_usage_indexed_preview', '1'),
(5800, 501, '_elementor_global_class_usage_indexed', '1'),
(5801, 501, '_elementor_edit_mode', 'builder'),
(5802, 501, '_elementor_template_type', 'wp-page'),
(5803, 501, '_elementor_version', '4.1.3'),
(5804, 501, '_elementor_pro_version', '4.1.1'),
(5805, 501, '_elementor_global_class_usage_indexed_preview', '1'),
(5806, 501, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5807, 501, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc1421c\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"fbe05c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"11c59e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"df4e00a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7673fe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"806e853\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychotherapy\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b609356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Individual therapy<\\/li>\\n \\t<li>Couples\\/marriage therapy<\\/li>\\n \\t<li>Family therapy<\\/li>\\n \\t<li>Child\\/teen therapy<\\/li>\\n \\t<li>Online therapy<\\/li>\\n \\t<li>COMMON SPECIALTIES &amp; approaches<\\/li>\\n \\t<li>Anxiety therapy<\\/li>\\n \\t<li>Cognitive behavioral therapy (CBT)<\\/li>\\n \\t<li>Depression counseling<\\/li>\\n \\t<li>Dialectical behavior therapy (DBT)<\\/li>\\n \\t<li>Grief &amp; loss counseling<\\/li>\\n \\t<li>Relational therapy<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15c408\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7b01183\",\"elType\":\"widget\",\"settings\":{\"title\":\"Therapy can be highly beneficial for mental health for several reasons:\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3d35599\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"09c417e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"d99ddf0\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Safe Space\",\"_id\":\"776845c\",\"subtitle\":\"\",\"description\":\"Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Emotional Support\",\"subtitle\":\"\",\"description\":\"Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ca6452d\"},{\"title\":\"Self-Exploration\",\"subtitle\":\"\",\"description\":\"Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"81a0197\"},{\"title\":\"Coping Strategies\",\"subtitle\":\"\",\"description\":\"Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5a9c4f4\"},{\"title\":\"Goal Setting\",\"subtitle\":\"\",\"description\":\"Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0381d8b\"},{\"title\":\"Relationship Improvement\",\"subtitle\":\"\",\"description\":\"Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.\\n\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5d28a9d\"},{\"title\":\"Skill Development\",\"subtitle\":\"\",\"description\":\"Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ee22b3d\"},{\"title\":\"Tailored Approaches\",\"subtitle\":\"\",\"description\":\"Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"9d17efb\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"870829e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(5808, 501, '_elementor_page_settings', 'a:0:{}'),
(5811, 502, '_wp_page_template', 'elementor_header_footer'),
(7964, 677, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(7965, 677, '_wp_page_template', 'default'),
(7966, 677, '_elementor_data', '[{\"id\":\"7cd2407b\",\"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},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4b376675\",\"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\":\"14e415c9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@optimalmentalwellness.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@optimalmentalwellness.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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5137f99d\",\"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\":\"416cdcb9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"904-901-7913\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:9049017913\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=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\":\"6090cb25\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"background_background\":\"classic\",\"z_index\":99,\"css_classes\":\"header_sections\",\"sticky\":\"top\",\"sticky_effects_offset\":50,\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"42e85872\",\"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\":\"5d51e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Optimal-Mental-Health-And-Wellness-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":300,\"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\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_position\":\"absolute\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"388619a3\",\"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\":\"2a70cfde\",\"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\":30,\"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\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"500\",\"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=astglobalcolor6\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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=astglobalcolor6\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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\":[]},\"_flex_order_tablet_extra\":\"end\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"ca7841b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"590be00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"454cd36b\",\"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\":432,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Mental-Health-And-Wellness-av.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"5aa4113e\",\"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}]'),
(5813, 502, '_elementor_global_class_usage_indexed', '1'),
(5814, 502, '_elementor_edit_mode', 'builder'),
(5815, 502, '_elementor_template_type', 'wp-page'),
(5816, 502, '_elementor_version', '4.1.3'),
(5817, 502, '_elementor_pro_version', '4.1.1'),
(5818, 502, '_elementor_global_class_usage_indexed_preview', '1'),
(5819, 502, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5820, 502, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc1421c\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"fbe05c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"11c59e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"df4e00a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7673fe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"806e853\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychotherapy\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b609356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Individual therapy<\\/li>\\n \\t<li>Couples\\/marriage therapy<\\/li>\\n \\t<li>Family therapy<\\/li>\\n \\t<li>Child\\/teen therapy<\\/li>\\n \\t<li>Online therapy<\\/li>\\n \\t<li>COMMON SPECIALTIES &amp; approaches<\\/li>\\n \\t<li>Anxiety therapy<\\/li>\\n \\t<li>Cognitive behavioral therapy (CBT)<\\/li>\\n \\t<li>Depression counseling<\\/li>\\n \\t<li>Dialectical behavior therapy (DBT)<\\/li>\\n \\t<li>Grief &amp; loss counseling<\\/li>\\n \\t<li>Relational therapy<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15c408\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7b01183\",\"elType\":\"widget\",\"settings\":{\"title\":\"Therapy can be highly beneficial for mental health for several reasons:\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3d35599\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"09c417e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"d99ddf0\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Safe Space\",\"_id\":\"776845c\",\"subtitle\":\"\",\"description\":\"Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Emotional Support\",\"subtitle\":\"\",\"description\":\"Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ca6452d\"},{\"title\":\"Self-Exploration\",\"subtitle\":\"\",\"description\":\"Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"81a0197\"},{\"title\":\"Coping Strategies\",\"subtitle\":\"\",\"description\":\"Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5a9c4f4\"},{\"title\":\"Goal Setting\",\"subtitle\":\"\",\"description\":\"Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0381d8b\"},{\"title\":\"Relationship Improvement\",\"subtitle\":\"\",\"description\":\"Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.\\n\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5d28a9d\"},{\"title\":\"Skill Development\",\"subtitle\":\"\",\"description\":\"Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ee22b3d\"},{\"title\":\"Tailored Approaches\",\"subtitle\":\"\",\"description\":\"Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"9d17efb\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"870829e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"8f5a2f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"01c35ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(7113, 615, '_elementor_edit_mode', 'builder'),
(7114, 615, '_elementor_template_type', 'wp-page'),
(7115, 615, '_elementor_version', '4.1.3'),
(7116, 615, '_elementor_pro_version', '4.1.1'),
(7117, 615, '_elementor_global_class_usage_indexed_preview', '1'),
(7118, 615, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(7119, 615, '_elementor_data', '[{\"id\":\"930c0f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e9b1af4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40}},\"elements\":[{\"id\":\"88a3c22\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":600,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/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\":\"f3587d7\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9d88ee6\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d778882\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f882cf8\",\"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\":\"05:30 AM - 08:30 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\":\"08:00 AM - 01:00 PM\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"327b8dd\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"745f907\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"cafb309\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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=astglobalcolor6\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"636d4e2\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d38a337\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_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\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"info@optimalmentalwellness.org\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6966, 603, '_wp_page_template', 'elementor_header_footer'),
(6967, 603, '_elementor_global_class_usage_indexed', '1'),
(6969, 603, '_elementor_edit_mode', 'builder'),
(6970, 603, '_elementor_template_type', 'wp-page'),
(6971, 603, '_elementor_version', '4.1.3'),
(6972, 603, '_elementor_pro_version', '4.1.1'),
(6973, 603, '_elementor_global_class_usage_indexed_preview', '1'),
(6974, 603, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6975, 603, '_elementor_data', '[{\"id\":\"930c0f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e9b1af4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"88a3c22\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":600,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/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\":\"f3587d7\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9d88ee6\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d778882\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f882cf8\",\"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\":\"05:30 AM - 08:30 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\":\"08:00 AM - 01:00 PM\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"327b8dd\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"745f907\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"cafb309\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"636d4e2\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d38a337\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_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\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"admin@serenesoundwellness.com\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3d9e9f9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de25814\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"4f3d199\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":\"600\",\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/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\":\"5f949be\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4a3e248\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"681d7ef\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b6dc872\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"58b2e9d\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc600c8\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"42aae38\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4778a74\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a544aab\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_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\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"admin@serenesoundwellness.com\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5862, 507, '_wp_page_template', 'elementor_header_footer'),
(5864, 507, '_elementor_global_class_usage_indexed', '1'),
(5865, 507, '_elementor_edit_mode', 'builder'),
(5866, 507, '_elementor_template_type', 'wp-page'),
(5867, 507, '_elementor_version', '4.1.3'),
(5868, 507, '_elementor_pro_version', '4.1.1'),
(5869, 507, '_elementor_global_class_usage_indexed_preview', '1'),
(5870, 507, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5871, 507, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc1421c\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"fbe05c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"11c59e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"df4e00a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7673fe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"806e853\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychotherapy\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b609356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Individual therapy<\\/li>\\n \\t<li>Couples\\/marriage therapy<\\/li>\\n \\t<li>Family therapy<\\/li>\\n \\t<li>Child\\/teen therapy<\\/li>\\n \\t<li>Online therapy<\\/li>\\n \\t<li>COMMON SPECIALTIES &amp; approaches<\\/li>\\n \\t<li>Anxiety therapy<\\/li>\\n \\t<li>Cognitive behavioral therapy (CBT)<\\/li>\\n \\t<li>Depression counseling<\\/li>\\n \\t<li>Dialectical behavior therapy (DBT)<\\/li>\\n \\t<li>Grief &amp; loss counseling<\\/li>\\n \\t<li>Relational therapy<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15c408\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7b01183\",\"elType\":\"widget\",\"settings\":{\"title\":\"Therapy can be highly beneficial for mental health for several reasons:\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3d35599\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"09c417e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"d99ddf0\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Safe Space\",\"_id\":\"776845c\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/dimension_9728408.svg\",\"id\":504},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Emotional Support\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ca6452d\"},{\"title\":\"Self-Exploration\",\"subtitle\":\"\",\"description\":\"<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"81a0197\"},{\"title\":\"Coping Strategies\",\"subtitle\":\"\",\"description\":\"<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5a9c4f4\"},{\"title\":\"Goal Setting\",\"subtitle\":\"\",\"description\":\"<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0381d8b\"},{\"title\":\"Relationship Improvement\",\"subtitle\":\"\",\"description\":\"<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5d28a9d\"},{\"title\":\"Skill Development\",\"subtitle\":\"\",\"description\":\"<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ee22b3d\"},{\"title\":\"Tailored Approaches\",\"subtitle\":\"\",\"description\":\"<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"9d17efb\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"870829e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"8f5a2f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"01c35ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5837, 504, '_wp_attached_file', '2026/06/dimension_9728408.svg'),
(5838, 504, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:3527;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(5850, 505, '_elementor_page_settings', 'a:0:{}'),
(5851, 506, '_wp_page_template', 'elementor_header_footer'),
(5853, 506, '_elementor_global_class_usage_indexed', '1'),
(5854, 506, '_elementor_edit_mode', 'builder'),
(5855, 506, '_elementor_template_type', 'wp-page'),
(5856, 506, '_elementor_version', '4.1.3'),
(5857, 506, '_elementor_pro_version', '4.1.1'),
(5858, 506, '_elementor_global_class_usage_indexed_preview', '1'),
(5859, 506, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5860, 506, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc1421c\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"fbe05c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"11c59e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"df4e00a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7673fe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"806e853\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychotherapy\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b609356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Individual therapy<\\/li>\\n \\t<li>Couples\\/marriage therapy<\\/li>\\n \\t<li>Family therapy<\\/li>\\n \\t<li>Child\\/teen therapy<\\/li>\\n \\t<li>Online therapy<\\/li>\\n \\t<li>COMMON SPECIALTIES &amp; approaches<\\/li>\\n \\t<li>Anxiety therapy<\\/li>\\n \\t<li>Cognitive behavioral therapy (CBT)<\\/li>\\n \\t<li>Depression counseling<\\/li>\\n \\t<li>Dialectical behavior therapy (DBT)<\\/li>\\n \\t<li>Grief &amp; loss counseling<\\/li>\\n \\t<li>Relational therapy<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15c408\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7b01183\",\"elType\":\"widget\",\"settings\":{\"title\":\"Therapy can be highly beneficial for mental health for several reasons:\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3d35599\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"09c417e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"d99ddf0\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Safe Space\",\"_id\":\"776845c\",\"subtitle\":\"\",\"description\":\"Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Emotional Support\",\"subtitle\":\"\",\"description\":\"Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ca6452d\"},{\"title\":\"Self-Exploration\",\"subtitle\":\"\",\"description\":\"Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"81a0197\"},{\"title\":\"Coping Strategies\",\"subtitle\":\"\",\"description\":\"Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5a9c4f4\"},{\"title\":\"Goal Setting\",\"subtitle\":\"\",\"description\":\"Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0381d8b\"},{\"title\":\"Relationship Improvement\",\"subtitle\":\"\",\"description\":\"Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.\\n\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5d28a9d\"},{\"title\":\"Skill Development\",\"subtitle\":\"\",\"description\":\"Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ee22b3d\"},{\"title\":\"Tailored Approaches\",\"subtitle\":\"\",\"description\":\"Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"9d17efb\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"870829e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"8f5a2f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"01c35ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5861, 506, '_elementor_page_settings', 'a:0:{}'),
(5882, 510, '_wp_page_template', 'elementor_header_footer'),
(5947, 516, '_wp_page_template', 'elementor_header_footer'),
(5925, 514, '_wp_page_template', 'elementor_header_footer'),
(5927, 514, '_elementor_global_class_usage_indexed', '1'),
(5928, 514, '_elementor_edit_mode', 'builder'),
(5929, 514, '_elementor_template_type', 'wp-page'),
(5930, 514, '_elementor_version', '4.1.3'),
(5931, 514, '_elementor_pro_version', '4.1.1'),
(5932, 514, '_elementor_global_class_usage_indexed_preview', '1'),
(5933, 514, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5934, 514, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc1421c\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"fbe05c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"11c59e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"df4e00a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7673fe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"806e853\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychotherapy\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b609356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Individual therapy<\\/li>\\n \\t<li>Couples\\/marriage therapy<\\/li>\\n \\t<li>Family therapy<\\/li>\\n \\t<li>Child\\/teen therapy<\\/li>\\n \\t<li>Online therapy<\\/li>\\n \\t<li>COMMON SPECIALTIES &amp; approaches<\\/li>\\n \\t<li>Anxiety therapy<\\/li>\\n \\t<li>Cognitive behavioral therapy (CBT)<\\/li>\\n \\t<li>Depression counseling<\\/li>\\n \\t<li>Dialectical behavior therapy (DBT)<\\/li>\\n \\t<li>Grief &amp; loss counseling<\\/li>\\n \\t<li>Relational therapy<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15c408\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7b01183\",\"elType\":\"widget\",\"settings\":{\"title\":\"Therapy can be highly beneficial for mental health for several reasons:\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3d35599\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"09c417e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"d99ddf0\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Safe Space\",\"_id\":\"776845c\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/dimension_9728408.svg\",\"id\":504},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Emotional Support\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/friendship_4760671.svg\",\"id\":509},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ca6452d\"},{\"title\":\"Self-Exploration\",\"subtitle\":\"\",\"description\":\"<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"81a0197\"},{\"title\":\"Coping Strategies\",\"subtitle\":\"\",\"description\":\"<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5a9c4f4\"},{\"title\":\"Goal Setting\",\"subtitle\":\"\",\"description\":\"<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0381d8b\"},{\"title\":\"Relationship Improvement\",\"subtitle\":\"\",\"description\":\"<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5d28a9d\"},{\"title\":\"Skill Development\",\"subtitle\":\"\",\"description\":\"<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ee22b3d\"},{\"title\":\"Tailored Approaches\",\"subtitle\":\"\",\"description\":\"<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"9d17efb\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"870829e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"8f5a2f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"01c35ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5922, 513, '_wp_attached_file', '2026/06/medical_12751971.svg'),
(5923, 513, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:4068;s:5:\"width\";i:500;s:6:\"height\";i:500;}'),
(5876, 508, '_wp_attached_file', '2026/06/compassion_7040984.svg'),
(5877, 508, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:6249;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(6354, 554, '_wp_page_template', 'elementor_header_footer'),
(6355, 554, '_elementor_global_class_usage_indexed', '1'),
(6356, 554, '_elementor_edit_mode', 'builder'),
(6357, 554, '_elementor_template_type', 'wp-page'),
(6358, 554, '_elementor_version', '4.1.3'),
(6359, 554, '_elementor_pro_version', '4.1.1'),
(6360, 554, '_elementor_global_class_usage_indexed_preview', '1'),
(6361, 554, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6362, 554, '_elementor_data', '[{\"id\":\"da73fa4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d02edf6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4e16dda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31fbd95\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fea417b\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]}},\"elements\":[{\"id\":\"4d9a2fd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d6765c8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bfc4e15\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b820045\"}],\"pp_display_conditions\":[{\"_id\":\"e129900\",\"pp_condition_device_type_value\":\"mobile\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fdb1f51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently Asked Questions \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5c91e8e\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d893c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please reach us at <a href=\\\"mailto:info@optimalmentalwellness.org\\\">info@optimalmentalwellness.org<\\/a> if you cannot find an answer to your question.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e110c47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"02985d8\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Do you accept insurance?\",\"_id\":\"235e06a\",\"faq_answer\":\"<p>Our office is currently in network with:<\\/p><ul><li>Aetna<\\/li><li>Cigna<\\/li><li>Oscar<\\/li><li>United Health Care<\\/li><\\/ul><p>** All appointments utilizing insurance, must have insurance submitted and verified two days prior to appointment date. There is no exception.**<\\/p>\"},{\"tab_title\":\"Do you provide self pay options?\",\"_id\":\"3543826\",\"faq_answer\":\"<p>No Insurance? No Problem.<\\/p><p>Cash Pay rates are as followed:<\\/p><ul><li>$200 Initial evaluation 60 minutes (Mandatory for all NEW patients)<\\/li><li>$125 Follow-up appt 30 minutes (medication adjustments\\/refills)<\\/li><li>$65 Psychotherapy add on to follow up 45 mins<\\/li><li>$45 Psychotherapy add on to follow up 30 mins<\\/li><li>$135 Psychotherapy 50 mins<\\/li><\\/ul>\"},{\"tab_title\":\"Do you prescribe controlled substances?\",\"faq_answer\":\"We do prescribe some controlled substances depending on your diagnosis.\",\"_id\":\"6f4f62a\"},{\"tab_title\":\"Do you accept students for clinical hours?\",\"faq_answer\":\"We do prescribe some controlled substances depending on your diagnosis.\",\"_id\":\"0758f4e\"}],\"faqs_items_bottom_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"faq_items_border_color\":\"#E3E9F0\",\"faq_items_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"question_bg_color\":\"#FFFFFF\",\"question_typography_typography\":\"custom\",\"question_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"question_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"answer_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"0541a67\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"question_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"faq_items_border_color\":\"\",\"question_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"question_bg_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"question_text_color_active\":\"globals\\/colors?id=astglobalcolor4\",\"question_bg_color_active\":\"globals\\/colors?id=astglobalcolor0\",\"answer_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-faq\"}],\"isInner\":true}],\"isInner\":true}]'),
(6363, 554, '_elementor_page_settings', 'a:0:{}'),
(5879, 509, '_wp_attached_file', '2026/06/friendship_4760671.svg'),
(5880, 509, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:4805;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(7975, 678, '_elementor_source', 'post'),
(7976, 678, '_elementor_edit_mode', 'builder'),
(7977, 678, '_elementor_template_type', 'header'),
(7978, 678, '_elementor_version', '4.1.3'),
(7979, 678, '_elementor_pro_version', '4.1.1'),
(7980, 678, '_elementor_global_class_usage_indexed', '1'),
(7981, 678, '_elementor_global_class_usage_indexed_preview', '1'),
(7982, 678, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(7983, 678, '_wp_page_template', 'default'),
(7984, 678, '_elementor_data', '[{\"id\":\"7cd2407b\",\"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},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4b376675\",\"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\":\"14e415c9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@optimalmentalwellness.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@optimalmentalwellness.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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5137f99d\",\"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\":\"416cdcb9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"904-901-7913\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:9049017913\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=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\":\"6090cb25\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"background_background\":\"classic\",\"z_index\":99,\"css_classes\":\"header_sections\",\"sticky\":\"top\",\"sticky_effects_offset\":50,\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"42e85872\",\"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\":\"5d51e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Optimal-Mental-Health-And-Wellness-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":300,\"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\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_position\":\"absolute\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_flex_align_self\":\"flex-start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_x_widescreen\":{\"size\":-1,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-1,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"388619a3\",\"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\":\"2a70cfde\",\"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\":30,\"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\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"500\",\"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=astglobalcolor6\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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=astglobalcolor6\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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\":[]},\"_flex_order_tablet_extra\":\"end\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"ca7841b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"590be00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"454cd36b\",\"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\":432,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Mental-Health-And-Wellness-av.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"5aa4113e\",\"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}]'),
(5892, 510, '_elementor_page_settings', 'a:0:{}'),
(5895, 511, '_wp_page_template', 'elementor_header_footer'),
(5897, 511, '_elementor_global_class_usage_indexed', '1'),
(5898, 511, '_elementor_edit_mode', 'builder'),
(5899, 511, '_elementor_template_type', 'wp-page'),
(5900, 511, '_elementor_version', '4.1.3'),
(5901, 511, '_elementor_pro_version', '4.1.1'),
(5902, 511, '_elementor_global_class_usage_indexed_preview', '1'),
(5903, 511, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5904, 511, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc1421c\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"fbe05c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"11c59e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"df4e00a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7673fe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"806e853\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychotherapy\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b609356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Individual therapy<\\/li>\\n \\t<li>Couples\\/marriage therapy<\\/li>\\n \\t<li>Family therapy<\\/li>\\n \\t<li>Child\\/teen therapy<\\/li>\\n \\t<li>Online therapy<\\/li>\\n \\t<li>COMMON SPECIALTIES &amp; approaches<\\/li>\\n \\t<li>Anxiety therapy<\\/li>\\n \\t<li>Cognitive behavioral therapy (CBT)<\\/li>\\n \\t<li>Depression counseling<\\/li>\\n \\t<li>Dialectical behavior therapy (DBT)<\\/li>\\n \\t<li>Grief &amp; loss counseling<\\/li>\\n \\t<li>Relational therapy<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15c408\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7b01183\",\"elType\":\"widget\",\"settings\":{\"title\":\"Therapy can be highly beneficial for mental health for several reasons:\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3d35599\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"09c417e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"d99ddf0\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Safe Space\",\"_id\":\"776845c\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/dimension_9728408.svg\",\"id\":504},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Emotional Support\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ca6452d\"},{\"title\":\"Self-Exploration\",\"subtitle\":\"\",\"description\":\"<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"81a0197\"},{\"title\":\"Coping Strategies\",\"subtitle\":\"\",\"description\":\"<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5a9c4f4\"},{\"title\":\"Goal Setting\",\"subtitle\":\"\",\"description\":\"<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0381d8b\"},{\"title\":\"Relationship Improvement\",\"subtitle\":\"\",\"description\":\"<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5d28a9d\"},{\"title\":\"Skill Development\",\"subtitle\":\"\",\"description\":\"<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ee22b3d\"},{\"title\":\"Tailored Approaches\",\"subtitle\":\"\",\"description\":\"<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"9d17efb\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"870829e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"8f5a2f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"01c35ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5905, 511, '_elementor_page_settings', 'a:0:{}'),
(6931, 20, '_elementor_edit_mode', 'builder'),
(6932, 20, '_astra_content_layout_flag', 'disabled'),
(6965, 20, '_elementor_data', '[{\"id\":\"930c0f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e9b1af4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40}},\"elements\":[{\"id\":\"88a3c22\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":616,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mental-contact-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"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\":\"f3587d7\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[{\"id\":\"9d88ee6\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d778882\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f882cf8\",\"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\":\"09:30 AM - 04:30 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sat - Sun\",\"highlight\":\"\",\"highlight_color\":\"#bc1705\",\"_id\":\"5b4030f\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\",\"closed\":\"\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"rows_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"5\",\"bottom\":\"8\",\"left\":\"5\",\"isLinked\":false},\"rows_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"hours_typography_typography\":\"custom\",\"hours_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"hours_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"327b8dd\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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:\\/\\/clinikehr.com\\/book\\/optimal-mental-health-and-wellness-group\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"745f907\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"cafb309\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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=astglobalcolor6\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"636d4e2\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d38a337\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"info@optimalmentalwellness.org\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6934, 20, 'ast-title-bar-display', 'disabled'),
(6935, 20, 'ast-featured-img', 'disabled'),
(6936, 20, '_elementor_template_type', 'wp-page'),
(6937, 20, '_elementor_version', '4.1.3'),
(6938, 20, '_elementor_pro_version', '4.1.1'),
(6940, 20, '_elementor_global_class_usage_indexed_preview', '1'),
(6941, 20, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6942, 600, '_wp_attached_file', '2026/06/Bipolar-Disorder-Management-av.jpg'),
(6943, 600, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:668;s:4:\"file\";s:42:\"2026/06/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:\"\";}}'),
(6944, 600, '_elementor_source_image_hash', '4c280ac83e6f5686d5a7dcc3df7d6951469d3568'),
(6945, 601, '_wp_page_template', 'elementor_header_footer'),
(6946, 601, '_elementor_global_class_usage_indexed', '1'),
(6948, 601, '_elementor_edit_mode', 'builder'),
(6949, 601, '_elementor_template_type', 'wp-page'),
(6950, 601, '_elementor_version', '4.1.3'),
(6951, 601, '_elementor_pro_version', '4.1.1'),
(6952, 601, '_elementor_page_settings', 'a:0:{}'),
(6953, 601, '_elementor_global_class_usage_indexed_preview', '1'),
(6954, 601, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6955, 602, '_wp_page_template', 'elementor_header_footer'),
(6956, 602, '_elementor_global_class_usage_indexed', '1'),
(6958, 602, '_elementor_edit_mode', 'builder'),
(6959, 602, '_elementor_template_type', 'wp-page'),
(6960, 602, '_elementor_version', '4.1.3'),
(6961, 602, '_elementor_pro_version', '4.1.1'),
(6962, 602, '_elementor_page_settings', 'a:0:{}'),
(6963, 602, '_elementor_global_class_usage_indexed_preview', '1'),
(6964, 602, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5910, 512, '_elementor_global_class_usage_indexed', '1'),
(5911, 512, '_elementor_edit_mode', 'builder'),
(5912, 512, '_elementor_template_type', 'wp-page'),
(5913, 512, '_elementor_version', '4.1.3'),
(5914, 512, '_elementor_pro_version', '4.1.1'),
(5915, 512, '_elementor_global_class_usage_indexed_preview', '1'),
(5916, 512, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5917, 512, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc1421c\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"fbe05c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"11c59e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"df4e00a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7673fe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"806e853\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychotherapy\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b609356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Individual therapy<\\/li>\\n \\t<li>Couples\\/marriage therapy<\\/li>\\n \\t<li>Family therapy<\\/li>\\n \\t<li>Child\\/teen therapy<\\/li>\\n \\t<li>Online therapy<\\/li>\\n \\t<li>COMMON SPECIALTIES &amp; approaches<\\/li>\\n \\t<li>Anxiety therapy<\\/li>\\n \\t<li>Cognitive behavioral therapy (CBT)<\\/li>\\n \\t<li>Depression counseling<\\/li>\\n \\t<li>Dialectical behavior therapy (DBT)<\\/li>\\n \\t<li>Grief &amp; loss counseling<\\/li>\\n \\t<li>Relational therapy<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15c408\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7b01183\",\"elType\":\"widget\",\"settings\":{\"title\":\"Therapy can be highly beneficial for mental health for several reasons:\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3d35599\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"09c417e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"d99ddf0\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Safe Space\",\"_id\":\"776845c\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/dimension_9728408.svg\",\"id\":504},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Emotional Support\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/friendship_4760671.svg\",\"id\":509},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ca6452d\"},{\"title\":\"Self-Exploration\",\"subtitle\":\"\",\"description\":\"<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"81a0197\"},{\"title\":\"Coping Strategies\",\"subtitle\":\"\",\"description\":\"<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5a9c4f4\"},{\"title\":\"Goal Setting\",\"subtitle\":\"\",\"description\":\"<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0381d8b\"},{\"title\":\"Relationship Improvement\",\"subtitle\":\"\",\"description\":\"<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5d28a9d\"},{\"title\":\"Skill Development\",\"subtitle\":\"\",\"description\":\"<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ee22b3d\"},{\"title\":\"Tailored Approaches\",\"subtitle\":\"\",\"description\":\"<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"9d17efb\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"870829e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"8f5a2f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"01c35ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6915, 598, '_elementor_page_settings', 'a:0:{}'),
(6916, 599, '_wp_page_template', 'elementor_header_footer'),
(6918, 599, '_elementor_global_class_usage_indexed', '1'),
(6919, 599, '_elementor_edit_mode', 'builder'),
(6920, 599, '_elementor_template_type', 'wp-page'),
(6921, 599, '_elementor_version', '4.1.3'),
(6922, 599, '_elementor_pro_version', '4.1.1'),
(6923, 599, '_elementor_global_class_usage_indexed_preview', '1'),
(6924, 599, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6925, 599, '_elementor_data', '[{\"id\":\"723c28e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"103e2d3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"00c4f2f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bdc0006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"00adcc8\"}]},\"elements\":[{\"id\":\"5b246aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0293850\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c43a09c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90cf249\"}],\"pp_display_conditions\":[{\"_id\":\"22db06d\"}]},\"elements\":[{\"id\":\"6c3d86b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f792d6f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Arizona\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"1b37468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arizona\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"841f41b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"7736eb9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Washington\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"f34a2a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Washington\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"315c520\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"c0bf036\",\"elType\":\"widget\",\"settings\":{\"address\":\"colorado\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"960777f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Colorado\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f15109\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"27d533e\",\"elType\":\"widget\",\"settings\":{\"address\":\"florida\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"97e54f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Florida\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f5247d6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"ef16923\",\"elType\":\"widget\",\"settings\":{\"address\":\"Oregon\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"e54df1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oregon\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6926, 556, '_elementor_page_settings', 'a:0:{}'),
(6927, 556, '_elementor_controls_usage', 'a:3:{s:11:\"google_maps\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:7:\"address\";i:5;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:5;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:5;s:11:\"header_size\";i: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:0;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:14:\"flex_direction\";i:1;s:20:\"flex_justify_content\";i:1;s:9:\"flex_wrap\";i:1;}}s:5:\"style\";a:2:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:7;}s:14:\"section_border\";a:4:{s:13:\"border_border\";i:5;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:1:{s:7:\"padding\";i:6;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:7;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}}'),
(5935, 514, '_elementor_page_settings', 'a:0:{}'),
(5936, 515, '_wp_page_template', 'elementor_header_footer'),
(5938, 515, '_elementor_global_class_usage_indexed', '1'),
(5939, 515, '_elementor_edit_mode', 'builder'),
(5940, 515, '_elementor_template_type', 'wp-page'),
(5941, 515, '_elementor_version', '4.1.3'),
(5942, 515, '_elementor_pro_version', '4.1.1'),
(5943, 515, '_elementor_global_class_usage_indexed_preview', '1'),
(5944, 515, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5945, 515, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc1421c\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"fbe05c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"11c59e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"df4e00a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7673fe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"806e853\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychotherapy\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b609356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Individual therapy<\\/li>\\n \\t<li>Couples\\/marriage therapy<\\/li>\\n \\t<li>Family therapy<\\/li>\\n \\t<li>Child\\/teen therapy<\\/li>\\n \\t<li>Online therapy<\\/li>\\n \\t<li>COMMON SPECIALTIES &amp; approaches<\\/li>\\n \\t<li>Anxiety therapy<\\/li>\\n \\t<li>Cognitive behavioral therapy (CBT)<\\/li>\\n \\t<li>Depression counseling<\\/li>\\n \\t<li>Dialectical behavior therapy (DBT)<\\/li>\\n \\t<li>Grief &amp; loss counseling<\\/li>\\n \\t<li>Relational therapy<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15c408\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7b01183\",\"elType\":\"widget\",\"settings\":{\"title\":\"Therapy can be highly beneficial for mental health for several reasons:\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3d35599\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"09c417e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"d99ddf0\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Safe Space\",\"_id\":\"776845c\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/dimension_9728408.svg\",\"id\":504},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Emotional Support\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/friendship_4760671.svg\",\"id\":509},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ca6452d\"},{\"title\":\"Self-Exploration\",\"subtitle\":\"\",\"description\":\"<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"81a0197\"},{\"title\":\"Coping Strategies\",\"subtitle\":\"\",\"description\":\"<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5a9c4f4\"},{\"title\":\"Goal Setting\",\"subtitle\":\"\",\"description\":\"<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0381d8b\"},{\"title\":\"Relationship Improvement\",\"subtitle\":\"\",\"description\":\"<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5d28a9d\"},{\"title\":\"Skill Development\",\"subtitle\":\"\",\"description\":\"<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ee22b3d\"},{\"title\":\"Tailored Approaches\",\"subtitle\":\"\",\"description\":\"<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"9d17efb\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"870829e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"8f5a2f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"01c35ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5946, 515, '_elementor_page_settings', 'a:0:{}'),
(5949, 516, '_elementor_global_class_usage_indexed', '1'),
(5950, 516, '_elementor_edit_mode', 'builder'),
(5951, 516, '_elementor_template_type', 'wp-page'),
(5952, 516, '_elementor_version', '4.1.3'),
(5953, 516, '_elementor_pro_version', '4.1.1'),
(5954, 516, '_elementor_global_class_usage_indexed_preview', '1'),
(5955, 516, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5956, 516, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc1421c\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"fbe05c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"11c59e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"df4e00a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7673fe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"806e853\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychotherapy\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b609356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Individual therapy<\\/li>\\n \\t<li>Couples\\/marriage therapy<\\/li>\\n \\t<li>Family therapy<\\/li>\\n \\t<li>Child\\/teen therapy<\\/li>\\n \\t<li>Online therapy<\\/li>\\n \\t<li>COMMON SPECIALTIES &amp; approaches<\\/li>\\n \\t<li>Anxiety therapy<\\/li>\\n \\t<li>Cognitive behavioral therapy (CBT)<\\/li>\\n \\t<li>Depression counseling<\\/li>\\n \\t<li>Dialectical behavior therapy (DBT)<\\/li>\\n \\t<li>Grief &amp; loss counseling<\\/li>\\n \\t<li>Relational therapy<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15c408\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7b01183\",\"elType\":\"widget\",\"settings\":{\"title\":\"Therapy can be highly beneficial for mental health for several reasons:\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3d35599\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"09c417e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"d99ddf0\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Safe Space\",\"_id\":\"776845c\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/dimension_9728408.svg\",\"id\":504},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Emotional Support\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/friendship_4760671.svg\",\"id\":509},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ca6452d\"},{\"title\":\"Self-Exploration\",\"subtitle\":\"\",\"description\":\"<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/medical_12751971.svg\",\"id\":513},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"81a0197\"},{\"title\":\"Coping Strategies\",\"subtitle\":\"\",\"description\":\"<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5a9c4f4\"},{\"title\":\"Goal Setting\",\"subtitle\":\"\",\"description\":\"<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0381d8b\"},{\"title\":\"Relationship Improvement\",\"subtitle\":\"\",\"description\":\"<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5d28a9d\"},{\"title\":\"Skill Development\",\"subtitle\":\"\",\"description\":\"<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ee22b3d\"},{\"title\":\"Tailored Approaches\",\"subtitle\":\"\",\"description\":\"<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"9d17efb\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"870829e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"8f5a2f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"01c35ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6021, 524, '_wp_page_template', 'elementor_header_footer'),
(5962, 518, '_wp_page_template', 'elementor_header_footer'),
(5964, 518, '_elementor_global_class_usage_indexed', '1'),
(5965, 518, '_elementor_edit_mode', 'builder'),
(5966, 518, '_elementor_template_type', 'wp-page'),
(5967, 518, '_elementor_version', '4.1.3'),
(5968, 518, '_elementor_pro_version', '4.1.1'),
(5969, 518, '_elementor_global_class_usage_indexed_preview', '1'),
(5970, 518, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5971, 518, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc1421c\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"fbe05c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"11c59e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"df4e00a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7673fe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"806e853\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychotherapy\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b609356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Individual therapy<\\/li>\\n \\t<li>Couples\\/marriage therapy<\\/li>\\n \\t<li>Family therapy<\\/li>\\n \\t<li>Child\\/teen therapy<\\/li>\\n \\t<li>Online therapy<\\/li>\\n \\t<li>COMMON SPECIALTIES &amp; approaches<\\/li>\\n \\t<li>Anxiety therapy<\\/li>\\n \\t<li>Cognitive behavioral therapy (CBT)<\\/li>\\n \\t<li>Depression counseling<\\/li>\\n \\t<li>Dialectical behavior therapy (DBT)<\\/li>\\n \\t<li>Grief &amp; loss counseling<\\/li>\\n \\t<li>Relational therapy<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15c408\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7b01183\",\"elType\":\"widget\",\"settings\":{\"title\":\"Therapy can be highly beneficial for mental health for several reasons:\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3d35599\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"09c417e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"d99ddf0\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Safe Space\",\"_id\":\"776845c\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/dimension_9728408.svg\",\"id\":504},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Emotional Support\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/friendship_4760671.svg\",\"id\":509},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ca6452d\"},{\"title\":\"Self-Exploration\",\"subtitle\":\"\",\"description\":\"<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/medical_12751971.svg\",\"id\":513},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"81a0197\"},{\"title\":\"Coping Strategies\",\"subtitle\":\"\",\"description\":\"<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5a9c4f4\"},{\"title\":\"Goal Setting\",\"subtitle\":\"\",\"description\":\"<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0381d8b\"},{\"title\":\"Relationship Improvement\",\"subtitle\":\"\",\"description\":\"<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5d28a9d\"},{\"title\":\"Skill Development\",\"subtitle\":\"\",\"description\":\"<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ee22b3d\"},{\"title\":\"Tailored Approaches\",\"subtitle\":\"\",\"description\":\"<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"9d17efb\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"870829e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"8f5a2f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"01c35ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5959, 517, '_wp_attached_file', '2026/06/advisory-services_12963796.svg'),
(5960, 517, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:5278;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(7967, 677, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(5972, 518, '_elementor_page_settings', 'a:0:{}'),
(5973, 519, '_wp_page_template', 'elementor_header_footer'),
(5975, 519, '_elementor_global_class_usage_indexed', '1'),
(5976, 519, '_elementor_edit_mode', 'builder'),
(5977, 519, '_elementor_template_type', 'wp-page'),
(5978, 519, '_elementor_version', '4.1.3'),
(5979, 519, '_elementor_pro_version', '4.1.1'),
(5980, 519, '_elementor_global_class_usage_indexed_preview', '1'),
(5981, 519, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5982, 519, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc1421c\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"fbe05c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"11c59e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"df4e00a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7673fe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"806e853\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychotherapy\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b609356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Individual therapy<\\/li>\\n \\t<li>Couples\\/marriage therapy<\\/li>\\n \\t<li>Family therapy<\\/li>\\n \\t<li>Child\\/teen therapy<\\/li>\\n \\t<li>Online therapy<\\/li>\\n \\t<li>COMMON SPECIALTIES &amp; approaches<\\/li>\\n \\t<li>Anxiety therapy<\\/li>\\n \\t<li>Cognitive behavioral therapy (CBT)<\\/li>\\n \\t<li>Depression counseling<\\/li>\\n \\t<li>Dialectical behavior therapy (DBT)<\\/li>\\n \\t<li>Grief &amp; loss counseling<\\/li>\\n \\t<li>Relational therapy<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15c408\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7b01183\",\"elType\":\"widget\",\"settings\":{\"title\":\"Therapy can be highly beneficial for mental health for several reasons:\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3d35599\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"09c417e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"d99ddf0\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Safe Space\",\"_id\":\"776845c\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/dimension_9728408.svg\",\"id\":504},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Emotional Support\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/friendship_4760671.svg\",\"id\":509},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ca6452d\"},{\"title\":\"Self-Exploration\",\"subtitle\":\"\",\"description\":\"<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/medical_12751971.svg\",\"id\":513},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"81a0197\"},{\"title\":\"Coping Strategies\",\"subtitle\":\"\",\"description\":\"<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5a9c4f4\"},{\"title\":\"Goal Setting\",\"subtitle\":\"\",\"description\":\"<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0381d8b\"},{\"title\":\"Relationship Improvement\",\"subtitle\":\"\",\"description\":\"<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5d28a9d\"},{\"title\":\"Skill Development\",\"subtitle\":\"\",\"description\":\"<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ee22b3d\"},{\"title\":\"Tailored Approaches\",\"subtitle\":\"\",\"description\":\"<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"9d17efb\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"870829e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"8f5a2f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"01c35ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5983, 519, '_elementor_page_settings', 'a:0:{}'),
(5984, 520, '_wp_page_template', 'elementor_header_footer'),
(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.3'),
(5990, 520, '_elementor_pro_version', '4.1.1'),
(5991, 520, '_elementor_global_class_usage_indexed_preview', '1'),
(5992, 520, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(5993, 520, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc1421c\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"fbe05c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"11c59e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"df4e00a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7673fe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"806e853\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychotherapy\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b609356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Individual therapy<\\/li>\\n \\t<li>Couples\\/marriage therapy<\\/li>\\n \\t<li>Family therapy<\\/li>\\n \\t<li>Child\\/teen therapy<\\/li>\\n \\t<li>Online therapy<\\/li>\\n \\t<li>COMMON SPECIALTIES &amp; approaches<\\/li>\\n \\t<li>Anxiety therapy<\\/li>\\n \\t<li>Cognitive behavioral therapy (CBT)<\\/li>\\n \\t<li>Depression counseling<\\/li>\\n \\t<li>Dialectical behavior therapy (DBT)<\\/li>\\n \\t<li>Grief &amp; loss counseling<\\/li>\\n \\t<li>Relational therapy<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15c408\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7b01183\",\"elType\":\"widget\",\"settings\":{\"title\":\"Therapy can be highly beneficial for mental health for several reasons:\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3d35599\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"09c417e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"d99ddf0\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Safe Space\",\"_id\":\"776845c\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/dimension_9728408.svg\",\"id\":504},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Emotional Support\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/friendship_4760671.svg\",\"id\":509},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ca6452d\"},{\"title\":\"Self-Exploration\",\"subtitle\":\"\",\"description\":\"<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/medical_12751971.svg\",\"id\":513},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"81a0197\"},{\"title\":\"Coping Strategies\",\"subtitle\":\"\",\"description\":\"<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/advisory-services_12963796.svg\",\"id\":517},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5a9c4f4\"},{\"title\":\"Goal Setting\",\"subtitle\":\"\",\"description\":\"<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0381d8b\"},{\"title\":\"Relationship Improvement\",\"subtitle\":\"\",\"description\":\"<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5d28a9d\"},{\"title\":\"Skill Development\",\"subtitle\":\"\",\"description\":\"<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ee22b3d\"},{\"title\":\"Tailored Approaches\",\"subtitle\":\"\",\"description\":\"<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"9d17efb\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"870829e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"8f5a2f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"01c35ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5999, 522, '_wp_page_template', 'elementor_header_footer'),
(6001, 522, '_elementor_global_class_usage_indexed', '1'),
(6002, 522, '_elementor_edit_mode', 'builder'),
(6003, 522, '_elementor_template_type', 'wp-page'),
(6004, 522, '_elementor_version', '4.1.3'),
(6005, 522, '_elementor_pro_version', '4.1.1'),
(6006, 522, '_elementor_global_class_usage_indexed_preview', '1'),
(6007, 522, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6008, 522, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc1421c\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"fbe05c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"11c59e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"df4e00a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7673fe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"806e853\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychotherapy\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b609356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Individual therapy<\\/li>\\n \\t<li>Couples\\/marriage therapy<\\/li>\\n \\t<li>Family therapy<\\/li>\\n \\t<li>Child\\/teen therapy<\\/li>\\n \\t<li>Online therapy<\\/li>\\n \\t<li>COMMON SPECIALTIES &amp; approaches<\\/li>\\n \\t<li>Anxiety therapy<\\/li>\\n \\t<li>Cognitive behavioral therapy (CBT)<\\/li>\\n \\t<li>Depression counseling<\\/li>\\n \\t<li>Dialectical behavior therapy (DBT)<\\/li>\\n \\t<li>Grief &amp; loss counseling<\\/li>\\n \\t<li>Relational therapy<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15c408\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7b01183\",\"elType\":\"widget\",\"settings\":{\"title\":\"Therapy can be highly beneficial for mental health for several reasons:\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3d35599\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"09c417e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"d99ddf0\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Safe Space\",\"_id\":\"776845c\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/dimension_9728408.svg\",\"id\":504},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Emotional Support\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/friendship_4760671.svg\",\"id\":509},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ca6452d\"},{\"title\":\"Self-Exploration\",\"subtitle\":\"\",\"description\":\"<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/medical_12751971.svg\",\"id\":513},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"81a0197\"},{\"title\":\"Coping Strategies\",\"subtitle\":\"\",\"description\":\"<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/advisory-services_12963796.svg\",\"id\":517},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5a9c4f4\"},{\"title\":\"Goal Setting\",\"subtitle\":\"\",\"description\":\"<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0381d8b\"},{\"title\":\"Relationship Improvement\",\"subtitle\":\"\",\"description\":\"<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5d28a9d\"},{\"title\":\"Skill Development\",\"subtitle\":\"\",\"description\":\"<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ee22b3d\"},{\"title\":\"Tailored Approaches\",\"subtitle\":\"\",\"description\":\"<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"9d17efb\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"870829e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"8f5a2f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"01c35ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5996, 521, '_wp_attached_file', '2026/06/setup_917115.svg'),
(5997, 521, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:6282;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(6379, 543, '_elementor_page_settings', 'a:0:{}'),
(6380, 543, '_elementor_controls_usage', 'a:4:{s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:6:\"pp-faq\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:22:\"section_accordion_faqs\";a:1:{s:4:\"tabs\";i:1;}}s:5:\"style\";a:3:{s:23:\"section_faq_items_style\";a:3:{s:25:\"faqs_items_bottom_spacing\";i:1;s:22:\"faq_items_border_color\";i:1;s:23:\"faq_items_border_radius\";i:1;}s:23:\"section_questions_style\";a:4:{s:17:\"question_bg_color\";i:1;s:30:\"question_typography_typography\";i:1;s:16:\"question_padding\";i:1;s:34:\"question_typography_letter_spacing\";i:1;}s:21:\"section_answers_style\";a:1:{s:14:\"answer_padding\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:2:{s:13:\"content_width\";i:1;s:11:\"boxed_width\";i:1;}}s:5:\"style\";a:2:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:2;}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:2;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:1;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}}'),
(6381, 556, '_edit_last', '1'),
(6382, 556, '_edit_lock', '1781696135:1'),
(6383, 556, '_wp_page_template', 'elementor_header_footer'),
(6384, 556, 'site-sidebar-layout', 'no-sidebar'),
(6389, 556, 'theme-transparent-header-meta', 'default'),
(6386, 556, 'ast-site-content-layout', 'full-width-container'),
(6387, 556, 'site-content-style', 'default'),
(6388, 556, 'site-sidebar-style', 'default'),
(6390, 556, 'astra-migrate-meta-layouts', 'set'),
(6391, 558, '_menu_item_type', 'post_type'),
(6392, 558, '_menu_item_menu_item_parent', '0'),
(6393, 558, '_menu_item_object_id', '556'),
(6394, 558, '_menu_item_object', 'page'),
(6395, 558, '_menu_item_target', ''),
(6396, 558, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(6397, 558, '_menu_item_xfn', ''),
(6398, 558, '_menu_item_url', ''),
(6009, 522, '_elementor_page_settings', 'a:0:{}'),
(6010, 523, '_wp_page_template', 'elementor_header_footer'),
(7957, 677, '_elementor_source', 'post'),
(7958, 677, '_elementor_edit_mode', 'builder'),
(7959, 677, '_elementor_template_type', 'header'),
(6012, 523, '_elementor_global_class_usage_indexed', '1'),
(6013, 523, '_elementor_edit_mode', 'builder'),
(6014, 523, '_elementor_template_type', 'wp-page'),
(6015, 523, '_elementor_version', '4.1.3'),
(6016, 523, '_elementor_pro_version', '4.1.1'),
(6017, 523, '_elementor_global_class_usage_indexed_preview', '1'),
(6018, 523, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6019, 523, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc1421c\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"fbe05c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"11c59e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"df4e00a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7673fe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"806e853\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychotherapy\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b609356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Individual therapy<\\/li>\\n \\t<li>Couples\\/marriage therapy<\\/li>\\n \\t<li>Family therapy<\\/li>\\n \\t<li>Child\\/teen therapy<\\/li>\\n \\t<li>Online therapy<\\/li>\\n \\t<li>COMMON SPECIALTIES &amp; approaches<\\/li>\\n \\t<li>Anxiety therapy<\\/li>\\n \\t<li>Cognitive behavioral therapy (CBT)<\\/li>\\n \\t<li>Depression counseling<\\/li>\\n \\t<li>Dialectical behavior therapy (DBT)<\\/li>\\n \\t<li>Grief &amp; loss counseling<\\/li>\\n \\t<li>Relational therapy<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15c408\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7b01183\",\"elType\":\"widget\",\"settings\":{\"title\":\"Therapy can be highly beneficial for mental health for several reasons:\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3d35599\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"09c417e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"d99ddf0\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Safe Space\",\"_id\":\"776845c\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/dimension_9728408.svg\",\"id\":504},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Emotional Support\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/friendship_4760671.svg\",\"id\":509},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ca6452d\"},{\"title\":\"Self-Exploration\",\"subtitle\":\"\",\"description\":\"<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/medical_12751971.svg\",\"id\":513},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"81a0197\"},{\"title\":\"Coping Strategies\",\"subtitle\":\"\",\"description\":\"<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/advisory-services_12963796.svg\",\"id\":517},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5a9c4f4\"},{\"title\":\"Goal Setting\",\"subtitle\":\"\",\"description\":\"<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0381d8b\"},{\"title\":\"Relationship Improvement\",\"subtitle\":\"\",\"description\":\"<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5d28a9d\"},{\"title\":\"Skill Development\",\"subtitle\":\"\",\"description\":\"<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ee22b3d\"},{\"title\":\"Tailored Approaches\",\"subtitle\":\"\",\"description\":\"<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"9d17efb\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"870829e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"8f5a2f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"01c35ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6020, 523, '_elementor_page_settings', 'a:0:{}'),
(6023, 524, '_elementor_global_class_usage_indexed', '1'),
(6024, 524, '_elementor_edit_mode', 'builder'),
(6025, 524, '_elementor_template_type', 'wp-page'),
(6026, 524, '_elementor_version', '4.1.3'),
(6027, 524, '_elementor_pro_version', '4.1.1'),
(6028, 524, '_elementor_global_class_usage_indexed_preview', '1'),
(6029, 524, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6030, 524, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc1421c\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"fbe05c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"11c59e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"df4e00a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7673fe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"806e853\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychotherapy\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b609356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Individual therapy<\\/li>\\n \\t<li>Couples\\/marriage therapy<\\/li>\\n \\t<li>Family therapy<\\/li>\\n \\t<li>Child\\/teen therapy<\\/li>\\n \\t<li>Online therapy<\\/li>\\n \\t<li>COMMON SPECIALTIES &amp; approaches<\\/li>\\n \\t<li>Anxiety therapy<\\/li>\\n \\t<li>Cognitive behavioral therapy (CBT)<\\/li>\\n \\t<li>Depression counseling<\\/li>\\n \\t<li>Dialectical behavior therapy (DBT)<\\/li>\\n \\t<li>Grief &amp; loss counseling<\\/li>\\n \\t<li>Relational therapy<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15c408\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7b01183\",\"elType\":\"widget\",\"settings\":{\"title\":\"Therapy can be highly beneficial for mental health for several reasons:\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3d35599\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"09c417e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"d99ddf0\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Safe Space\",\"_id\":\"776845c\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/dimension_9728408.svg\",\"id\":504},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Emotional Support\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/friendship_4760671.svg\",\"id\":509},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ca6452d\"},{\"title\":\"Self-Exploration\",\"subtitle\":\"\",\"description\":\"<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/medical_12751971.svg\",\"id\":513},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"81a0197\"},{\"title\":\"Coping Strategies\",\"subtitle\":\"\",\"description\":\"<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/advisory-services_12963796.svg\",\"id\":517},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5a9c4f4\"},{\"title\":\"Goal Setting\",\"subtitle\":\"\",\"description\":\"<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/setup_917115.svg\",\"id\":521},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0381d8b\"},{\"title\":\"Relationship Improvement\",\"subtitle\":\"\",\"description\":\"<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5d28a9d\"},{\"title\":\"Skill Development\",\"subtitle\":\"\",\"description\":\"<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ee22b3d\"},{\"title\":\"Tailored Approaches\",\"subtitle\":\"\",\"description\":\"<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"9d17efb\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"870829e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"8f5a2f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"01c35ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6058, 528, '_wp_page_template', 'elementor_header_footer'),
(6036, 526, '_wp_page_template', 'elementor_header_footer'),
(6038, 526, '_elementor_global_class_usage_indexed', '1'),
(6039, 526, '_elementor_edit_mode', 'builder'),
(6040, 526, '_elementor_template_type', 'wp-page'),
(6041, 526, '_elementor_version', '4.1.3'),
(6042, 526, '_elementor_pro_version', '4.1.1'),
(6043, 526, '_elementor_global_class_usage_indexed_preview', '1'),
(6044, 526, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6045, 526, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc1421c\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"fbe05c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"11c59e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"df4e00a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7673fe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"806e853\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychotherapy\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b609356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Individual therapy<\\/li>\\n \\t<li>Couples\\/marriage therapy<\\/li>\\n \\t<li>Family therapy<\\/li>\\n \\t<li>Child\\/teen therapy<\\/li>\\n \\t<li>Online therapy<\\/li>\\n \\t<li>COMMON SPECIALTIES &amp; approaches<\\/li>\\n \\t<li>Anxiety therapy<\\/li>\\n \\t<li>Cognitive behavioral therapy (CBT)<\\/li>\\n \\t<li>Depression counseling<\\/li>\\n \\t<li>Dialectical behavior therapy (DBT)<\\/li>\\n \\t<li>Grief &amp; loss counseling<\\/li>\\n \\t<li>Relational therapy<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15c408\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7b01183\",\"elType\":\"widget\",\"settings\":{\"title\":\"Therapy can be highly beneficial for mental health for several reasons:\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3d35599\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"09c417e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"d99ddf0\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Safe Space\",\"_id\":\"776845c\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/dimension_9728408.svg\",\"id\":504},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Emotional Support\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/friendship_4760671.svg\",\"id\":509},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ca6452d\"},{\"title\":\"Self-Exploration\",\"subtitle\":\"\",\"description\":\"<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/medical_12751971.svg\",\"id\":513},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"81a0197\"},{\"title\":\"Coping Strategies\",\"subtitle\":\"\",\"description\":\"<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/advisory-services_12963796.svg\",\"id\":517},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5a9c4f4\"},{\"title\":\"Goal Setting\",\"subtitle\":\"\",\"description\":\"<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/setup_917115.svg\",\"id\":521},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0381d8b\"},{\"title\":\"Relationship Improvement\",\"subtitle\":\"\",\"description\":\"<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5d28a9d\"},{\"title\":\"Skill Development\",\"subtitle\":\"\",\"description\":\"<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ee22b3d\"},{\"title\":\"Tailored Approaches\",\"subtitle\":\"\",\"description\":\"<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"9d17efb\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"870829e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"8f5a2f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"01c35ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6033, 525, '_wp_attached_file', '2026/06/employee-benefit_9888459.svg'),
(6034, 525, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:8868;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(6434, 560, '_elementor_source', 'post'),
(6435, 560, '_elementor_edit_mode', 'builder'),
(6436, 560, '_elementor_template_type', 'header'),
(6437, 560, '_elementor_version', '4.1.3'),
(6438, 560, '_elementor_pro_version', '4.1.1'),
(6439, 560, '_elementor_global_class_usage_indexed', '1'),
(6440, 560, '_elementor_global_class_usage_indexed_preview', '1'),
(6441, 560, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6442, 560, '_wp_page_template', 'default');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6443, 560, '_elementor_data', '[{\"id\":\"7cd2407b\",\"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},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"boxed_width\":{\"unit\":\"px\",\"size\":1500,\"sizes\":[]}},\"elements\":[{\"id\":\"4b376675\",\"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\":\"14e415c9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@optimalmentalwellness.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@optimalmentalwellness.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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5137f99d\",\"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\":\"416cdcb9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"904-901-7913\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:9049017913\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=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\":\"6090cb25\",\"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\",\"boxed_width\":{\"unit\":\"px\",\"size\":1500,\"sizes\":[]}},\"elements\":[{\"id\":\"42e85872\",\"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\":\"5d51e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Optimal-Mental-Health-And-Wellness-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":300,\"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\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_position\":\"absolute\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"388619a3\",\"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\":\"2a70cfde\",\"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\":30,\"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\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"500\",\"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=astglobalcolor6\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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\":[]},\"_flex_order_tablet_extra\":\"end\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"ca7841b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"590be00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"454cd36b\",\"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\":432,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Mental-Health-And-Wellness-av.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"5aa4113e\",\"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}]'),
(6046, 526, '_elementor_page_settings', 'a:0:{}'),
(6047, 527, '_wp_page_template', 'elementor_header_footer'),
(6049, 527, '_elementor_global_class_usage_indexed', '1'),
(6050, 527, '_elementor_edit_mode', 'builder'),
(6051, 527, '_elementor_template_type', 'wp-page'),
(6052, 527, '_elementor_version', '4.1.3'),
(6053, 527, '_elementor_pro_version', '4.1.1'),
(6054, 527, '_elementor_global_class_usage_indexed_preview', '1'),
(6055, 527, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6056, 527, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc1421c\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"fbe05c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"11c59e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"df4e00a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7673fe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"806e853\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychotherapy\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b609356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Individual therapy<\\/li>\\n \\t<li>Couples\\/marriage therapy<\\/li>\\n \\t<li>Family therapy<\\/li>\\n \\t<li>Child\\/teen therapy<\\/li>\\n \\t<li>Online therapy<\\/li>\\n \\t<li>COMMON SPECIALTIES &amp; approaches<\\/li>\\n \\t<li>Anxiety therapy<\\/li>\\n \\t<li>Cognitive behavioral therapy (CBT)<\\/li>\\n \\t<li>Depression counseling<\\/li>\\n \\t<li>Dialectical behavior therapy (DBT)<\\/li>\\n \\t<li>Grief &amp; loss counseling<\\/li>\\n \\t<li>Relational therapy<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15c408\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7b01183\",\"elType\":\"widget\",\"settings\":{\"title\":\"Therapy can be highly beneficial for mental health for several reasons:\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3d35599\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"09c417e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"d99ddf0\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Safe Space\",\"_id\":\"776845c\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/dimension_9728408.svg\",\"id\":504},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Emotional Support\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/friendship_4760671.svg\",\"id\":509},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ca6452d\"},{\"title\":\"Self-Exploration\",\"subtitle\":\"\",\"description\":\"<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/medical_12751971.svg\",\"id\":513},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"81a0197\"},{\"title\":\"Coping Strategies\",\"subtitle\":\"\",\"description\":\"<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/advisory-services_12963796.svg\",\"id\":517},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5a9c4f4\"},{\"title\":\"Goal Setting\",\"subtitle\":\"\",\"description\":\"<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/setup_917115.svg\",\"id\":521},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0381d8b\"},{\"title\":\"Relationship Improvement\",\"subtitle\":\"\",\"description\":\"<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5d28a9d\"},{\"title\":\"Skill Development\",\"subtitle\":\"\",\"description\":\"<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ee22b3d\"},{\"title\":\"Tailored Approaches\",\"subtitle\":\"\",\"description\":\"<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"9d17efb\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"870829e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"8f5a2f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"01c35ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6057, 527, '_elementor_page_settings', 'a:0:{}'),
(6060, 528, '_elementor_global_class_usage_indexed', '1'),
(6061, 528, '_elementor_edit_mode', 'builder'),
(6062, 528, '_elementor_template_type', 'wp-page'),
(6063, 528, '_elementor_version', '4.1.3'),
(6064, 528, '_elementor_pro_version', '4.1.1'),
(6065, 528, '_elementor_global_class_usage_indexed_preview', '1'),
(6066, 528, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6067, 528, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc1421c\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"fbe05c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"11c59e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"df4e00a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7673fe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"806e853\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychotherapy\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b609356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Individual therapy<\\/li>\\n \\t<li>Couples\\/marriage therapy<\\/li>\\n \\t<li>Family therapy<\\/li>\\n \\t<li>Child\\/teen therapy<\\/li>\\n \\t<li>Online therapy<\\/li>\\n \\t<li>COMMON SPECIALTIES &amp; approaches<\\/li>\\n \\t<li>Anxiety therapy<\\/li>\\n \\t<li>Cognitive behavioral therapy (CBT)<\\/li>\\n \\t<li>Depression counseling<\\/li>\\n \\t<li>Dialectical behavior therapy (DBT)<\\/li>\\n \\t<li>Grief &amp; loss counseling<\\/li>\\n \\t<li>Relational therapy<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15c408\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7b01183\",\"elType\":\"widget\",\"settings\":{\"title\":\"Therapy can be highly beneficial for mental health for several reasons:\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3d35599\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"09c417e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"d99ddf0\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Safe Space\",\"_id\":\"776845c\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/dimension_9728408.svg\",\"id\":504},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Emotional Support\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/friendship_4760671.svg\",\"id\":509},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ca6452d\"},{\"title\":\"Self-Exploration\",\"subtitle\":\"\",\"description\":\"<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/medical_12751971.svg\",\"id\":513},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"81a0197\"},{\"title\":\"Coping Strategies\",\"subtitle\":\"\",\"description\":\"<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/advisory-services_12963796.svg\",\"id\":517},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5a9c4f4\"},{\"title\":\"Goal Setting\",\"subtitle\":\"\",\"description\":\"<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/setup_917115.svg\",\"id\":521},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0381d8b\"},{\"title\":\"Relationship Improvement\",\"subtitle\":\"\",\"description\":\"<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/employee-benefit_9888459.svg\",\"id\":525},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5d28a9d\"},{\"title\":\"Skill Development\",\"subtitle\":\"\",\"description\":\"<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ee22b3d\"},{\"title\":\"Tailored Approaches\",\"subtitle\":\"\",\"description\":\"<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"9d17efb\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"870829e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"8f5a2f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"01c35ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6095, 532, '_wp_page_template', 'elementor_header_footer'),
(6073, 530, '_wp_page_template', 'elementor_header_footer'),
(6075, 530, '_elementor_global_class_usage_indexed', '1'),
(6076, 530, '_elementor_edit_mode', 'builder'),
(6077, 530, '_elementor_template_type', 'wp-page'),
(6078, 530, '_elementor_version', '4.1.3'),
(6079, 530, '_elementor_pro_version', '4.1.1'),
(6080, 530, '_elementor_global_class_usage_indexed_preview', '1'),
(6081, 530, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6082, 530, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc1421c\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"fbe05c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"11c59e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"df4e00a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7673fe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"806e853\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychotherapy\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b609356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Individual therapy<\\/li>\\n \\t<li>Couples\\/marriage therapy<\\/li>\\n \\t<li>Family therapy<\\/li>\\n \\t<li>Child\\/teen therapy<\\/li>\\n \\t<li>Online therapy<\\/li>\\n \\t<li>COMMON SPECIALTIES &amp; approaches<\\/li>\\n \\t<li>Anxiety therapy<\\/li>\\n \\t<li>Cognitive behavioral therapy (CBT)<\\/li>\\n \\t<li>Depression counseling<\\/li>\\n \\t<li>Dialectical behavior therapy (DBT)<\\/li>\\n \\t<li>Grief &amp; loss counseling<\\/li>\\n \\t<li>Relational therapy<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15c408\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7b01183\",\"elType\":\"widget\",\"settings\":{\"title\":\"Therapy can be highly beneficial for mental health for several reasons:\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3d35599\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"09c417e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"d99ddf0\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Safe Space\",\"_id\":\"776845c\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/dimension_9728408.svg\",\"id\":504},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Emotional Support\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/friendship_4760671.svg\",\"id\":509},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ca6452d\"},{\"title\":\"Self-Exploration\",\"subtitle\":\"\",\"description\":\"<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/medical_12751971.svg\",\"id\":513},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"81a0197\"},{\"title\":\"Coping Strategies\",\"subtitle\":\"\",\"description\":\"<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/advisory-services_12963796.svg\",\"id\":517},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5a9c4f4\"},{\"title\":\"Goal Setting\",\"subtitle\":\"\",\"description\":\"<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/setup_917115.svg\",\"id\":521},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0381d8b\"},{\"title\":\"Relationship Improvement\",\"subtitle\":\"\",\"description\":\"<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/employee-benefit_9888459.svg\",\"id\":525},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5d28a9d\"},{\"title\":\"Skill Development\",\"subtitle\":\"\",\"description\":\"<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ee22b3d\"},{\"title\":\"Tailored Approaches\",\"subtitle\":\"\",\"description\":\"<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"9d17efb\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"870829e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"8f5a2f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"01c35ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6070, 529, '_wp_attached_file', '2026/06/mindful_18810720.svg'),
(6071, 529, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:6275;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(6083, 530, '_elementor_page_settings', 'a:0:{}'),
(6084, 531, '_wp_page_template', 'elementor_header_footer'),
(6086, 531, '_elementor_global_class_usage_indexed', '1'),
(6087, 531, '_elementor_edit_mode', 'builder'),
(6088, 531, '_elementor_template_type', 'wp-page'),
(6089, 531, '_elementor_version', '4.1.3'),
(6090, 531, '_elementor_pro_version', '4.1.1'),
(6091, 531, '_elementor_global_class_usage_indexed_preview', '1'),
(6092, 531, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6093, 531, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc1421c\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"fbe05c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"11c59e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"df4e00a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7673fe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"806e853\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychotherapy\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b609356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Individual therapy<\\/li>\\n \\t<li>Couples\\/marriage therapy<\\/li>\\n \\t<li>Family therapy<\\/li>\\n \\t<li>Child\\/teen therapy<\\/li>\\n \\t<li>Online therapy<\\/li>\\n \\t<li>COMMON SPECIALTIES &amp; approaches<\\/li>\\n \\t<li>Anxiety therapy<\\/li>\\n \\t<li>Cognitive behavioral therapy (CBT)<\\/li>\\n \\t<li>Depression counseling<\\/li>\\n \\t<li>Dialectical behavior therapy (DBT)<\\/li>\\n \\t<li>Grief &amp; loss counseling<\\/li>\\n \\t<li>Relational therapy<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15c408\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7b01183\",\"elType\":\"widget\",\"settings\":{\"title\":\"Therapy can be highly beneficial for mental health for several reasons:\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3d35599\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"09c417e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"d99ddf0\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Safe Space\",\"_id\":\"776845c\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/dimension_9728408.svg\",\"id\":504},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Emotional Support\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/friendship_4760671.svg\",\"id\":509},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ca6452d\"},{\"title\":\"Self-Exploration\",\"subtitle\":\"\",\"description\":\"<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/medical_12751971.svg\",\"id\":513},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"81a0197\"},{\"title\":\"Coping Strategies\",\"subtitle\":\"\",\"description\":\"<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/advisory-services_12963796.svg\",\"id\":517},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5a9c4f4\"},{\"title\":\"Goal Setting\",\"subtitle\":\"\",\"description\":\"<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/setup_917115.svg\",\"id\":521},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0381d8b\"},{\"title\":\"Relationship Improvement\",\"subtitle\":\"\",\"description\":\"<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/employee-benefit_9888459.svg\",\"id\":525},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5d28a9d\"},{\"title\":\"Skill Development\",\"subtitle\":\"\",\"description\":\"<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ee22b3d\"},{\"title\":\"Tailored Approaches\",\"subtitle\":\"\",\"description\":\"<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"9d17efb\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"870829e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"8f5a2f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"01c35ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6094, 531, '_elementor_page_settings', 'a:0:{}'),
(6097, 532, '_elementor_global_class_usage_indexed', '1'),
(6098, 532, '_elementor_edit_mode', 'builder'),
(6099, 532, '_elementor_template_type', 'wp-page'),
(6100, 532, '_elementor_version', '4.1.3'),
(6101, 532, '_elementor_pro_version', '4.1.1'),
(6102, 532, '_elementor_global_class_usage_indexed_preview', '1'),
(6103, 532, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6104, 532, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc1421c\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"fbe05c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"11c59e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"df4e00a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7673fe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"806e853\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychotherapy\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b609356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Individual therapy<\\/li>\\n \\t<li>Couples\\/marriage therapy<\\/li>\\n \\t<li>Family therapy<\\/li>\\n \\t<li>Child\\/teen therapy<\\/li>\\n \\t<li>Online therapy<\\/li>\\n \\t<li>COMMON SPECIALTIES &amp; approaches<\\/li>\\n \\t<li>Anxiety therapy<\\/li>\\n \\t<li>Cognitive behavioral therapy (CBT)<\\/li>\\n \\t<li>Depression counseling<\\/li>\\n \\t<li>Dialectical behavior therapy (DBT)<\\/li>\\n \\t<li>Grief &amp; loss counseling<\\/li>\\n \\t<li>Relational therapy<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15c408\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7b01183\",\"elType\":\"widget\",\"settings\":{\"title\":\"Therapy can be highly beneficial for mental health for several reasons:\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3d35599\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"09c417e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"d99ddf0\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Safe Space\",\"_id\":\"776845c\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/dimension_9728408.svg\",\"id\":504},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Emotional Support\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/friendship_4760671.svg\",\"id\":509},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ca6452d\"},{\"title\":\"Self-Exploration\",\"subtitle\":\"\",\"description\":\"<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/medical_12751971.svg\",\"id\":513},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"81a0197\"},{\"title\":\"Coping Strategies\",\"subtitle\":\"\",\"description\":\"<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/advisory-services_12963796.svg\",\"id\":517},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5a9c4f4\"},{\"title\":\"Goal Setting\",\"subtitle\":\"\",\"description\":\"<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/setup_917115.svg\",\"id\":521},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0381d8b\"},{\"title\":\"Relationship Improvement\",\"subtitle\":\"\",\"description\":\"<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/employee-benefit_9888459.svg\",\"id\":525},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5d28a9d\"},{\"title\":\"Skill Development\",\"subtitle\":\"\",\"description\":\"<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mindful_18810720.svg\",\"id\":529},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ee22b3d\"},{\"title\":\"Tailored Approaches\",\"subtitle\":\"\",\"description\":\"<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"9d17efb\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"870829e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"8f5a2f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"01c35ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6132, 536, '_wp_page_template', 'elementor_header_footer'),
(6110, 534, '_wp_page_template', 'elementor_header_footer'),
(6112, 534, '_elementor_global_class_usage_indexed', '1'),
(6113, 534, '_elementor_edit_mode', 'builder'),
(6114, 534, '_elementor_template_type', 'wp-page'),
(6115, 534, '_elementor_version', '4.1.3'),
(6116, 534, '_elementor_pro_version', '4.1.1'),
(6117, 534, '_elementor_global_class_usage_indexed_preview', '1'),
(6118, 534, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6119, 534, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc1421c\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"fbe05c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"11c59e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"df4e00a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7673fe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"806e853\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychotherapy\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b609356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Individual therapy<\\/li>\\n \\t<li>Couples\\/marriage therapy<\\/li>\\n \\t<li>Family therapy<\\/li>\\n \\t<li>Child\\/teen therapy<\\/li>\\n \\t<li>Online therapy<\\/li>\\n \\t<li>COMMON SPECIALTIES &amp; approaches<\\/li>\\n \\t<li>Anxiety therapy<\\/li>\\n \\t<li>Cognitive behavioral therapy (CBT)<\\/li>\\n \\t<li>Depression counseling<\\/li>\\n \\t<li>Dialectical behavior therapy (DBT)<\\/li>\\n \\t<li>Grief &amp; loss counseling<\\/li>\\n \\t<li>Relational therapy<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15c408\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7b01183\",\"elType\":\"widget\",\"settings\":{\"title\":\"Therapy can be highly beneficial for mental health for several reasons:\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3d35599\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"09c417e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"d99ddf0\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Safe Space\",\"_id\":\"776845c\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/dimension_9728408.svg\",\"id\":504},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Emotional Support\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/friendship_4760671.svg\",\"id\":509},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ca6452d\"},{\"title\":\"Self-Exploration\",\"subtitle\":\"\",\"description\":\"<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/medical_12751971.svg\",\"id\":513},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"81a0197\"},{\"title\":\"Coping Strategies\",\"subtitle\":\"\",\"description\":\"<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/advisory-services_12963796.svg\",\"id\":517},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5a9c4f4\"},{\"title\":\"Goal Setting\",\"subtitle\":\"\",\"description\":\"<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/setup_917115.svg\",\"id\":521},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0381d8b\"},{\"title\":\"Relationship Improvement\",\"subtitle\":\"\",\"description\":\"<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/employee-benefit_9888459.svg\",\"id\":525},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5d28a9d\"},{\"title\":\"Skill Development\",\"subtitle\":\"\",\"description\":\"<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mindful_18810720.svg\",\"id\":529},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ee22b3d\"},{\"title\":\"Tailored Approaches\",\"subtitle\":\"\",\"description\":\"<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"9d17efb\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"870829e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"8f5a2f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"01c35ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6107, 533, '_wp_attached_file', '2026/06/structure_7287549.svg'),
(6108, 533, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:2402;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(6120, 534, '_elementor_page_settings', 'a:0:{}'),
(6121, 535, '_wp_page_template', 'elementor_header_footer'),
(6123, 535, '_elementor_global_class_usage_indexed', '1'),
(6124, 535, '_elementor_edit_mode', 'builder'),
(6125, 535, '_elementor_template_type', 'wp-page'),
(6126, 535, '_elementor_version', '4.1.3'),
(6127, 535, '_elementor_pro_version', '4.1.1'),
(6128, 535, '_elementor_global_class_usage_indexed_preview', '1'),
(6129, 535, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6130, 535, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc1421c\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"fbe05c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"11c59e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"df4e00a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7673fe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"806e853\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychotherapy\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b609356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Individual therapy<\\/li>\\n \\t<li>Couples\\/marriage therapy<\\/li>\\n \\t<li>Family therapy<\\/li>\\n \\t<li>Child\\/teen therapy<\\/li>\\n \\t<li>Online therapy<\\/li>\\n \\t<li>COMMON SPECIALTIES &amp; approaches<\\/li>\\n \\t<li>Anxiety therapy<\\/li>\\n \\t<li>Cognitive behavioral therapy (CBT)<\\/li>\\n \\t<li>Depression counseling<\\/li>\\n \\t<li>Dialectical behavior therapy (DBT)<\\/li>\\n \\t<li>Grief &amp; loss counseling<\\/li>\\n \\t<li>Relational therapy<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15c408\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7b01183\",\"elType\":\"widget\",\"settings\":{\"title\":\"Therapy can be highly beneficial for mental health for several reasons:\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3d35599\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"09c417e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"d99ddf0\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Safe Space\",\"_id\":\"776845c\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/dimension_9728408.svg\",\"id\":504},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Emotional Support\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/friendship_4760671.svg\",\"id\":509},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ca6452d\"},{\"title\":\"Self-Exploration\",\"subtitle\":\"\",\"description\":\"<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/medical_12751971.svg\",\"id\":513},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"81a0197\"},{\"title\":\"Coping Strategies\",\"subtitle\":\"\",\"description\":\"<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/advisory-services_12963796.svg\",\"id\":517},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5a9c4f4\"},{\"title\":\"Goal Setting\",\"subtitle\":\"\",\"description\":\"<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/setup_917115.svg\",\"id\":521},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0381d8b\"},{\"title\":\"Relationship Improvement\",\"subtitle\":\"\",\"description\":\"<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/employee-benefit_9888459.svg\",\"id\":525},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5d28a9d\"},{\"title\":\"Skill Development\",\"subtitle\":\"\",\"description\":\"<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mindful_18810720.svg\",\"id\":529},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ee22b3d\"},{\"title\":\"Tailored Approaches\",\"subtitle\":\"\",\"description\":\"<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"9d17efb\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"870829e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"8f5a2f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"01c35ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6131, 535, '_elementor_page_settings', 'a:0:{}'),
(6134, 536, '_elementor_global_class_usage_indexed', '1'),
(6135, 536, '_elementor_edit_mode', 'builder'),
(6136, 536, '_elementor_template_type', 'wp-page'),
(6137, 536, '_elementor_version', '4.1.3'),
(6138, 536, '_elementor_pro_version', '4.1.1'),
(6139, 536, '_elementor_global_class_usage_indexed_preview', '1'),
(6140, 536, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6141, 536, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc1421c\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"fbe05c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"11c59e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"df4e00a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7673fe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"806e853\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychotherapy\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b609356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Individual therapy<\\/li>\\n \\t<li>Couples\\/marriage therapy<\\/li>\\n \\t<li>Family therapy<\\/li>\\n \\t<li>Child\\/teen therapy<\\/li>\\n \\t<li>Online therapy<\\/li>\\n \\t<li>COMMON SPECIALTIES &amp; approaches<\\/li>\\n \\t<li>Anxiety therapy<\\/li>\\n \\t<li>Cognitive behavioral therapy (CBT)<\\/li>\\n \\t<li>Depression counseling<\\/li>\\n \\t<li>Dialectical behavior therapy (DBT)<\\/li>\\n \\t<li>Grief &amp; loss counseling<\\/li>\\n \\t<li>Relational therapy<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15c408\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7b01183\",\"elType\":\"widget\",\"settings\":{\"title\":\"Therapy can be highly beneficial for mental health for several reasons:\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3d35599\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"09c417e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"d99ddf0\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Safe Space\",\"_id\":\"776845c\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/dimension_9728408.svg\",\"id\":504},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Emotional Support\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/friendship_4760671.svg\",\"id\":509},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ca6452d\"},{\"title\":\"Self-Exploration\",\"subtitle\":\"\",\"description\":\"<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/medical_12751971.svg\",\"id\":513},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"81a0197\"},{\"title\":\"Coping Strategies\",\"subtitle\":\"\",\"description\":\"<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/advisory-services_12963796.svg\",\"id\":517},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5a9c4f4\"},{\"title\":\"Goal Setting\",\"subtitle\":\"\",\"description\":\"<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/setup_917115.svg\",\"id\":521},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0381d8b\"},{\"title\":\"Relationship Improvement\",\"subtitle\":\"\",\"description\":\"<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/employee-benefit_9888459.svg\",\"id\":525},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5d28a9d\"},{\"title\":\"Skill Development\",\"subtitle\":\"\",\"description\":\"<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mindful_18810720.svg\",\"id\":529},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ee22b3d\"},{\"title\":\"Tailored Approaches\",\"subtitle\":\"\",\"description\":\"<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/structure_7287549.svg\",\"id\":533},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"9d17efb\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"870829e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"8f5a2f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"01c35ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6146, 537, '_wp_page_template', 'elementor_header_footer'),
(6148, 537, '_elementor_global_class_usage_indexed', '1'),
(6149, 537, '_elementor_edit_mode', 'builder'),
(6150, 537, '_elementor_template_type', 'wp-page'),
(6151, 537, '_elementor_version', '4.1.3'),
(6152, 537, '_elementor_pro_version', '4.1.1'),
(6153, 537, '_elementor_global_class_usage_indexed_preview', '1'),
(6154, 537, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6155, 537, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc1421c\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"fbe05c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"11c59e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"df4e00a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7673fe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"806e853\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychotherapy\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b609356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Individual therapy<\\/li>\\n \\t<li>Couples\\/marriage therapy<\\/li>\\n \\t<li>Family therapy<\\/li>\\n \\t<li>Child\\/teen therapy<\\/li>\\n \\t<li>Online therapy<\\/li>\\n \\t<li>COMMON SPECIALTIES &amp; approaches<\\/li>\\n \\t<li>Anxiety therapy<\\/li>\\n \\t<li>Cognitive behavioral therapy (CBT)<\\/li>\\n \\t<li>Depression counseling<\\/li>\\n \\t<li>Dialectical behavior therapy (DBT)<\\/li>\\n \\t<li>Grief &amp; loss counseling<\\/li>\\n \\t<li>Relational therapy<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15c408\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7b01183\",\"elType\":\"widget\",\"settings\":{\"title\":\"Therapy can be highly beneficial for mental health for several reasons:\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3d35599\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"09c417e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"d99ddf0\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Safe Space\",\"_id\":\"776845c\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/dimension_9728408.svg\",\"id\":504},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Emotional Support\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/friendship_4760671.svg\",\"id\":509},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ca6452d\"},{\"title\":\"Self-Exploration\",\"subtitle\":\"\",\"description\":\"<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/medical_12751971.svg\",\"id\":513},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"81a0197\"},{\"title\":\"Coping Strategies\",\"subtitle\":\"\",\"description\":\"<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/advisory-services_12963796.svg\",\"id\":517},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5a9c4f4\"},{\"title\":\"Goal Setting\",\"subtitle\":\"\",\"description\":\"<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/setup_917115.svg\",\"id\":521},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0381d8b\"},{\"title\":\"Relationship Improvement\",\"subtitle\":\"\",\"description\":\"<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/employee-benefit_9888459.svg\",\"id\":525},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5d28a9d\"},{\"title\":\"Skill Development\",\"subtitle\":\"\",\"description\":\"<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mindful_18810720.svg\",\"id\":529},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ee22b3d\"},{\"title\":\"Tailored Approaches\",\"subtitle\":\"\",\"description\":\"<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/structure_7287549.svg\",\"id\":533},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"9d17efb\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"870829e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"8f5a2f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"01c35ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6197, 541, '_wp_page_template', 'elementor_header_footer'),
(6186, 540, '_wp_page_template', 'elementor_header_footer'),
(6188, 540, '_elementor_global_class_usage_indexed', '1'),
(6189, 540, '_elementor_edit_mode', 'builder'),
(6190, 540, '_elementor_template_type', 'wp-page'),
(6191, 540, '_elementor_version', '4.1.3'),
(6192, 540, '_elementor_pro_version', '4.1.1'),
(6193, 540, '_elementor_global_class_usage_indexed_preview', '1'),
(6194, 540, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6195, 540, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc1421c\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"fbe05c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"11c59e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"df4e00a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7673fe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"806e853\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychotherapy\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b609356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Individual therapy<\\/li>\\n \\t<li>Couples\\/marriage therapy<\\/li>\\n \\t<li>Family therapy<\\/li>\\n \\t<li>Child\\/teen therapy<\\/li>\\n \\t<li>Online therapy<\\/li>\\n \\t<li>COMMON SPECIALTIES &amp; approaches<\\/li>\\n \\t<li>Anxiety therapy<\\/li>\\n \\t<li>Cognitive behavioral therapy (CBT)<\\/li>\\n \\t<li>Depression counseling<\\/li>\\n \\t<li>Dialectical behavior therapy (DBT)<\\/li>\\n \\t<li>Grief &amp; loss counseling<\\/li>\\n \\t<li>Relational therapy<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15c408\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7b01183\",\"elType\":\"widget\",\"settings\":{\"title\":\"Therapy can be highly beneficial for mental health for several reasons:\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3d35599\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"09c417e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"d99ddf0\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Safe Space\",\"_id\":\"776845c\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/dimension_9728408.svg\",\"id\":504},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Emotional Support\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/friendship_4760671.svg\",\"id\":509},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ca6452d\"},{\"title\":\"Self-Exploration\",\"subtitle\":\"\",\"description\":\"<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/medical_12751971.svg\",\"id\":513},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"81a0197\"},{\"title\":\"Coping Strategies\",\"subtitle\":\"\",\"description\":\"<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/advisory-services_12963796.svg\",\"id\":517},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5a9c4f4\"},{\"title\":\"Goal Setting\",\"subtitle\":\"\",\"description\":\"<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/setup_917115.svg\",\"id\":521},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0381d8b\"},{\"title\":\"Relationship Improvement\",\"subtitle\":\"\",\"description\":\"<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/employee-benefit_9888459.svg\",\"id\":525},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5d28a9d\"},{\"title\":\"Skill Development\",\"subtitle\":\"\",\"description\":\"<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mindful_18810720.svg\",\"id\":529},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ee22b3d\"},{\"title\":\"Tailored Approaches\",\"subtitle\":\"\",\"description\":\"<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/structure_7287549.svg\",\"id\":533},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"9d17efb\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"870829e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"8f5a2f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"01c35ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6196, 540, '_elementor_page_settings', 'a:0:{}'),
(6156, 537, '_elementor_page_settings', 'a:0:{}'),
(6894, 597, '_wp_page_template', 'elementor_header_footer'),
(6896, 597, '_elementor_global_class_usage_indexed', '1'),
(6897, 597, '_elementor_edit_mode', 'builder'),
(6898, 597, '_elementor_template_type', 'wp-page'),
(6899, 597, '_elementor_version', '4.1.3'),
(6900, 597, '_elementor_pro_version', '4.1.1'),
(6901, 597, '_elementor_global_class_usage_indexed_preview', '1'),
(6902, 597, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6903, 597, '_elementor_data', '[{\"id\":\"723c28e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"103e2d3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"00c4f2f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bdc0006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"00adcc8\"}]},\"elements\":[{\"id\":\"5b246aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0293850\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c43a09c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90cf249\"}],\"pp_display_conditions\":[{\"_id\":\"22db06d\"}]},\"elements\":[{\"id\":\"6c3d86b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f792d6f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Arizona\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"1b37468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arizona\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"841f41b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"7736eb9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Washington\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"f34a2a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Washington\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"315c520\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"c0bf036\",\"elType\":\"widget\",\"settings\":{\"address\":\"colorado\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"960777f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Colorado\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f15109\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"27d533e\",\"elType\":\"widget\",\"settings\":{\"address\":\"florida\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"97e54f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Florida\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f5247d6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"ef16923\",\"elType\":\"widget\",\"settings\":{\"address\":\"Oregon\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"e54df1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oregon\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6904, 597, '_elementor_page_settings', 'a:0:{}'),
(6905, 598, '_wp_page_template', 'elementor_header_footer'),
(6907, 598, '_elementor_global_class_usage_indexed', '1'),
(6908, 598, '_elementor_edit_mode', 'builder'),
(6909, 598, '_elementor_template_type', 'wp-page'),
(6910, 598, '_elementor_version', '4.1.3'),
(6911, 598, '_elementor_pro_version', '4.1.1'),
(6912, 598, '_elementor_global_class_usage_indexed_preview', '1'),
(6913, 598, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6914, 598, '_elementor_data', '[{\"id\":\"723c28e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"103e2d3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"00c4f2f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bdc0006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"00adcc8\"}]},\"elements\":[{\"id\":\"5b246aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0293850\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c43a09c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90cf249\"}],\"pp_display_conditions\":[{\"_id\":\"22db06d\"}]},\"elements\":[{\"id\":\"6c3d86b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f792d6f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Arizona\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"1b37468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arizona\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"841f41b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"7736eb9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Washington\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"f34a2a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Washington\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"315c520\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"c0bf036\",\"elType\":\"widget\",\"settings\":{\"address\":\"colorado\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"960777f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Colorado\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f15109\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"27d533e\",\"elType\":\"widget\",\"settings\":{\"address\":\"florida\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"97e54f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Florida\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f5247d6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"ef16923\",\"elType\":\"widget\",\"settings\":{\"address\":\"Oregon\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"e54df1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oregon\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6159, 538, '_wp_page_template', 'elementor_header_footer'),
(6161, 538, '_elementor_global_class_usage_indexed', '1'),
(6162, 538, '_elementor_edit_mode', 'builder'),
(6163, 538, '_elementor_template_type', 'wp-page'),
(6164, 538, '_elementor_version', '4.1.3'),
(6165, 538, '_elementor_pro_version', '4.1.1'),
(6166, 538, '_elementor_global_class_usage_indexed_preview', '1'),
(6167, 538, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6168, 538, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc1421c\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"fbe05c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"11c59e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"df4e00a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7673fe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"806e853\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychotherapy\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b609356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Individual therapy<\\/li>\\n \\t<li>Couples\\/marriage therapy<\\/li>\\n \\t<li>Family therapy<\\/li>\\n \\t<li>Child\\/teen therapy<\\/li>\\n \\t<li>Online therapy<\\/li>\\n \\t<li>COMMON SPECIALTIES &amp; approaches<\\/li>\\n \\t<li>Anxiety therapy<\\/li>\\n \\t<li>Cognitive behavioral therapy (CBT)<\\/li>\\n \\t<li>Depression counseling<\\/li>\\n \\t<li>Dialectical behavior therapy (DBT)<\\/li>\\n \\t<li>Grief &amp; loss counseling<\\/li>\\n \\t<li>Relational therapy<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15c408\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7b01183\",\"elType\":\"widget\",\"settings\":{\"title\":\"Therapy can be highly beneficial for mental health for several reasons:\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3d35599\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"09c417e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"d99ddf0\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Safe Space\",\"_id\":\"776845c\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/dimension_9728408.svg\",\"id\":504},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Emotional Support\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/friendship_4760671.svg\",\"id\":509},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ca6452d\"},{\"title\":\"Self-Exploration\",\"subtitle\":\"\",\"description\":\"<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/medical_12751971.svg\",\"id\":513},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"81a0197\"},{\"title\":\"Coping Strategies\",\"subtitle\":\"\",\"description\":\"<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/advisory-services_12963796.svg\",\"id\":517},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5a9c4f4\"},{\"title\":\"Goal Setting\",\"subtitle\":\"\",\"description\":\"<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/setup_917115.svg\",\"id\":521},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0381d8b\"},{\"title\":\"Relationship Improvement\",\"subtitle\":\"\",\"description\":\"<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/employee-benefit_9888459.svg\",\"id\":525},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5d28a9d\"},{\"title\":\"Skill Development\",\"subtitle\":\"\",\"description\":\"<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mindful_18810720.svg\",\"id\":529},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ee22b3d\"},{\"title\":\"Tailored Approaches\",\"subtitle\":\"\",\"description\":\"<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/structure_7287549.svg\",\"id\":533},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"9d17efb\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"870829e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"8f5a2f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"01c35ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6169, 538, '_elementor_page_settings', 'a:0:{}'),
(6870, 594, '_elementor_page_settings', 'a:0:{}'),
(6871, 595, '_wp_page_template', 'elementor_header_footer'),
(6873, 595, '_elementor_global_class_usage_indexed', '1'),
(6874, 595, '_elementor_edit_mode', 'builder'),
(6875, 595, '_elementor_template_type', 'wp-page'),
(6876, 595, '_elementor_version', '4.1.3'),
(6877, 595, '_elementor_pro_version', '4.1.1'),
(6878, 595, '_elementor_global_class_usage_indexed_preview', '1'),
(6879, 595, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6880, 595, '_elementor_data', '[{\"id\":\"723c28e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"103e2d3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"00c4f2f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bdc0006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"00adcc8\"}]},\"elements\":[{\"id\":\"5b246aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0293850\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c43a09c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90cf249\"}],\"pp_display_conditions\":[{\"_id\":\"22db06d\"}]},\"elements\":[{\"id\":\"6c3d86b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f792d6f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Arizona\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"1b37468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arizona\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"841f41b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"7736eb9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Washington\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"f34a2a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Washington\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"315c520\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"c0bf036\",\"elType\":\"widget\",\"settings\":{\"address\":\"colorado\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"960777f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Colorado\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f15109\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"27d533e\",\"elType\":\"widget\",\"settings\":{\"address\":\"florida\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"97e54f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Florida\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f5247d6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"ef16923\",\"elType\":\"widget\",\"settings\":{\"address\":\"Oregon\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"e54df1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oregon\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6881, 595, '_elementor_page_settings', 'a:0:{}'),
(6882, 596, '_wp_page_template', 'elementor_header_footer'),
(6884, 596, '_elementor_global_class_usage_indexed', '1'),
(6885, 596, '_elementor_edit_mode', 'builder'),
(6886, 596, '_elementor_template_type', 'wp-page'),
(6887, 596, '_elementor_version', '4.1.3'),
(6888, 596, '_elementor_pro_version', '4.1.1'),
(6889, 596, '_elementor_global_class_usage_indexed_preview', '1'),
(6890, 596, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6891, 596, '_elementor_data', '[{\"id\":\"723c28e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"103e2d3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"00c4f2f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bdc0006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"00adcc8\"}]},\"elements\":[{\"id\":\"5b246aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0293850\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c43a09c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90cf249\"}],\"pp_display_conditions\":[{\"_id\":\"22db06d\"}]},\"elements\":[{\"id\":\"6c3d86b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f792d6f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Arizona\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"1b37468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arizona\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"841f41b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"7736eb9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Washington\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"f34a2a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Washington\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"315c520\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"c0bf036\",\"elType\":\"widget\",\"settings\":{\"address\":\"colorado\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"960777f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Colorado\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f15109\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"27d533e\",\"elType\":\"widget\",\"settings\":{\"address\":\"florida\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"97e54f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Florida\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f5247d6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"ef16923\",\"elType\":\"widget\",\"settings\":{\"address\":\"Oregon\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"e54df1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oregon\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6172, 539, '_wp_page_template', 'elementor_header_footer'),
(6174, 539, '_elementor_global_class_usage_indexed', '1'),
(6175, 539, '_elementor_edit_mode', 'builder'),
(6176, 539, '_elementor_template_type', 'wp-page'),
(6177, 539, '_elementor_version', '4.1.3'),
(6178, 539, '_elementor_pro_version', '4.1.1'),
(6179, 539, '_elementor_global_class_usage_indexed_preview', '1'),
(6180, 539, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6181, 539, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc1421c\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"fbe05c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"11c59e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"df4e00a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7673fe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"806e853\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychotherapy\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b609356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Individual therapy<\\/li>\\n \\t<li>Couples\\/marriage therapy<\\/li>\\n \\t<li>Family therapy<\\/li>\\n \\t<li>Child\\/teen therapy<\\/li>\\n \\t<li>Online therapy<\\/li>\\n \\t<li>COMMON SPECIALTIES &amp; approaches<\\/li>\\n \\t<li>Anxiety therapy<\\/li>\\n \\t<li>Cognitive behavioral therapy (CBT)<\\/li>\\n \\t<li>Depression counseling<\\/li>\\n \\t<li>Dialectical behavior therapy (DBT)<\\/li>\\n \\t<li>Grief &amp; loss counseling<\\/li>\\n \\t<li>Relational therapy<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15c408\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7b01183\",\"elType\":\"widget\",\"settings\":{\"title\":\"Therapy can be highly beneficial for mental health for several reasons:\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3d35599\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"09c417e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"d99ddf0\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Safe Space\",\"_id\":\"776845c\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/dimension_9728408.svg\",\"id\":504},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Emotional Support\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/friendship_4760671.svg\",\"id\":509},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ca6452d\"},{\"title\":\"Self-Exploration\",\"subtitle\":\"\",\"description\":\"<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/medical_12751971.svg\",\"id\":513},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"81a0197\"},{\"title\":\"Coping Strategies\",\"subtitle\":\"\",\"description\":\"<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/advisory-services_12963796.svg\",\"id\":517},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5a9c4f4\"},{\"title\":\"Goal Setting\",\"subtitle\":\"\",\"description\":\"<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/setup_917115.svg\",\"id\":521},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0381d8b\"},{\"title\":\"Relationship Improvement\",\"subtitle\":\"\",\"description\":\"<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/employee-benefit_9888459.svg\",\"id\":525},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5d28a9d\"},{\"title\":\"Skill Development\",\"subtitle\":\"\",\"description\":\"<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mindful_18810720.svg\",\"id\":529},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ee22b3d\"},{\"title\":\"Tailored Approaches\",\"subtitle\":\"\",\"description\":\"<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/structure_7287549.svg\",\"id\":533},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"9d17efb\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"870829e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"8f5a2f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"01c35ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6847, 592, '_elementor_page_settings', 'a:0:{}'),
(6848, 593, '_wp_page_template', 'elementor_header_footer'),
(6850, 593, '_elementor_global_class_usage_indexed', '1'),
(6851, 593, '_elementor_edit_mode', 'builder'),
(6852, 593, '_elementor_template_type', 'wp-page'),
(6853, 593, '_elementor_version', '4.1.3'),
(6854, 593, '_elementor_pro_version', '4.1.1'),
(6855, 593, '_elementor_global_class_usage_indexed_preview', '1'),
(6856, 593, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6857, 593, '_elementor_data', '[{\"id\":\"723c28e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"103e2d3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"00c4f2f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bdc0006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"00adcc8\"}]},\"elements\":[{\"id\":\"5b246aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0293850\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c43a09c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90cf249\"}],\"pp_display_conditions\":[{\"_id\":\"22db06d\"}]},\"elements\":[{\"id\":\"6c3d86b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f792d6f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Arizona\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"1b37468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arizona\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"841f41b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"7736eb9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Washington\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"f34a2a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Washington\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"315c520\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"c0bf036\",\"elType\":\"widget\",\"settings\":{\"address\":\"colorado\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"960777f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Colorado\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f15109\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"27d533e\",\"elType\":\"widget\",\"settings\":{\"address\":\"florida\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"97e54f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Florida\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f5247d6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"ef16923\",\"elType\":\"widget\",\"settings\":{\"address\":\"Oregon\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"e54df1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oregon\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7753, 662, '_elementor_data', '[{\"id\":\"e4108d8\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"80f1eca\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6941206\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"145d2e0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"book_appoinment\",\"pp_display_conditions\":[{\"_id\":\"d16793b\"}]},\"elements\":[{\"id\":\"2e75bdb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"959aa71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a35a9a7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe5b25e\"}],\"pp_display_conditions\":[{\"_id\":\"bb96df4\"}]},\"elements\":[{\"id\":\"29e028c\",\"elType\":\"widget\",\"settings\":{\"widget_title\":\"Book an Appointment\",\"show_progress_bar\":\"\",\"theme_preset\":\"minimal_white\",\"primary_color\":\"#41322d\",\"secondary_color\":\"#ce2162\",\"pp_display_conditions\":[{\"_id\":\"86eaabc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"aab_booking_widget\"}],\"isInner\":true}],\"isInner\":false}]'),
(6860, 594, '_wp_page_template', 'elementor_header_footer'),
(6862, 594, '_elementor_global_class_usage_indexed', '1'),
(6863, 594, '_elementor_edit_mode', 'builder'),
(6864, 594, '_elementor_template_type', 'wp-page'),
(6865, 594, '_elementor_version', '4.1.3'),
(6866, 594, '_elementor_pro_version', '4.1.1'),
(6867, 594, '_elementor_global_class_usage_indexed_preview', '1'),
(6868, 594, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6869, 594, '_elementor_data', '[{\"id\":\"723c28e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"103e2d3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"00c4f2f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bdc0006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"00adcc8\"}]},\"elements\":[{\"id\":\"5b246aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0293850\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c43a09c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90cf249\"}],\"pp_display_conditions\":[{\"_id\":\"22db06d\"}]},\"elements\":[{\"id\":\"6c3d86b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f792d6f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Arizona\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"1b37468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arizona\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"841f41b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"7736eb9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Washington\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"f34a2a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Washington\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"315c520\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"c0bf036\",\"elType\":\"widget\",\"settings\":{\"address\":\"colorado\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"960777f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Colorado\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f15109\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"27d533e\",\"elType\":\"widget\",\"settings\":{\"address\":\"florida\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"97e54f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Florida\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f5247d6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"ef16923\",\"elType\":\"widget\",\"settings\":{\"address\":\"Oregon\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"e54df1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oregon\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6199, 541, '_elementor_global_class_usage_indexed', '1'),
(6200, 541, '_elementor_edit_mode', 'builder'),
(6201, 541, '_elementor_template_type', 'wp-page'),
(6202, 541, '_elementor_version', '4.1.3'),
(6203, 541, '_elementor_pro_version', '4.1.1'),
(6204, 541, '_elementor_global_class_usage_indexed_preview', '1'),
(6205, 541, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6206, 541, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc1421c\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"fbe05c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"11c59e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"df4e00a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7673fe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"806e853\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychotherapy\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b609356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Individual therapy<\\/li>\\n \\t<li>Couples\\/marriage therapy<\\/li>\\n \\t<li>Family therapy<\\/li>\\n \\t<li>Child\\/teen therapy<\\/li>\\n \\t<li>Online therapy<\\/li>\\n \\t<li>COMMON SPECIALTIES &amp; approaches<\\/li>\\n \\t<li>Anxiety therapy<\\/li>\\n \\t<li>Cognitive behavioral therapy (CBT)<\\/li>\\n \\t<li>Depression counseling<\\/li>\\n \\t<li>Dialectical behavior therapy (DBT)<\\/li>\\n \\t<li>Grief &amp; loss counseling<\\/li>\\n \\t<li>Relational therapy<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15c408\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7b01183\",\"elType\":\"widget\",\"settings\":{\"title\":\"Therapy can be highly beneficial for mental health for several reasons:\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3d35599\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"09c417e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"d99ddf0\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Safe Space\",\"_id\":\"776845c\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/dimension_9728408.svg\",\"id\":504},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Emotional Support\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/friendship_4760671.svg\",\"id\":509},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ca6452d\"},{\"title\":\"Self-Exploration\",\"subtitle\":\"\",\"description\":\"<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/medical_12751971.svg\",\"id\":513},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"81a0197\"},{\"title\":\"Coping Strategies\",\"subtitle\":\"\",\"description\":\"<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/advisory-services_12963796.svg\",\"id\":517},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5a9c4f4\"},{\"title\":\"Goal Setting\",\"subtitle\":\"\",\"description\":\"<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/setup_917115.svg\",\"id\":521},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0381d8b\"},{\"title\":\"Relationship Improvement\",\"subtitle\":\"\",\"description\":\"<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/employee-benefit_9888459.svg\",\"id\":525},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5d28a9d\"},{\"title\":\"Skill Development\",\"subtitle\":\"\",\"description\":\"<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mindful_18810720.svg\",\"id\":529},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ee22b3d\"},{\"title\":\"Tailored Approaches\",\"subtitle\":\"\",\"description\":\"<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/structure_7287549.svg\",\"id\":533},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"9d17efb\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"870829e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"8f5a2f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"01c35ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6207, 541, '_elementor_page_settings', 'a:0:{}'),
(6208, 542, '_wp_page_template', 'elementor_header_footer'),
(6210, 542, '_elementor_global_class_usage_indexed', '1'),
(6211, 542, '_elementor_edit_mode', 'builder'),
(6212, 542, '_elementor_template_type', 'wp-page'),
(6213, 542, '_elementor_version', '4.1.3'),
(6214, 542, '_elementor_pro_version', '4.1.1'),
(6215, 542, '_elementor_global_class_usage_indexed_preview', '1'),
(6216, 542, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6217, 542, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc1421c\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"fbe05c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"11c59e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"df4e00a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7673fe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"806e853\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychotherapy\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b609356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Individual therapy<\\/li>\\n \\t<li>Couples\\/marriage therapy<\\/li>\\n \\t<li>Family therapy<\\/li>\\n \\t<li>Child\\/teen therapy<\\/li>\\n \\t<li>Online therapy<\\/li>\\n \\t<li>COMMON SPECIALTIES &amp; approaches<\\/li>\\n \\t<li>Anxiety therapy<\\/li>\\n \\t<li>Cognitive behavioral therapy (CBT)<\\/li>\\n \\t<li>Depression counseling<\\/li>\\n \\t<li>Dialectical behavior therapy (DBT)<\\/li>\\n \\t<li>Grief &amp; loss counseling<\\/li>\\n \\t<li>Relational therapy<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15c408\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7b01183\",\"elType\":\"widget\",\"settings\":{\"title\":\"Therapy can be highly beneficial for mental health for several reasons:\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3d35599\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"09c417e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"d99ddf0\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Safe Space\",\"_id\":\"776845c\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/dimension_9728408.svg\",\"id\":504},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Emotional Support\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/friendship_4760671.svg\",\"id\":509},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ca6452d\"},{\"title\":\"Self-Exploration\",\"subtitle\":\"\",\"description\":\"<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/medical_12751971.svg\",\"id\":513},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"81a0197\"},{\"title\":\"Coping Strategies\",\"subtitle\":\"\",\"description\":\"<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/advisory-services_12963796.svg\",\"id\":517},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5a9c4f4\"},{\"title\":\"Goal Setting\",\"subtitle\":\"\",\"description\":\"<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/setup_917115.svg\",\"id\":521},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0381d8b\"},{\"title\":\"Relationship Improvement\",\"subtitle\":\"\",\"description\":\"<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/employee-benefit_9888459.svg\",\"id\":525},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5d28a9d\"},{\"title\":\"Skill Development\",\"subtitle\":\"\",\"description\":\"<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mindful_18810720.svg\",\"id\":529},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ee22b3d\"},{\"title\":\"Tailored Approaches\",\"subtitle\":\"\",\"description\":\"<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/structure_7287549.svg\",\"id\":533},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"9d17efb\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"870829e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"8f5a2f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"01c35ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(8419, 710, '_wp_page_template', 'elementor_header_footer'),
(8420, 710, '_elementor_global_class_usage_indexed', '1'),
(8421, 710, '_elementor_edit_mode', 'builder'),
(8422, 710, '_elementor_template_type', 'wp-page'),
(8423, 710, '_elementor_version', '4.1.3'),
(8424, 710, '_elementor_pro_version', '4.1.1'),
(8425, 710, '_elementor_global_class_usage_indexed_preview', '1'),
(8426, 710, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8427, 710, '_elementor_data', '[{\"id\":\"115307a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}]},\"elements\":[{\"id\":\"ad9ef8e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"a845a05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b0f32e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"fe0e647\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychiatric Evaluation\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52591bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.<\\/p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c94d6c3\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"232f61d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"5b8085d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"79e69b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication & Nutritional Management\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b353497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p><p>Nutritional management focuses on the role of diet and nutrition in mental health.<\\/p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0c2dc14\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f01dce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"564578a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1387059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Enhance the effectiveness of medications through optimal nutrition.<\\/li><li>Reduce side effects of medications by addressing nutritional deficiencies.<\\/li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bac35f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\",\"pp_display_conditions\":[{\"_id\":\"35fd2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc1421c\",\"elType\":\"container\",\"settings\":{\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7d169f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"83bdbdc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"50ac030\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d3b02fe\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"fbe05c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"none\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"11c59e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"df4e00a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fc58e2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e7673fe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b38273e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c330858\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e19cc16\"}],\"pp_display_conditions\":[{\"_id\":\"1425e5a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"806e853\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychotherapy\",\"pp_display_conditions\":[{\"_id\":\"e26255b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b609356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Individual therapy<\\/li>\\n \\t<li>Couples\\/marriage therapy<\\/li>\\n \\t<li>Family therapy<\\/li>\\n \\t<li>Child\\/teen therapy<\\/li>\\n \\t<li>Online therapy<\\/li>\\n \\t<li>COMMON SPECIALTIES &amp; approaches<\\/li>\\n \\t<li>Anxiety therapy<\\/li>\\n \\t<li>Cognitive behavioral therapy (CBT)<\\/li>\\n \\t<li>Depression counseling<\\/li>\\n \\t<li>Dialectical behavior therapy (DBT)<\\/li>\\n \\t<li>Grief &amp; loss counseling<\\/li>\\n \\t<li>Relational therapy<\\/li>\\n<\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"03829ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15c408\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7b01183\",\"elType\":\"widget\",\"settings\":{\"title\":\"Therapy can be highly beneficial for mental health for several reasons:\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3d35599\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"09c417e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a14e8b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"10b5a37\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1c27156\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"598296d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"d99ddf0\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Safe Space\",\"_id\":\"776845c\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/dimension_9728408.svg\",\"id\":504},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Emotional Support\",\"subtitle\":\"\",\"description\":\"<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/friendship_4760671.svg\",\"id\":509},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ca6452d\"},{\"title\":\"Self-Exploration\",\"subtitle\":\"\",\"description\":\"<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/medical_12751971.svg\",\"id\":513},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"81a0197\"},{\"title\":\"Coping Strategies\",\"subtitle\":\"\",\"description\":\"<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/advisory-services_12963796.svg\",\"id\":517},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5a9c4f4\"},{\"title\":\"Goal Setting\",\"subtitle\":\"\",\"description\":\"<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/setup_917115.svg\",\"id\":521},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"0381d8b\"},{\"title\":\"Relationship Improvement\",\"subtitle\":\"\",\"description\":\"<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/employee-benefit_9888459.svg\",\"id\":525},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"5d28a9d\"},{\"title\":\"Skill Development\",\"subtitle\":\"\",\"description\":\"<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mindful_18810720.svg\",\"id\":529},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"ee22b3d\"},{\"title\":\"Tailored Approaches\",\"subtitle\":\"\",\"description\":\"<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/structure_7287549.svg\",\"id\":533},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"9d17efb\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"870829e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"},{\"id\":\"8f5a2f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"01c35ba\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6826, 591, '_wp_page_template', 'elementor_header_footer'),
(6828, 591, '_elementor_global_class_usage_indexed', '1'),
(6829, 591, '_elementor_edit_mode', 'builder'),
(6830, 591, '_elementor_template_type', 'wp-page'),
(6831, 591, '_elementor_version', '4.1.3'),
(6832, 591, '_elementor_pro_version', '4.1.1'),
(6833, 591, '_elementor_global_class_usage_indexed_preview', '1'),
(6834, 591, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6835, 591, '_elementor_data', '[{\"id\":\"723c28e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"103e2d3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"00c4f2f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bdc0006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"00adcc8\"}]},\"elements\":[{\"id\":\"5b246aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0293850\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c43a09c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90cf249\"}],\"pp_display_conditions\":[{\"_id\":\"22db06d\"}]},\"elements\":[{\"id\":\"6c3d86b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"f792d6f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Arizona\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"1b37468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arizona\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"841f41b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"7736eb9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Washington\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"f34a2a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Washington\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"315c520\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"c0bf036\",\"elType\":\"widget\",\"settings\":{\"address\":\"colorado\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"960777f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Colorado\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f15109\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"27d533e\",\"elType\":\"widget\",\"settings\":{\"address\":\"florida\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"97e54f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Florida\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f5247d6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"ef16923\",\"elType\":\"widget\",\"settings\":{\"address\":\"Oregon\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"e54df1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oregon\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6836, 591, '_elementor_page_settings', 'a:0:{}'),
(6837, 592, '_wp_page_template', 'elementor_header_footer'),
(6839, 592, '_elementor_global_class_usage_indexed', '1'),
(6840, 592, '_elementor_edit_mode', 'builder'),
(6841, 592, '_elementor_template_type', 'wp-page'),
(6842, 592, '_elementor_version', '4.1.3'),
(6843, 592, '_elementor_pro_version', '4.1.1'),
(6844, 592, '_elementor_global_class_usage_indexed_preview', '1'),
(6845, 592, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6846, 592, '_elementor_data', '[{\"id\":\"723c28e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"103e2d3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"00c4f2f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bdc0006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"00adcc8\"}]},\"elements\":[{\"id\":\"5b246aa\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0293850\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c43a09c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90cf249\"}],\"pp_display_conditions\":[{\"_id\":\"22db06d\"}]},\"elements\":[{\"id\":\"6c3d86b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"f792d6f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Arizona\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"1b37468\",\"elType\":\"widget\",\"settings\":{\"title\":\"Arizona\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"841f41b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"7736eb9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Washington\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"f34a2a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Washington\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"315c520\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"c0bf036\",\"elType\":\"widget\",\"settings\":{\"address\":\"colorado\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"960777f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Colorado\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f15109\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"27d533e\",\"elType\":\"widget\",\"settings\":{\"address\":\"florida\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"97e54f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Florida\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f5247d6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f409a30\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"63c3c59\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fb03d2e\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#DFDFDF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b0feb7a\"}]},\"elements\":[{\"id\":\"ef16923\",\"elType\":\"widget\",\"settings\":{\"address\":\"Oregon\",\"pp_display_conditions\":[{\"_id\":\"9c5a0c5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"},{\"id\":\"e54df1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oregon\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"f089321\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6222, 543, '_edit_last', '1'),
(6223, 543, '_edit_lock', '1781694516:1'),
(6224, 543, '_wp_page_template', 'elementor_header_footer'),
(6225, 543, 'site-sidebar-layout', 'no-sidebar'),
(6230, 543, 'theme-transparent-header-meta', 'default'),
(6227, 543, 'ast-site-content-layout', 'full-width-container'),
(6228, 543, 'site-content-style', 'default'),
(6229, 543, 'site-sidebar-style', 'default'),
(6231, 543, 'astra-migrate-meta-layouts', 'set'),
(6232, 545, '_menu_item_type', 'post_type'),
(6233, 545, '_menu_item_menu_item_parent', '0'),
(6234, 545, '_menu_item_object_id', '543'),
(6235, 545, '_menu_item_object', 'page'),
(6236, 545, '_menu_item_target', ''),
(6237, 545, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(6238, 545, '_menu_item_xfn', ''),
(6239, 545, '_menu_item_url', ''),
(6246, 26, '_wp_old_date', '2026-06-16'),
(6241, 27, '_wp_old_date', '2026-06-16'),
(6242, 33, '_wp_old_date', '2026-06-16'),
(6243, 28, '_wp_old_date', '2026-06-16'),
(6244, 30, '_wp_old_date', '2026-06-16'),
(6245, 24, '_wp_old_date', '2026-06-16'),
(6248, 543, '_elementor_global_class_usage_indexed', '1'),
(6249, 543, '_elementor_edit_mode', 'builder'),
(6250, 543, '_astra_content_layout_flag', 'disabled'),
(6252, 543, 'ast-title-bar-display', 'disabled'),
(6253, 543, 'ast-featured-img', 'disabled'),
(6254, 543, '_elementor_template_type', 'wp-page'),
(6255, 543, '_elementor_version', '4.1.3'),
(6256, 543, '_elementor_pro_version', '4.1.1'),
(6280, 543, '_elementor_data', '[{\"id\":\"da73fa4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d02edf6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4e16dda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31fbd95\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fea417b\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]}},\"elements\":[{\"id\":\"4d9a2fd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d6765c8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bfc4e15\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b820045\"}],\"pp_display_conditions\":[{\"_id\":\"e129900\",\"pp_condition_device_type_value\":\"mobile\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fdb1f51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently Asked Questions \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5c91e8e\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d893c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please reach us at <a href=\\\"mailto:info@optimalmentalwellness.org\\\">info@optimalmentalwellness.org<\\/a> if you cannot find an answer to your question.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e110c47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"02985d8\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Do you accept insurance?\",\"_id\":\"235e06a\",\"faq_answer\":\"<p>Our office is currently in network with:<\\/p><ul><li>Aetna<\\/li><li>Cigna<\\/li><li>Oscar<\\/li><li>United Health Care<\\/li><\\/ul><p>** All appointments utilizing insurance, must have insurance submitted and verified two days prior to appointment date. There is no exception.**<\\/p>\"},{\"tab_title\":\"Do you provide self pay options?\",\"_id\":\"3543826\",\"faq_answer\":\"<p>No Insurance? No Problem.<\\/p><p>Cash Pay rates are as followed:<\\/p><ul><li>$200 Initial evaluation 60 minutes (Mandatory for all NEW patients)<\\/li><li>$125 Follow-up appt 30 minutes (medication adjustments\\/refills)<\\/li><li>$65 Psychotherapy add on to follow up 45 mins<\\/li><li>$45 Psychotherapy add on to follow up 30 mins<\\/li><li>$135 Psychotherapy 50 mins<\\/li><\\/ul>\"},{\"tab_title\":\"Do you prescribe controlled substances?\",\"faq_answer\":\"<p>We do prescribe some controlled substances depending on your diagnosis.<\\/p>\",\"_id\":\"6f4f62a\"},{\"tab_title\":\"Do you accept students for clinical hours?\",\"faq_answer\":\"<p>We do prescribe some controlled substances depending on your diagnosis.<\\/p>\",\"_id\":\"0758f4e\"}],\"faqs_items_bottom_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"faq_items_border_color\":\"#E3E9F0\",\"faq_items_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"question_bg_color\":\"#FFFFFF\",\"question_typography_typography\":\"custom\",\"question_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"question_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"answer_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"0541a67\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"question_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"faq_items_border_color\":\"\",\"question_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"question_bg_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"question_text_color_active\":\"globals\\/colors?id=astglobalcolor4\",\"question_bg_color_active\":\"globals\\/colors?id=astglobalcolor0\",\"answer_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"question_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-faq\"}],\"isInner\":true}],\"isInner\":true}]'),
(6258, 543, '_elementor_global_class_usage_indexed_preview', '1'),
(6259, 543, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6260, 546, '_wp_page_template', 'elementor_header_footer'),
(6262, 546, '_elementor_global_class_usage_indexed', '1'),
(6263, 546, '_elementor_edit_mode', 'builder'),
(6264, 546, '_elementor_template_type', 'wp-page'),
(6265, 546, '_elementor_version', '4.1.3'),
(6266, 546, '_elementor_pro_version', '4.1.1'),
(6267, 546, '_elementor_page_settings', 'a:0:{}'),
(6268, 546, '_elementor_global_class_usage_indexed_preview', '1'),
(6269, 546, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6270, 547, '_wp_page_template', 'elementor_header_footer'),
(6272, 547, '_elementor_global_class_usage_indexed', '1'),
(6273, 547, '_elementor_edit_mode', 'builder'),
(6274, 547, '_elementor_template_type', 'wp-page'),
(6275, 547, '_elementor_version', '4.1.3'),
(6276, 547, '_elementor_pro_version', '4.1.1'),
(6277, 547, '_elementor_page_settings', 'a:0:{}'),
(6278, 547, '_elementor_global_class_usage_indexed_preview', '1'),
(6279, 547, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6281, 548, '_wp_page_template', 'elementor_header_footer'),
(6283, 548, '_elementor_global_class_usage_indexed', '1'),
(6284, 548, '_elementor_edit_mode', 'builder'),
(6285, 548, '_elementor_template_type', 'wp-page'),
(6286, 548, '_elementor_version', '4.1.3'),
(6287, 548, '_elementor_pro_version', '4.1.1'),
(6288, 548, '_elementor_global_class_usage_indexed_preview', '1'),
(6289, 548, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6290, 548, '_elementor_data', '[{\"id\":\"da73fa4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d02edf6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4e16dda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31fbd95\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fea417b\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d9a2fd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d6765c8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bfc4e15\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b820045\"}],\"pp_display_conditions\":[{\"_id\":\"e129900\",\"pp_condition_device_type_value\":\"mobile\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fdb1f51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently Asked Questions \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5c91e8e\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02985d8\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"How do I know if my anxiety needs professional treatment?\",\"_id\":\"235e06a\",\"faq_answer\":\"<p>If anxiety interferes with your sleep, work, relationships, or daily activities, or if you find yourself avoiding things you used to enjoy, it\'s time to seek help. You don\'t need to wait until things feel unbearable; earlier treatment often means faster relief.<\\/p>\"},{\"tab_title\":\"What types of anxiety disorders do you treat?\",\"_id\":\"3543826\",\"faq_answer\":\"<p>We treat generalized anxiety disorder (GAD), panic disorder, social anxiety disorder, phobias, and anxiety that occurs alongside other conditions like depression or ADHD.<\\/p>\"},{\"tab_title\":\"Will I need medication for my anxiety?\",\"faq_answer\":\"<p>Not necessarily. Some patients benefit most from therapy, others from medication, and many from a combination of both. We\'ll discuss all your options and build a plan that aligns with your preferences and goals.<\\/p>\",\"_id\":\"aceacce\"},{\"tab_title\":\"Are anxiety medications addictive?\",\"faq_answer\":\"<p>Most first-line anxiety medications, such as SSRIs and SNRIs, are not habit-forming. Some short-term medications require more careful use, and we\'ll always explain the benefits and risks of any medication we recommend so you can make an informed decision.<\\/p>\",\"_id\":\"83afa79\"},{\"tab_title\":\"How long does anxiety treatment take to work?\",\"faq_answer\":\"<p>Many patients begin noticing improvement within a few weeks of starting treatment, with continued gains over the following months. We monitor your progress closely and adjust your plan as needed.<\\/p>\",\"_id\":\"7b2ef68\"}],\"faqs_items_bottom_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"faq_items_border_color\":\"#E3E9F0\",\"faq_items_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"question_bg_color\":\"#FFFFFF\",\"question_typography_typography\":\"custom\",\"question_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"question_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"answer_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"0541a67\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"question_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"faq_items_border_color\":\"\",\"question_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"question_bg_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"question_text_color_active\":\"globals\\/colors?id=astglobalcolor4\",\"question_bg_color_active\":\"globals\\/colors?id=astglobalcolor0\",\"answer_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-faq\"}],\"isInner\":true}],\"isInner\":true}]'),
(6315, 551, '_wp_page_template', 'elementor_header_footer'),
(6293, 549, '_wp_page_template', 'elementor_header_footer'),
(6295, 549, '_elementor_global_class_usage_indexed', '1'),
(6296, 549, '_elementor_edit_mode', 'builder');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6297, 549, '_elementor_template_type', 'wp-page'),
(6298, 549, '_elementor_version', '4.1.3'),
(6299, 549, '_elementor_pro_version', '4.1.1'),
(6300, 549, '_elementor_global_class_usage_indexed_preview', '1'),
(6301, 549, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6302, 549, '_elementor_data', '[{\"id\":\"da73fa4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d02edf6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4e16dda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31fbd95\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fea417b\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d9a2fd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d6765c8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bfc4e15\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b820045\"}],\"pp_display_conditions\":[{\"_id\":\"e129900\",\"pp_condition_device_type_value\":\"mobile\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fdb1f51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently Asked Questions \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5c91e8e\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02985d8\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"How do I know if my anxiety needs professional treatment?\",\"_id\":\"235e06a\",\"faq_answer\":\"<p>If anxiety interferes with your sleep, work, relationships, or daily activities, or if you find yourself avoiding things you used to enjoy, it\'s time to seek help. You don\'t need to wait until things feel unbearable; earlier treatment often means faster relief.<\\/p>\"},{\"tab_title\":\"What types of anxiety disorders do you treat?\",\"_id\":\"3543826\",\"faq_answer\":\"<p>We treat generalized anxiety disorder (GAD), panic disorder, social anxiety disorder, phobias, and anxiety that occurs alongside other conditions like depression or ADHD.<\\/p>\"},{\"tab_title\":\"Will I need medication for my anxiety?\",\"faq_answer\":\"<p>Not necessarily. Some patients benefit most from therapy, others from medication, and many from a combination of both. We\'ll discuss all your options and build a plan that aligns with your preferences and goals.<\\/p>\",\"_id\":\"aceacce\"},{\"tab_title\":\"Are anxiety medications addictive?\",\"faq_answer\":\"<p>Most first-line anxiety medications, such as SSRIs and SNRIs, are not habit-forming. Some short-term medications require more careful use, and we\'ll always explain the benefits and risks of any medication we recommend so you can make an informed decision.<\\/p>\",\"_id\":\"83afa79\"},{\"tab_title\":\"How long does anxiety treatment take to work?\",\"faq_answer\":\"<p>Many patients begin noticing improvement within a few weeks of starting treatment, with continued gains over the following months. We monitor your progress closely and adjust your plan as needed.<\\/p>\",\"_id\":\"7b2ef68\"}],\"faqs_items_bottom_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"faq_items_border_color\":\"#E3E9F0\",\"faq_items_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"question_bg_color\":\"#FFFFFF\",\"question_typography_typography\":\"custom\",\"question_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"question_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"answer_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"0541a67\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"question_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"faq_items_border_color\":\"\",\"question_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"question_bg_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"question_text_color_active\":\"globals\\/colors?id=astglobalcolor4\",\"question_bg_color_active\":\"globals\\/colors?id=astglobalcolor0\",\"answer_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-faq\"}],\"isInner\":true}],\"isInner\":true}]'),
(6303, 549, '_elementor_page_settings', 'a:0:{}'),
(6304, 550, '_wp_page_template', 'elementor_header_footer'),
(6306, 550, '_elementor_global_class_usage_indexed', '1'),
(6307, 550, '_elementor_edit_mode', 'builder'),
(6308, 550, '_elementor_template_type', 'wp-page'),
(6309, 550, '_elementor_version', '4.1.3'),
(6310, 550, '_elementor_pro_version', '4.1.1'),
(6311, 550, '_elementor_global_class_usage_indexed_preview', '1'),
(6312, 550, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6313, 550, '_elementor_data', '[{\"id\":\"da73fa4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d02edf6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4e16dda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31fbd95\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fea417b\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d9a2fd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d6765c8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bfc4e15\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b820045\"}],\"pp_display_conditions\":[{\"_id\":\"e129900\",\"pp_condition_device_type_value\":\"mobile\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fdb1f51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently Asked Questions \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5c91e8e\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"02985d8\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"How do I know if my anxiety needs professional treatment?\",\"_id\":\"235e06a\",\"faq_answer\":\"<p>If anxiety interferes with your sleep, work, relationships, or daily activities, or if you find yourself avoiding things you used to enjoy, it\'s time to seek help. You don\'t need to wait until things feel unbearable; earlier treatment often means faster relief.<\\/p>\"},{\"tab_title\":\"What types of anxiety disorders do you treat?\",\"_id\":\"3543826\",\"faq_answer\":\"<p>We treat generalized anxiety disorder (GAD), panic disorder, social anxiety disorder, phobias, and anxiety that occurs alongside other conditions like depression or ADHD.<\\/p>\"},{\"tab_title\":\"Will I need medication for my anxiety?\",\"faq_answer\":\"<p>Not necessarily. Some patients benefit most from therapy, others from medication, and many from a combination of both. We\'ll discuss all your options and build a plan that aligns with your preferences and goals.<\\/p>\",\"_id\":\"aceacce\"},{\"tab_title\":\"Are anxiety medications addictive?\",\"faq_answer\":\"<p>Most first-line anxiety medications, such as SSRIs and SNRIs, are not habit-forming. Some short-term medications require more careful use, and we\'ll always explain the benefits and risks of any medication we recommend so you can make an informed decision.<\\/p>\",\"_id\":\"83afa79\"},{\"tab_title\":\"How long does anxiety treatment take to work?\",\"faq_answer\":\"<p>Many patients begin noticing improvement within a few weeks of starting treatment, with continued gains over the following months. We monitor your progress closely and adjust your plan as needed.<\\/p>\",\"_id\":\"7b2ef68\"}],\"faqs_items_bottom_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"faq_items_border_color\":\"#E3E9F0\",\"faq_items_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"question_bg_color\":\"#FFFFFF\",\"question_typography_typography\":\"custom\",\"question_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"question_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"answer_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"0541a67\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"question_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"faq_items_border_color\":\"\",\"question_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"question_bg_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"question_text_color_active\":\"globals\\/colors?id=astglobalcolor4\",\"question_bg_color_active\":\"globals\\/colors?id=astglobalcolor0\",\"answer_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-faq\"}],\"isInner\":true}],\"isInner\":true}]'),
(6314, 550, '_elementor_page_settings', 'a:0:{}'),
(6317, 551, '_elementor_global_class_usage_indexed', '1'),
(6318, 551, '_elementor_edit_mode', 'builder'),
(6319, 551, '_elementor_template_type', 'wp-page'),
(6320, 551, '_elementor_version', '4.1.3'),
(6321, 551, '_elementor_pro_version', '4.1.1'),
(6322, 551, '_elementor_global_class_usage_indexed_preview', '1'),
(6323, 551, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6324, 551, '_elementor_data', '[{\"id\":\"da73fa4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d02edf6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4e16dda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31fbd95\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fea417b\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]}},\"elements\":[{\"id\":\"4d9a2fd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d6765c8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bfc4e15\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b820045\"}],\"pp_display_conditions\":[{\"_id\":\"e129900\",\"pp_condition_device_type_value\":\"mobile\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fdb1f51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently Asked Questions \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5c91e8e\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d893c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please reach us at <a href=\\\"mailto:info@optimalmentalwellness.org\\\">info@optimalmentalwellness.org<\\/a> if you cannot find an answer to your question.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e110c47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"02985d8\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Do you accept insurance?\",\"_id\":\"235e06a\",\"faq_answer\":\"<p>Our office is currently in network with:<\\/p><ul><li>Aetna<\\/li><li>Cigna<\\/li><li>Oscar<\\/li><li>United Health Care<\\/li><\\/ul><p>** All appointments utilizing insurance, must have insurance submitted and verified two days prior to appointment date. There is no exception.**<\\/p>\"},{\"tab_title\":\"Do you provide self pay options?\",\"_id\":\"3543826\",\"faq_answer\":\"<p>No Insurance? No Problem.<\\/p><p>Cash Pay rates are as followed:<\\/p><ul><li>$200 Initial evaluation 60 minutes (Mandatory for all NEW patients)<\\/li><li>$125 Follow-up appt 30 minutes (medication adjustments\\/refills)<\\/li><li>$65 Psychotherapy add on to follow up 45 mins<\\/li><li>$45 Psychotherapy add on to follow up 30 mins<\\/li><li>$135 Psychotherapy 50 mins<\\/li><\\/ul>\"},{\"tab_title\":\"Do you prescribe controlled substances?\",\"faq_answer\":\"We do prescribe some controlled substances depending on your diagnosis.\",\"_id\":\"6f4f62a\"},{\"tab_title\":\"Do you accept students for clinical hours?\",\"faq_answer\":\"We do prescribe some controlled substances depending on your diagnosis.\",\"_id\":\"0758f4e\"}],\"faqs_items_bottom_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"faq_items_border_color\":\"#E3E9F0\",\"faq_items_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"question_bg_color\":\"#FFFFFF\",\"question_typography_typography\":\"custom\",\"question_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"question_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"answer_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"0541a67\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"question_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"faq_items_border_color\":\"\",\"question_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"question_bg_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"question_text_color_active\":\"globals\\/colors?id=astglobalcolor4\",\"question_bg_color_active\":\"globals\\/colors?id=astglobalcolor0\",\"answer_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-faq\"}],\"isInner\":true}],\"isInner\":true}]'),
(6341, 553, '_wp_page_template', 'elementor_header_footer'),
(6342, 553, '_elementor_global_class_usage_indexed', '1'),
(6343, 553, '_elementor_edit_mode', 'builder'),
(6344, 553, '_elementor_template_type', 'wp-page'),
(6345, 553, '_elementor_version', '4.1.3'),
(6346, 553, '_elementor_pro_version', '4.1.1'),
(6347, 553, '_elementor_global_class_usage_indexed_preview', '1'),
(6348, 553, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(6349, 553, '_elementor_data', '[{\"id\":\"da73fa4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d02edf6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4e16dda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31fbd95\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fea417b\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]}},\"elements\":[{\"id\":\"4d9a2fd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d6765c8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bfc4e15\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b820045\"}],\"pp_display_conditions\":[{\"_id\":\"e129900\",\"pp_condition_device_type_value\":\"mobile\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fdb1f51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently Asked Questions \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5c91e8e\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d893c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please reach us at <a href=\\\"mailto:info@optimalmentalwellness.org\\\">info@optimalmentalwellness.org<\\/a> if you cannot find an answer to your question.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e110c47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"02985d8\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Do you accept insurance?\",\"_id\":\"235e06a\",\"faq_answer\":\"<p>Our office is currently in network with:<\\/p><ul><li>Aetna<\\/li><li>Cigna<\\/li><li>Oscar<\\/li><li>United Health Care<\\/li><\\/ul><p>** All appointments utilizing insurance, must have insurance submitted and verified two days prior to appointment date. There is no exception.**<\\/p>\"},{\"tab_title\":\"Do you provide self pay options?\",\"_id\":\"3543826\",\"faq_answer\":\"<p>No Insurance? No Problem.<\\/p><p>Cash Pay rates are as followed:<\\/p><ul><li>$200 Initial evaluation 60 minutes (Mandatory for all NEW patients)<\\/li><li>$125 Follow-up appt 30 minutes (medication adjustments\\/refills)<\\/li><li>$65 Psychotherapy add on to follow up 45 mins<\\/li><li>$45 Psychotherapy add on to follow up 30 mins<\\/li><li>$135 Psychotherapy 50 mins<\\/li><\\/ul>\"},{\"tab_title\":\"Do you prescribe controlled substances?\",\"faq_answer\":\"We do prescribe some controlled substances depending on your diagnosis.\",\"_id\":\"6f4f62a\"},{\"tab_title\":\"Do you accept students for clinical hours?\",\"faq_answer\":\"We do prescribe some controlled substances depending on your diagnosis.\",\"_id\":\"0758f4e\"}],\"faqs_items_bottom_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"faq_items_border_color\":\"#E3E9F0\",\"faq_items_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"question_bg_color\":\"#FFFFFF\",\"question_typography_typography\":\"custom\",\"question_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"question_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"answer_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"0541a67\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"question_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"faq_items_border_color\":\"\",\"question_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"question_bg_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"question_text_color_active\":\"globals\\/colors?id=astglobalcolor4\",\"question_bg_color_active\":\"globals\\/colors?id=astglobalcolor0\",\"answer_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-faq\"}],\"isInner\":true}],\"isInner\":true}]'),
(6350, 553, '_elementor_page_settings', 'a:0:{}'),
(8619, 725, '_wp_page_template', 'elementor_header_footer'),
(8593, 723, '_wp_page_template', 'elementor_header_footer'),
(8594, 723, '_elementor_edit_mode', 'builder'),
(8595, 723, '_elementor_template_type', 'wp-page'),
(8596, 723, '_elementor_version', '4.1.3'),
(8597, 723, '_elementor_pro_version', '4.1.1'),
(8598, 723, '_elementor_global_class_usage_indexed', '1'),
(8599, 723, '_elementor_global_class_usage_indexed_preview', '1'),
(8600, 723, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8601, 723, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":532,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":431,\"sizes\":[]}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"px\",\"size\":223,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"common_image_animation\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"},\"hide_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\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"css_classes\":\"common_image_animation \"},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/contact-bd-a.jpg\",\"id\":715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\",\"css_classes\":\"common_image_animation \"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(8657, 729, '_wp_page_template', 'elementor_header_footer'),
(8635, 727, '_wp_page_template', 'elementor_header_footer'),
(8636, 727, '_elementor_edit_mode', 'builder'),
(8637, 727, '_elementor_template_type', 'wp-page'),
(8638, 727, '_elementor_version', '4.1.3'),
(8639, 727, '_elementor_pro_version', '4.1.1'),
(8640, 727, '_elementor_global_class_usage_indexed', '1'),
(8641, 727, '_elementor_global_class_usage_indexed_preview', '1'),
(8642, 727, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8643, 727, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":532,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":431,\"sizes\":[]}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"px\",\"size\":223,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"common_image_animation\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"},\"hide_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\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"css_classes\":\"common_image_animation \"},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/contact-bd-a.jpg\",\"id\":715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\",\"css_classes\":\"common_image_animation \"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(8633, 726, '_wp_attached_file', '2026/06/bg-contact-a.jpg');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8634, 726, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:24:\"2026/06/bg-contact-a.jpg\";s:8:\"filesize\";i:270680;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"bg-contact-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:21513;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"bg-contact-a-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:153027;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"bg-contact-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:8550;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"bg-contact-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:96710;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:26:\"bg-contact-a-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:282899;}}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:\"\";}}'),
(8603, 723, '_elementor_page_settings', 'a:0:{}'),
(8889, 745, '_wp_page_template', 'elementor_header_footer'),
(8890, 745, '_elementor_edit_mode', 'builder'),
(8891, 745, '_elementor_template_type', 'wp-page'),
(8892, 745, '_elementor_version', '4.1.3'),
(8893, 745, '_elementor_pro_version', '4.1.1'),
(8894, 745, '_elementor_global_class_usage_indexed', '1'),
(8895, 745, '_elementor_global_class_usage_indexed_preview', '1'),
(8896, 745, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8897, 745, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":532,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":431,\"sizes\":[]}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"px\",\"size\":223,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/clinikehr.com\\/book\\/optimal-mental-health-and-wellness-group\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"common_image_animation\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"},\"hide_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\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"css_classes\":\"common_image_animation \"},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/bg-contact-a.jpg\",\"id\":726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\",\"css_classes\":\"common_image_animation \"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(8606, 724, '_wp_page_template', 'elementor_header_footer'),
(8607, 724, '_elementor_edit_mode', 'builder'),
(8608, 724, '_elementor_template_type', 'wp-page'),
(8609, 724, '_elementor_version', '4.1.3'),
(8610, 724, '_elementor_pro_version', '4.1.1'),
(8611, 724, '_elementor_global_class_usage_indexed', '1'),
(8612, 724, '_elementor_global_class_usage_indexed_preview', '1'),
(8613, 724, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8614, 724, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":532,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":431,\"sizes\":[]}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"px\",\"size\":223,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"common_image_animation\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"},\"hide_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\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"css_classes\":\"common_image_animation \"},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/contact-bd-a.jpg\",\"id\":715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\",\"css_classes\":\"common_image_animation \"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(8616, 724, '_elementor_page_settings', 'a:0:{}'),
(8885, 744, '_elementor_page_settings', 'a:0:{}'),
(8620, 725, '_elementor_edit_mode', 'builder'),
(8621, 725, '_elementor_template_type', 'wp-page'),
(8622, 725, '_elementor_version', '4.1.3'),
(8623, 725, '_elementor_pro_version', '4.1.1'),
(8624, 725, '_elementor_global_class_usage_indexed', '1'),
(8625, 725, '_elementor_global_class_usage_indexed_preview', '1'),
(8626, 725, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8627, 725, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":532,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":431,\"sizes\":[]}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"px\",\"size\":223,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"common_image_animation\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"},\"hide_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\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"css_classes\":\"common_image_animation \"},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/contact-bd-a.jpg\",\"id\":715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\",\"css_classes\":\"common_image_animation \"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(8722, 733, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(8723, 733, '_elementor_screenshot_failed', '2026-06-17 09:14:00'),
(8645, 727, '_elementor_page_settings', 'a:0:{}'),
(8646, 728, '_wp_page_template', 'elementor_header_footer'),
(8647, 728, '_elementor_edit_mode', 'builder'),
(8648, 728, '_elementor_template_type', 'wp-page'),
(8649, 728, '_elementor_version', '4.1.3'),
(8650, 728, '_elementor_pro_version', '4.1.1'),
(8651, 728, '_elementor_global_class_usage_indexed', '1'),
(8652, 728, '_elementor_global_class_usage_indexed_preview', '1'),
(8653, 728, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8654, 728, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":532,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":431,\"sizes\":[]}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"px\",\"size\":223,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"common_image_animation\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"},\"hide_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\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"css_classes\":\"common_image_animation \"},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/contact-bd-a.jpg\",\"id\":715,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\",\"css_classes\":\"common_image_animation \"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(8656, 728, '_elementor_page_settings', 'a:0:{}'),
(8658, 729, '_elementor_edit_mode', 'builder'),
(8659, 729, '_elementor_template_type', 'wp-page'),
(8660, 729, '_elementor_version', '4.1.3'),
(8661, 729, '_elementor_pro_version', '4.1.1'),
(8662, 729, '_elementor_global_class_usage_indexed', '1'),
(8663, 729, '_elementor_global_class_usage_indexed_preview', '1'),
(8664, 729, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8665, 729, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":532,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":431,\"sizes\":[]}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"px\",\"size\":223,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"common_image_animation\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"},\"hide_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\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"css_classes\":\"common_image_animation \"},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/bg-contact-a.jpg\",\"id\":726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\",\"css_classes\":\"common_image_animation \"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(8863, 743, '_wp_page_template', 'elementor_header_footer'),
(8864, 743, '_elementor_edit_mode', 'builder'),
(8865, 743, '_elementor_template_type', 'wp-page'),
(8866, 743, '_elementor_version', '4.1.3'),
(8867, 743, '_elementor_pro_version', '4.1.1'),
(8868, 743, '_elementor_global_class_usage_indexed', '1'),
(8869, 743, '_elementor_global_class_usage_indexed_preview', '1'),
(8870, 743, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8871, 743, '_elementor_data', '[{\"id\":\"ef23acb\",\"elType\":\"container\",\"settings\":{\"min_height\":{\"unit\":\"px\",\"size\":728,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\",\"id\":40,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}],\"background_slideshow_gallery\":[{\"id\":71,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-bva.jpg\"},{\"id\":84,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-wm-a.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/banner-ab.jpg\"},{\"id\":88,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/wellnes-ab.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":532,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":431,\"sizes\":[]}},\"elements\":[{\"id\":\"38e4a9d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_gap\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"12b2907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"737d1d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec6258e\"}],\"pp_display_conditions\":[{\"_id\":\"598a6dc\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7a7a1e0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":276,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome to \",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"23bf91e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"px\",\"size\":223,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a98a68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimal Mental Health And Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9704ef8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Restoring Balance, Building Resilience\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6bc4b2e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13eb8e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book and Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ac9c9f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/book-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"abd8d3e\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b2d30aa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ae8dee5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"497d8ea\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c8270c9\"}]},\"elements\":[{\"id\":\"4a52b1f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cec0c59\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cc6e24a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2278114\"}],\"pp_display_conditions\":[{\"_id\":\"d7660cf\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"6cb7eda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"common_image_animation\"},\"elements\":[{\"id\":\"da1cb05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Wellness-opti.jpg\",\"id\":115,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#D8D8D8\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6f26bf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8148ec3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"65546f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8d32bd2\"}],\"pp_display_conditions\":[{\"_id\":\"bcac4c8\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee768e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"41a41b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1ab5904\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a43e2b\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-111\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2995b1d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6014ef9\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"About \",\"second_text\":\"Us\",\"first_text_color\":\"#41322d\",\"first_typography_typography\":\"custom\",\"first_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"second_text_color\":\"#ce2162\",\"second_typography_typography\":\"custom\",\"second_typography_font_size\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4c6a92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\",\"_background_color\":\"\",\"first_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"first_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"second_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"pp-dual-heading\"}],\"isInner\":true},{\"id\":\"a0831a7\",\"elType\":\"widget\",\"settings\":{\"first_text\":\"Optimal Mental Health \",\"second_text\":\"And Wellness\",\"pp_display_conditions\":[{\"_id\":\"3dbf3cd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"second_text_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"pp-dual-heading\"},{\"id\":\"36284b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"library\":\"svg\"},\"_id\":\"4ada1eb\"}],\"icon_color\":\"#ce2162\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"b8dcfce\"}],\"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\":\"#CE216287\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"hide_widescreen\":\"hidden-widescreen\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor6\",\"_border_color\":\"\"},\"hide_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\":\"icon-list\"},{\"id\":\"10c7f5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\\n\\n\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c11b493\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438fcc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2d3f7bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d546bd4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0e7a68\"}],\"flex_direction_mobile_extra\":\"column-reverse\"},\"elements\":[{\"id\":\"d27d313\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"css_classes\":\"common_image_animation \"},\"elements\":[{\"id\":\"0254f8e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/453006.jpg\",\"id\":246,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#B6B6B6\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17785d6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4adfe20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f540914\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f1a8f61\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"71b1e6d\"}],\"pp_display_conditions\":[{\"_id\":\"3b34489\"}],\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"39b7c96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\n\\n\\u200bWe are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive\\/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.\",\"pp_display_conditions\":[{\"_id\":\"8a89efd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d6b427d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"88cec94\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3ac89cb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"34fcc2e\"}],\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"pp_display_conditions\":[{\"_id\":\"869b52d\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"08135e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a5f580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d514f4a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8f3ce37\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"79a9ec5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b55fb78\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"fe4ef19\"}],\"pp_display_conditions\":[{\"_id\":\"853db97\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"45a70b1\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Psychiatric Evaluation\",\"_id\":\"8df193b\",\"subtitle\":\"\",\"description\":\"<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Psychiatric-Evaluation-aa.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\"},{\"title\":\"Medication & Nutritional Management\",\"subtitle\":\"\",\"description\":\"<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Medication-Nutritional-d.jpg\",\"id\":199,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"730c3d4\"},{\"title\":\"Psychotherapy\",\"subtitle\":\"\",\"description\":\"<p>Individual therapy. Couples\\/marriage therapy.<br \\/>Family therapy. Child\\/teen therapy. Online<br \\/>therapy. COMMON SPECIALTIES &amp; approaches<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/psychotherapy-a.webp\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Learn More\",\"_id\":\"04d52ed\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FFFFFF\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#E9E5CF\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"25\",\"left\":\"15\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"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\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_bg_color_normal\":\"#02010100\",\"button_border_normal_border\":\"solid\",\"button_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"26\",\"bottom\":\"12\",\"left\":\"26\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6370678\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_border_normal_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b88643c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0668bbc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"49512c2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"54bda5e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9aa3249\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5b3f21a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/bg-contact-a.jpg\",\"id\":726,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_background_effects_enable\":\"yes\",\"part_opacity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_quantity\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"part_size\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"part_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bc49ef6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"692c78e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c0f1063\"}],\"background_overlay_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8b495a9\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"part_color\":\"globals\\/colors?id=astglobalcolor6\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":303,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]}},\"elements\":[{\"id\":\"c3b8a30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":857,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a675697\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e72d32c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6aae839\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"359d0c5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3891073\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4116b88\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8bccd2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9861331\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"03010df\",\"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\":\"2b86ca3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"deb5498\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0c86b5d\"}],\"pp_display_conditions\":[{\"_id\":\"1d1ec5e\"}]},\"elements\":[{\"id\":\"bc7157d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"46fd0f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/stethoscope_2666276.svg\",\"id\":299},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Connect With Mental Health\",\"sub_heading\":\"\",\"description\":\"Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"5e7fc32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/brainstorm_1786985.svg\",\"id\":306},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"Georgia Crisis & Access Line\",\"sub_heading\":\"\",\"description\":\"Call (800) 715-4225 to access 24\\/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"},{\"id\":\"2db4d4c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/music_14332530.svg\",\"id\":310},\"library\":\"svg\"},\"icon_text\":\"1\",\"icon_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"icon_position\":\"left\",\"heading\":\"NAMI HelpLine\",\"sub_heading\":\"\",\"description\":\"Call (800) 950-NAMI (6264) or text \\\"HelpLine\\\" to 62640 to connect with a specialist for support, information, and resources.\",\"divider_title_switch\":\"yes\",\"title_html_tag\":\"h5\",\"button_text\":\"Get Started\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_bg_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"info_box_shadow_box_shadow_type\":\"yes\",\"info_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\",\"title_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"divider_title_border_type\":\"dotted\",\"divider_title_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"divider_title_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_title_border_height\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_title_border_color\":\"#C5C5C5\",\"divider_title_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"9d6b585\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box\"}],\"isInner\":true},{\"id\":\"2867412\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6c8092d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b3078df\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d4132ea\"}],\"pp_display_conditions\":[{\"_id\":\"2236fe0\"}],\"animation\":\"fadeInRight\",\"css_classes\":\"common_image_animation \"},\"elements\":[{\"id\":\"48015a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Connect-With-Mental-Health-ag.jpg\",\"id\":317,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":14,\"vertical\":14,\"blur\":0,\"spread\":0,\"color\":\"#F5EDBD\"},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"14\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e26b52b\"}],\"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\":\"#F5EDBD\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40692ae\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf94687\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cf74915\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5d9ccf9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"find_support\",\"pp_display_conditions\":[{\"_id\":\"c113ef9\"}]},\"elements\":[{\"id\":\"87620b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"4699dcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Support\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b99b5ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a01fe62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3dc4440\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f645d4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a2b3c98\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e654c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59a5434\"}],\"pp_display_conditions\":[{\"_id\":\"c1bb23c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"2642cda\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Emergency and Crisis Hotlines\",\"_id\":\"1b0ac59\",\"subtitle\":\"\",\"description\":\"<p>National Suicide Prevention Lifeline (USA)<\\/p><p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-TALK (1-800-273-8255)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/988lifeline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \"},{\"title\":\"Crisis Text Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Text HOME to <a href=\\\"tel:741741\\\">741741<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.crisistextline.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"b0f27c7\"},{\"title\":\"SAMHSA\\u2019s National Helpline\",\"subtitle\":\"\",\"description\":\"<p>Substance Abuse and Mental Health Services Administration<\\/p><p>Phone: <a href=\\\"tel:18006624357\\\">1-800-662-HELP (1-800-662-4357)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/samhsa.gov\\/find-help\\/national-helpline\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"1fb5c4d\"},{\"title\":\"Veterans Crisis Line (USA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18002738255\\\">1-800-273-8255 (Press 1)<\\/a><\\/p><p>Text: <a href=\\\"sms:838255\\\">838255<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.veteranscrisisline.net\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"058440f\"},{\"title\":\"General Mental Health Resources\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009506264\\\">1-800-950-NAMI (1-800-950-6264)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.nami.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"280c2b6\"},{\"title\":\"Mental Health America (MHA)\",\"subtitle\":\"\",\"description\":\"<p>Phone: <a href=\\\"tel:18009696642\\\">1-800-969-6642<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/mhanational.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"296416c\"},{\"title\":\"Anxiety and Depression Association of America (ADAA)\",\"subtitle\":\"\",\"description\":\"\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/adaa.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"38399c3\"},{\"title\":\"Specialized Support:\",\"subtitle\":\"\",\"description\":\"<p>Trevor Project (LGBTQ Youth)<\\/p><p>Phone: <a href=\\\"tel:18664887386\\\">1-866-488-7386<\\/a><\\/p><p>Text: <a href=\\\"sms:678678\\\">Text START to 678678<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.thetrevorproject.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"a046ba6\"},{\"title\":\"RAINN\",\"subtitle\":\"\",\"description\":\"<p>Rape, Abuse &amp; Incest National Network<\\/p><p>Phone: <a href=\\\"tel:18006564673\\\">1-800-656-HOPE (1-800-656-4673)<\\/a><\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"link_type\":\"button\",\"link\":{\"url\":\"https:\\/\\/www.rainn.org\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text\":\"Click Here \",\"_id\":\"73f5b46\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"info_box_border_color\":\"#CE216233\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"description_margin\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_text_color_normal\":\"#FFFFFF\",\"button_bg_color_normal\":\"#ce2162\",\"button_text_color_hover\":\"#303030\",\"button_bg_color_hover\":\"#edd32b\",\"pp_display_conditions\":[{\"_id\":\"5a06b89\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor6\",\"button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37021e57\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"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\":\"3a4da6c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"63826c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Thoughts on Mental Wellness & Care\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f7dfdec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-06-20 07:53\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"65a9e554\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\",\"classic_box_bg_color\":\"globals\\/colors?id=astglobalcolor4\"},\"classic_posts_per_page\":3},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(8831, 741, '_wp_page_template', 'elementor_header_footer'),
(8805, 739, '_wp_page_template', 'elementor_header_footer'),
(8806, 739, '_elementor_global_class_usage_indexed', '1'),
(8807, 739, '_elementor_edit_mode', 'builder'),
(8808, 739, '_elementor_template_type', 'wp-page'),
(8809, 739, '_elementor_version', '4.1.3'),
(8810, 739, '_elementor_pro_version', '4.1.1'),
(8811, 739, '_elementor_global_class_usage_indexed_preview', '1'),
(8812, 739, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8813, 739, '_elementor_data', '[{\"id\":\"930c0f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_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_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e9b1af4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"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_device_type_value\":\"mobile\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40}},\"elements\":[{\"id\":\"88a3c22\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":616,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/mental-contact-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"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\":\"f3587d7\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[{\"id\":\"9d88ee6\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d778882\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f882cf8\",\"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\":\"09:30 AM - 04:30 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sat - Sun\",\"highlight\":\"\",\"highlight_color\":\"#bc1705\",\"_id\":\"5b4030f\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\",\"closed\":\"\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"rows_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"5\",\"bottom\":\"8\",\"left\":\"5\",\"isLinked\":false},\"rows_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"hours_typography_typography\":\"custom\",\"hours_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"hours_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"327b8dd\",\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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:\\/\\/clinikehr.com\\/book\\/optimal-mental-health-and-wellness-group\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"745f907\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"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_device_type_value\":\"mobile\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"cafb309\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/circle_11837105.svg\",\"id\":107},\"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-06-20 11:36\",\"pp_condition_device_type_value\":\"mobile\"}],\"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=astglobalcolor6\"},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"636d4e2\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d38a337\",\"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\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a 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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor6\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"show_labels\":\"\",\"email_to\":\"info@optimalmentalwellness.org\",\"email_subject\":\"Contact Us - Serene Sound Wellness\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Serene Sound Wellness\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Serene Sound Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Serene Sound Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_elements_tooltip_auto_hide\":0,\"pp_elements_tooltip_show_once\":\"\",\"pp_elements_tooltip_viewport_threshold\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8701, 732, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(8845, 742, '_elementor_source', 'post'),
(8846, 742, '_elementor_edit_mode', 'builder'),
(8847, 742, '_elementor_template_type', 'header'),
(8848, 742, '_elementor_version', '4.1.3'),
(8849, 742, '_elementor_pro_version', '4.1.1'),
(8850, 742, '_elementor_global_class_usage_indexed', '1'),
(8851, 742, '_elementor_global_class_usage_indexed_preview', '1'),
(8852, 742, '_elementor_migrations_state_d2a1', '4.1.3:4.1.1:595e50d38ae27a4ec16e0e0a9df00b29'),
(8853, 742, '_wp_page_template', 'default'),
(8854, 742, '_elementor_data', '[{\"id\":\"7cd2407b\",\"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},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4b376675\",\"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\":\"14e415c9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@optimalmentalwellness.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@optimalmentalwellness.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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5137f99d\",\"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\":\"416cdcb9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"877 296 7846\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:8772967846\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=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\":\"6090cb25\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"background_background\":\"classic\",\"z_index\":99,\"css_classes\":\"header_sections\",\"sticky\":\"top\",\"sticky_effects_offset\":50,\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"42e85872\",\"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\":\"5d51e937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":52,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Optimal-Mental-Health-And-Wellness-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":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\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_position\":\"absolute\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":299,\"sizes\":[]},\"_offset_x_widescreen\":{\"size\":-1,\"unit\":\"px\"},\"_offset_y_widescreen\":{\"size\":-1,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"388619a3\",\"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\":\"2a70cfde\",\"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\":30,\"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\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"500\",\"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=astglobalcolor6\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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=astglobalcolor6\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor6\",\"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=astglobalcolor6\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor6\",\"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\":\"ca7841b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/clinikehr.com\\/book\\/optimal-mental-health-and-wellness-group\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"590be00\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"454cd36b\",\"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\":432,\"url\":\"https:\\/\\/mrarif.me\\/optimalmentalwellness\\/wp-content\\/uploads\\/2026\\/06\\/Mental-Health-And-Wellness-av.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.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\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"5aa4113e\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"},{\"id\":\"b8f44e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"align\":\"center\",\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"pp_condition_key\":\"static_page\",\"pp_condition_static_page_value\":\"blog\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]');

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

--
-- Table structure for table `wpom_posts`
--

CREATE TABLE `wpom_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 `wpom_posts`
--

INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(2, 1, '2026-06-16 07:07:02', '2026-06-16 07:07: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/optimalmentalwellness/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->', 'Sample Page', '', 'publish', 'closed', 'open', '', 'sample-page', '', '', '2026-06-16 07:07:02', '2026-06-16 07:07:02', '', 0, 'https://mrarif.me/optimalmentalwellness/?page_id=2', 0, 'page', '', 0),
(3, 1, '2026-06-16 07:07:02', '2026-06-16 07:07: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/optimalmentalwellness.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Comments</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Media</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Cookies</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Embedded content from other websites</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Who we share your data with</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">How long we retain your data</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What rights you have over your data</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Where your data is sent</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p>\n<!-- /wp:paragraph -->\n', 'Privacy Policy', '', 'draft', 'closed', 'open', '', 'privacy-policy', '', '', '2026-06-16 07:07:02', '2026-06-16 07:07:02', '', 0, 'https://mrarif.me/optimalmentalwellness/?page_id=3', 0, 'page', '', 0),
(4, 0, '2026-06-16 07:07:03', '2026-06-16 07:07:03', '<!-- wp:page-list /-->', 'Navigation', '', 'publish', 'closed', 'closed', '', 'navigation', '', '', '2026-06-16 07:07:03', '2026-06-16 07:07:03', '', 0, 'https://mrarif.me/optimalmentalwellness/index.php/2026/06/16/navigation/', 0, 'wp_navigation', '', 0),
(7, 1, '2026-06-16 07:09:20', '2026-06-16 07:09:20', '', 'Default Kit', '', 'publish', 'closed', 'closed', '', 'default-kit', '', '', '2026-06-16 09:38:24', '2026-06-16 09:38:24', '', 0, 'https://mrarif.me/optimalmentalwellness/?p=7', 0, 'elementor_library', '', 0),
(10, 1, '2026-06-16 07:15:33', '2026-06-16 07:15:33', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://clinikehr.com/book/optimal-mental-health-and-wellness-group\" target=\"_blank\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'publish', 'closed', 'closed', '', 'home', '', '', '2026-07-13 16:32:09', '2026-07-13 16:32:09', '', 0, 'https://mrarif.me/optimalmentalwellness/?page_id=10', 0, 'page', '', 0),
(11, 1, '2026-06-16 07:15:33', '2026-06-16 07:15:33', '', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 07:15:33', '2026-06-16 07:15:33', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=11', 0, 'revision', '', 0),
(12, 1, '2026-06-16 07:16:12', '2026-06-16 07:16:12', '<img width=\"826\" height=\"1188\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/IMG_9815.jpg\" alt=\"\" />																<h2>Meet the Provider</h2>					<h5>Arlene Johnson</h5>		<p>Arlene Johnson is a distinguished board -certified Nurse Practitioner holding a Masters Degree in Nursing Practice. Arlene is licensed in the state of Florida,Washington,Arizona,and Colorado as a Psychiatric Mental Health Nurse Practitioner . She obtained her Bachelor’s degree and Master’s degree from Walden University.</p><p>Arlene\'s passion for mental health was ignited early on in her nursing career, and since then, being an advocate for those suffering from mental health conditions has been at the forefront. With well over a decade of experience in the healthcare field, ranging from treating acute to chronic conditions, Arlene believes in a comprehensive approach integrating both her Psychiatric and Medical background grounded in evidence-based practice to provide the highest quality of care. With her patient-centered care tailored to meet the needs of each individual patient, she not only fosters a caring therapeutic environment, but she also empowers her patients to become the best version of themselves.<br /><br />Her years of extensive healthcare experience and unparalleled insight has helped individuals cultivate a path towards a balanced and fulfilling life of mental wellness!</p>', 'Meet the Provider', '', 'publish', 'closed', 'closed', '', 'meet-the-provider', '', '', '2026-06-17 14:28:04', '2026-06-17 14:28:04', '', 0, 'https://mrarif.me/optimalmentalwellness/?page_id=12', 0, 'page', '', 0),
(13, 1, '2026-06-16 07:16:12', '2026-06-16 07:16:12', '', 'Meet the Provider', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-06-16 07:16:12', '2026-06-16 07:16:12', '', 12, 'https://mrarif.me/optimalmentalwellness/?p=13', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(14, 1, '2026-06-16 07:16:35', '2026-06-16 07:16:35', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />																<h2>Psychotherapy</h2>		<ul style=\"margin-left: 18px;\">\n 	<li>Individual therapy</li>\n 	<li>Couples/marriage therapy</li>\n 	<li>Family therapy</li>\n 	<li>Child/teen therapy</li>\n 	<li>Online therapy</li>\n 	<li>COMMON SPECIALTIES &amp; approaches</li>\n 	<li>Anxiety therapy</li>\n 	<li>Cognitive behavioral therapy (CBT)</li>\n 	<li>Depression counseling</li>\n 	<li>Dialectical behavior therapy (DBT)</li>\n 	<li>Grief &amp; loss counseling</li>\n 	<li>Relational therapy</li>\n</ul>			<h3>Therapy can be highly beneficial for mental health for several reasons:</h3>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 64 64.1999969\" width=\"512\"><path d=\"m51.2529297 42.0226555c.6357422-.6357422.9863281-1.4804688.9863281-2.3808594 0-.8994141-.3500977-1.7441406-.9863281-2.3808594-1.3125-1.3125-3.4492188-1.3125-4.7617188 0l-9.3178711 9.3173828c-.7426758.7441406-1.1518555 1.7314453-1.1518555 2.7822266v11.6396484c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-5.109375l11.5913086-11.5917969c.1875-.1875.2929688-.4414062.2929688-.7070312v-11.5488281c0-2.0097656-1.6347656-3.6445312-3.6445312-3.6445312s-3.6450195 1.6347656-3.6450195 3.6445312v8.6582031l-4.2260742 4.2255859c-.1459961.1455078-.3828125.1435547-.527832 0-.1455078-.1455078-.1455078-.3818359 0-.5273438zm-3.7910156 4.3183594c.9243164.9248047 2.4306641.9267578 3.355957 0l4.519043-4.5185547c.1875-.1875.2929688-.4414062.2929688-.7070312v-9.0722656c0-.9072266.737793-1.6445312 1.6450195-1.6445312.9067383 0 1.6445312.7373047 1.6445312 1.6445312v11.1347656l-11.5913086 11.5917968c-.1875.1875-.2929688.4414062-.2929688.7070312v4.5234375h-9.0136719v-10.6396484c0-.5166016.2011719-1.0029297.5664062-1.3681641l9.3173828-9.3173828c.5332031-.5332031 1.4008789-.5332031 1.9331055 0 .2583008.2587891.4008789.6015625.4008789.9667969s-.1420898.7089844-.4003906.9667969l-2.3769531 2.3769531c-.9252929.9248047-.9252929 2.4306641.0000001 3.3554688z\"></path><path d=\"m6.7250977 28.398632c-2.0097656 0-3.6445312 1.6347656-3.6445312 3.6445312v11.5488281c0 .265625.1054688.5195312.2929688.7070312l11.5913086 11.5917969v5.109375c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-11.6396483c0-1.0507812-.4091797-2.0380859-1.1523438-2.7822266l-9.3173828-9.3173828c-1.3125-1.3125-3.4487305-1.3125-4.762207 0-.6357422.6367188-.9858398 1.4814453-.9858398 2.3808594 0 .9003906.3505859 1.7451172.9863281 2.3808594l2.3769531 2.3769531c.1455078.1455078.1455078.3818359 0 .5273438s-.3823242.1435547-.527832 0l-4.2260742-4.2255859v-8.6582031c-.0000002-2.0097657-1.6352541-3.6445314-3.6450197-3.6445314zm6.4570312 17.9423829c.925293.9267578 2.4316406.9257812 3.355957 0 .925293-.9248047.925293-2.4306641 0-3.3554688l-2.3769531-2.3769531c-.2583008-.2578125-.4003906-.6015625-.4003906-.9667969s.1425781-.7080078.4003906-.9667969c.5332031-.5332031 1.4003906-.5332031 1.9335938 0l9.3168945 9.3173828c.3657227.3652344.5668945.8515625.5668945 1.3681641v10.6396484h-9.0136719v-4.5234375c0-.265625-.1054688-.5195312-.2929688-.7070312l-11.5913085-11.5917969v-11.1347656c0-.9072266.737793-1.6445312 1.6445312-1.6445312.9072266 0 1.6450195.7373047 1.6450195 1.6445312v9.0722656c0 .265625.1054688.5195312.2929688.7070312z\"></path><path d=\"m32 2.0998046c-10.0986328 0-18.3144531 8.2158203-18.3144531 18.3144531s8.2158203 18.3144525 18.3144531 18.3144525 18.3144531-8.2158203 18.3144531-18.3144531-8.2158203-18.3144525-18.3144531-18.3144525zm0 2.0000003c7.614502 0 14.0088501 5.2510376 15.798584 12.3173819-3.1233521-2.2542105-8.8903809-3.70996-15.798584-3.70996s-12.6752319 1.4557495-15.798584 3.70996c1.7897339-7.0663443 8.184082-12.3173819 15.798584-12.3173819zm16.3144531 16.3144521c0 2.6992188-6.7001953 5.7070312-16.3144531 5.7070312s-16.3144531-3.0078125-16.3144531-5.7070312 6.7001953-5.7070302 16.3144531-5.7070302 16.3144531 3.0078115 16.3144531 5.7070302zm-16.3144531 16.3144532c-7.614502 0-14.0088501-5.2510376-15.798584-12.3173828 3.1233521 2.2542114 8.8903809 3.7099609 15.798584 3.7099609s12.6752319-1.4557495 15.798584-3.7099609c-1.7897339 7.0663452-8.184082 12.3173828-15.798584 12.3173828z\"></path></svg>							\n												<h5>\n													Safe Space												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"friendship-work\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><circle cx=\"72\" cy=\"102\" r=\"4\"></circle><circle cx=\"64\" cy=\"50\" r=\"4\"></circle><path d=\"m228 98h4v4c0 2.211 1.789 4 4 4s4-1.789 4-4v-4h4c2.211 0 4-1.789 4-4s-1.789-4-4-4h-4v-4c0-2.211-1.789-4-4-4s-4 1.789-4 4v4h-4c-2.211 0-4 1.789-4 4s1.789 4 4 4z\"></path><path d=\"m132 218h-16v-5.977c0-13.759-8.223-25.608-20-30.964v-35.059c0-.031-.017-.057-.018-.088 4.839-3.653 8.018-9.396 8.018-15.912 0-2.211-1.789-4-4-4h-30.707c-7.328 0-13.293 5.965-13.293 13.293v25.953c0 5.361 2.096 10.206 5.444 13.892-14.614 3.818-25.444 17.092-25.444 32.885v49.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-49.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v9.977c0 2.211 1.789 4 4 4h8v8h-20v-17.582c0-2.211-1.789-4-4-4s-4 1.789-4 4v21.582 24c0 2.211 1.789 4 4 4s4-1.789 4-4v-20h32c6.617 0 12-5.383 12-12s-5.383-12-12-12zm-68-78.707c0-2.918 2.375-5.293 5.293-5.293h26.023c-1.652 4.656-6.102 8-11.316 8h-20zm12.754 38.707c-7.031 0-12.754-5.723-12.754-12.754v-15.246h24v28zm55.246 56h-4v-8h4c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m56 210c-2.211 0-4 1.789-4 4v48c0 2.211 1.789 4 4 4s4-1.789 4-4v-48c0-2.211-1.789-4-4-4z\"></path><path d=\"m238.009 178.998c3.704-3.95 5.991-9.243 5.991-15.072v-9.926c0-11.027-8.973-20-20-20s-20 8.973-20 20v27.06c-11.777 5.355-20 17.205-20 30.964v45.976c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v45.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-15.99-11.1-29.402-25.991-33.025zm-26.009-.998v-24c0-6.617 5.383-12 12-12s12 5.383 12 12v9.926c0 7.762-6.312 14.074-14.074 14.074z\"></path><path d=\"m204 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m244 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m185.41 118.613c.102-.242.203-.488.301-.734 5.809-.832 10.289-5.844 10.289-11.879 0-1.206-.223-2.353-.555-3.452 10.229-11.777 15.466-22.512 15.466-31.899-.001-20.208-15.274-36.649-34.048-36.649-7.633 0-14.91 2.711-20.863 7.707-5.953-4.996-13.23-7.707-20.863-7.707-18.773 0-34.047 16.441-34.047 36.648 0 9.39 5.238 20.125 15.465 31.903-.333 1.098-.555 2.244-.555 3.449 0 6.035 4.48 11.047 10.289 11.879.098.246.199.488.301.73-3.516 4.699-3.141 11.406 1.125 15.672 4.27 4.27 10.98 4.633 15.672 1.129.242.102.488.203.734.301.832 5.809 5.844 10.289 11.879 10.289s11.047-4.48 11.879-10.289c.246-.098.492-.199.734-.301 4.688 3.504 11.398 3.141 15.672-1.129 4.262-4.261 4.641-10.965 1.125-15.668zm-50.273-76.613c6.707 0 13.09 2.82 17.965 7.945 1.516 1.586 4.281 1.586 5.797 0 4.874-5.125 11.257-7.945 17.964-7.945 14.363 0 26.047 12.852 26.047 28.648 0 6.991-4.298 15.714-12.379 25.343-1.433-.939-3.052-1.616-4.82-1.87-.098-.246-.199-.488-.301-.73 3.516-4.699 3.141-11.406-1.125-15.672-4.273-4.27-10.984-4.637-15.672-1.129-.242-.102-.488-.203-.734-.301-.832-5.809-5.844-10.289-11.879-10.289s-11.047 4.48-11.879 10.289c-.246.098-.492.199-.734.301-4.691-3.508-11.402-3.141-15.672 1.129-4.262 4.262-4.641 10.965-1.125 15.668-.102.242-.203.488-.301.734-1.769.253-3.387.931-4.821 1.87-8.079-9.625-12.378-18.35-12.378-25.343 0-15.796 11.683-28.648 26.047-28.648zm47.687 68c-1.77 0-3.328 1.16-3.832 2.855-.488 1.629-1.117 3.16-1.875 4.555-.848 1.562-.562 3.492.695 4.746l.812.812c1.562 1.559 1.562 4.098.004 5.656-1.562 1.566-4.098 1.559-5.66 0l-.82-.82c-1.254-1.254-3.18-1.535-4.73-.691-1.426.773-2.957 1.402-4.555 1.875-1.699.504-2.863 2.062-2.863 3.836v1.176c0 2.207-1.793 4-4 4s-4-1.793-4-4v-1.176c0-1.773-1.164-3.332-2.863-3.836-1.598-.473-3.129-1.102-4.555-1.875-.598-.324-1.254-.48-1.902-.48-1.035 0-2.059.402-2.828 1.172l-.82.82c-1.559 1.559-4.094 1.566-5.66 0-1.559-1.559-1.559-4.098-.008-5.648l.824-.82c1.258-1.254 1.543-3.184.695-4.746-.758-1.395-1.387-2.926-1.875-4.555-.504-1.695-2.062-2.855-3.832-2.855h-1.176c-2.207 0-4-1.793-4-4s1.793-4 4-4h1.176c1.77 0 3.328-1.16 3.832-2.855.488-1.629 1.117-3.16 1.875-4.555.848-1.562.562-3.492-.695-4.746l-.812-.812c-1.562-1.559-1.562-4.098-.004-5.656 1.57-1.562 4.105-1.559 5.66 0l.82.82c1.25 1.25 3.18 1.531 4.73.691 1.426-.773 2.957-1.402 4.555-1.875 1.699-.504 2.863-2.062 2.863-3.836v-1.177c0-2.207 1.793-4 4-4s4 1.793 4 4v1.176c0 1.773 1.164 3.332 2.863 3.836 1.598.473 3.129 1.102 4.555 1.875 1.555.844 3.48.562 4.73-.691l.82-.82c1.562-1.559 4.098-1.566 5.66 0 1.559 1.559 1.559 4.098.008 5.648l-.824.82c-1.258 1.254-1.543 3.184-.695 4.746.758 1.395 1.387 2.926 1.875 4.555.504 1.695 2.062 2.855 3.832 2.855h1.176c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m156 90c-8.824 0-16 7.176-16 16s7.176 16 16 16 16-7.176 16-16-7.176-16-16-16zm0 24c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path></g></svg>							\n												<h5>\n													Emotional Support												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m206.102 400.162c-46.373 0-92.751-17.652-128.056-52.957-34.207-34.208-53.046-79.687-53.046-128.061s18.839-93.853 53.046-128.06c70.615-70.615 185.512-70.605 256.117 0 70.614 70.614 70.614 185.507 0 256.121-35.305 35.305-81.683 52.957-128.061 52.957zm0-346.791c-42.47 0-84.94 16.167-117.271 48.498-64.665 64.666-64.665 169.885 0 234.551 64.666 64.666 169.891 64.661 234.547 0 31.328-31.328 48.578-72.978 48.578-117.276 0-44.297-17.25-85.947-48.578-117.275-32.33-32.331-74.801-48.498-117.276-48.498z\"></path><path d=\"m206.102 357.901c-37.063 0-71.905-14.435-98.109-40.643-54.098-54.1-54.098-142.128 0-196.227 54.1-54.1 142.124-54.09 196.223 0 54.1 54.099 54.1 142.128 0 196.227-26.208 26.208-61.051 40.643-98.114 40.643zm0-262.194c-31.626 0-63.25 12.036-87.324 36.109-48.151 48.156-48.151 126.502 0 174.657 23.323 23.328 54.338 36.174 87.324 36.174s64.001-12.845 87.329-36.174c48.151-48.156 48.151-126.502 0-174.657-24.078-24.073-55.703-36.109-87.329-36.109z\"></path><path d=\"m297.428 421.907c-8.813 0-17.618-3.352-24.326-10.061-2.978-2.978-2.978-7.805 0-10.785 2.98-2.98 7.806-2.98 10.786 0 7.468 7.468 19.619 7.468 27.087 0l77.045-77.05c3.615-3.62 5.606-8.427 5.606-13.54 0-5.115-1.991-9.921-5.606-13.541-2.979-2.98-2.979-7.805 0-10.785 2.98-2.979 7.806-2.979 10.785 0 13.412 13.412 13.412 35.241 0 48.652l-77.045 77.05c-6.709 6.707-15.523 10.06-24.332 10.06z\"></path><path d=\"m402.881 461.874c-12.275 0-23.809-4.783-32.489-13.462l-47.992-47.991c-2.979-2.98-2.979-7.805 0-10.785l54.194-54.193c2.979-2.979 7.805-2.979 10.785 0l47.992 47.991c8.679 8.68 13.461 20.215 13.461 32.49s-4.782 23.809-13.461 32.489c-8.68 8.679-20.216 13.461-32.49 13.461zm-64.303-66.846 42.599 42.599c11.967 11.967 31.442 11.967 43.408 0 11.968-11.968 11.968-31.442 0-43.408l-42.599-42.6z\"></path><path d=\"m467.373 461.874h-355.566c-4.211 0-7.627-3.417-7.627-7.628s3.416-7.627 7.627-7.627h355.566c4.211 0 7.627 3.416 7.627 7.627s-3.416 7.628-7.627 7.628z\"></path><path d=\"m401.258 421.926c-1.951 0-3.904-.744-5.392-2.234l-21.675-21.679c-2.98-2.979-2.98-7.806 0-10.786 2.979-2.979 7.805-2.979 10.785 0l21.675 21.68c2.98 2.979 2.98 7.805 0 10.785-1.491 1.489-3.442 2.234-5.393 2.234z\"></path><path d=\"m206.102 305.102c-.814 0-1.628-.129-2.413-.392-3.814-1.272-41.556-24.446-49.383-62.342-6.668-32.305 9.048-65.739 46.716-99.385 2.89-2.583 7.269-2.583 10.16 0 37.668 33.641 53.384 67.079 46.715 99.38-7.826 37.897-45.569 61.076-49.383 62.347-.783.263-1.598.392-2.412.392zm0-146.07c-27.603 26.133-40.27 51.358-37.674 75.049 3.138 28.626 28.11 47.967 37.674 54.392 9.564-6.426 34.541-25.762 37.679-54.392 2.597-23.691-10.075-48.916-37.679-75.049z\"></path><path d=\"m212.691 305.102c-3.48 0-5.675-.164-6.082-.198-2.652-.224-5.001-1.813-6.192-4.192-.029-.06-.243-.501-.268-.561-1.658-3.541-.373-7.757 2.979-9.768 10.835-6.515 63.212-41.869 30.112-98.402-1.073-1.832-1.331-4.027-.715-6.062.615-2.031 2.045-3.715 3.957-4.648 14.42-7.027 32.256-12.021 53.007-14.842 3.889-.571 7.478 1.927 8.427 5.685 11.51 45.499 7.364 80.353-12.324 103.586-22.525 26.577-58.58 29.402-72.901 29.402zm37.744-113.333c22.007 44.953-.696 78.336-19.848 96.52 13.933-2.384 31.348-8.268 43.364-22.45 15.403-18.178 19.019-46.169 10.775-83.267-12.915 2.146-24.4 5.225-34.291 9.197z\"></path><path d=\"m199.553 305.102c-14.291 0-50.42-2.82-72.944-29.416-19.678-23.233-23.824-58.082-12.314-103.571.948-3.758 4.509-6.256 8.422-5.685 20.756 2.821 38.592 7.816 53.012 14.842 1.912.933 3.342 2.617 3.958 4.648.615 2.035.358 4.23-.715 6.062-33.1 56.533 19.276 91.887 30.111 98.402 3.392 2.036 4.662 6.332 2.925 9.887-1.182 2.413-3.734 4.409-6.411 4.633-.408.035-2.589.198-6.044.198zm-72.07-122.529c-8.243 37.088-4.633 65.079 10.765 83.257 12.007 14.177 29.426 20.066 43.364 22.45-19.147-18.184-41.849-51.562-19.837-96.51-9.892-3.973-21.371-7.052-34.292-9.197z\"></path><path d=\"m205.154 304.547c-4.211 0-7.627-3.417-7.627-7.628v-71.533c0-4.211 3.416-7.627 7.627-7.627s7.628 3.416 7.628 7.627v71.533c-.001 4.211-3.417 7.628-7.628 7.628z\"></path></g></svg>							\n												<h5>\n													Self-Exploration												</h5>\n											<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m295.544 178.256a6.741 6.741 0 0 0 -3.689-3.623 6.718 6.718 0 0 0 -8.727 3.475c-.058.16-.123.319-.193.475a6.715 6.715 0 0 0 3.572 8.482q.238.087.473.192a6.789 6.789 0 0 0 8.569-9zm4.657-15.648a21.3 21.3 0 0 1 -18.927 38.018l-.027-.012a21.345 21.345 0 0 1 -11.856-27.305 7.1 7.1 0 0 1 .358-.879 21.238 21.238 0 0 1 11.277-11.14 21.465 21.465 0 0 1 4.89-1.409 108.471 108.471 0 0 1 110.169-79.395l-7.5-9.84a7.256 7.256 0 0 1 11.533-8.807l18.139 23.785a7.255 7.255 0 0 1 -1.364 10.17l-23.793 18.138a7.256 7.256 0 0 1 -8.8-11.532l9.821-7.488a94.123 94.123 0 0 0 -93.917 67.7zm-136.607 130.062c-1.181-.462-2.53-.937-4.2-1.439-1.749-.526-3.761-1.034-5.893-1.571-2.249-.568-4.622-1.167-6.887-1.817a81.221 81.221 0 0 1 -7.736-2.626 52.681 52.681 0 0 1 -7.96-3.915 57.093 57.093 0 0 1 -5.122-3.558 19.314 19.314 0 0 1 -2.1 3.175 29.979 29.979 0 0 1 -4.78 4.617c-1.583 1.254-3.581 2.64-5.787 4.091-1.069.7-2 1.305-2.835 1.842v15.331a30.06 30.06 0 0 0 7.975 20.595 25.087 25.087 0 0 0 37.345 0 30.056 30.056 0 0 0 7.976-20.595v-14.13zm-3.794 117.75q-.863.314-1.737.606a66.691 66.691 0 0 1 -42.171 0q-.874-.292-1.736-.606 8.1 16.046 22.822 31.483 14.722-15.438 22.822-31.483zm-44.516-66.689-1.446 6.36a26.013 26.013 0 0 1 -8.247 14.073q-.63.554-1.295 1.069a86.352 86.352 0 0 0 2.3 24.838 49.4 49.4 0 0 0 13.842 7.2 53.4 53.4 0 0 0 33.079 0 49.4 49.4 0 0 0 13.842-7.2 86.282 86.282 0 0 0 2.3-24.786q-.7-.539-1.362-1.121a26.01 26.01 0 0 1 -8.247-14.073l-1.446-6.36a39.133 39.133 0 0 1 -43.323 0zm102.131 19.247c21.553 5.007 34.482 13.526 35.172 45.641v.142h.028v79.966a7.273 7.273 0 0 1 -7.272 7.273h-216.795a7.273 7.273 0 0 1 -7.273-7.273v-79.966a7.309 7.309 0 0 1 .049-.842c.911-33.257 15.2-40.822 38.733-45.728.5-7.586 1.773-17.265 3.2-28.09 2.421-18.4 5.3-40.261 5.3-60.319a67.9 67.9 0 0 1 19.627-47.875 66.563 66.563 0 0 1 94.957 0 67.889 67.889 0 0 1 19.627 47.875c0 22.494 5.342 45.587 9.591 63.955 2.279 9.851 4.261 18.419 5.062 25.241zm-46.7-31.379a44.85 44.85 0 0 0 7.42-24.8v-18.92a7.275 7.275 0 0 0 -4.889-6.873c-1.2-.525-2.455-1.065-4.1-1.717-1.832-.726-3.692-1.4-5.606-1.978-2.014-.606-4.2-1.158-6.517-1.742-2.01-.507-4.13-1.042-6.433-1.7-2.252-.647-4.44-1.344-6.372-2.113a37.981 37.981 0 0 1 -5.745-2.837 66.527 66.527 0 0 1 -8.659-6.687c-.68-.593-.82-.722-1.072-.939l.012-.014a14.573 14.573 0 0 0 -4.812-3.1c-6.5-2.195-9.224.041-10.259 6.5a21.51 21.51 0 0 0 -.208 2.607 14.785 14.785 0 0 1 -.37 3.3 3.848 3.848 0 0 1 -.715 1.241 16.145 16.145 0 0 1 -2.507 2.344c-1.423 1.129-3.022 2.244-4.707 3.353-1.127.741-3.346 2.131-5.627 3.557a7.274 7.274 0 0 0 -3.8 6.392v19.327a44.847 44.847 0 0 0 7.42 24.8l-3.479 15.309a11.711 11.711 0 0 1 -3.7 6.345 18.2 18.2 0 0 1 -8.506 3.875c-3.592.726-8.189 1.542-12.649 2.326.575-6.608 1.632-14.641 2.8-23.479 2.5-19 5.467-41.557 5.467-62.194a53.45 53.45 0 0 1 15.423-37.7 52.155 52.155 0 0 1 74.275 0 53.45 53.45 0 0 1 15.423 37.7c0 24.013 5.564 48.064 9.989 67.193 1.675 7.243 3.177 13.738 4.1 19.051l-2.054-.362c-4.821-.846-9.929-1.744-13.842-2.535a18.2 18.2 0 0 1 -8.506-3.875 11.711 11.711 0 0 1 -3.7-6.345l-3.482-15.31zm-41.01 149.856h-45.614a7.289 7.289 0 0 0 -.715-1.2 26.958 26.958 0 0 1 -5.261-16.38q0-9.969 5.972-22.523a7.256 7.256 0 0 0 -13.125-6.193q-7.392 15.54-7.393 28.716a41.569 41.569 0 0 0 3.738 17.583h-31.487v-72.697c0-.137 0-.274-.012-.41.791-27.416 16-30.094 40.333-34.368 3.862-.679 7.947-1.4 13.53-2.518a102.527 102.527 0 0 0 9.229 40.627q10.013 22.326 30.808 43.123v26.24zm14.545-26.241q20.795-20.795 30.808-43.121a102.527 102.527 0 0 0 9.226-40.616c5.55 1.115 9.617 1.83 13.466 2.506 24.453 4.3 39.695 6.976 40.344 34.778h-.024v72.694h-31.422a41.554 41.554 0 0 0 3.738-17.583q0-13.176-7.392-28.716a7.256 7.256 0 1 0 -13.125 6.193q5.971 12.554 5.972 22.523a26.959 26.959 0 0 1 -5.262 16.38 7.359 7.359 0 0 0 -.715 1.2h-45.614zm314.57-424.669a17.825 17.825 0 0 1 12.368 4.889 15.841 15.841 0 0 1 4.992 11.445v162.839a15.841 15.841 0 0 1 -4.992 11.445 17.821 17.821 0 0 1 -12.368 4.889h-92.395a7.234 7.234 0 0 0 -3.9 1.136l-22.385 12.384q-.276.151-.532.323l-36.3 20.086v-26.656a7.273 7.273 0 0 0 -7.273-7.273h-55.544a17.824 17.824 0 0 1 -12.368-4.889 15.844 15.844 0 0 1 -4.991-11.445v-162.839a15.842 15.842 0 0 1 4.991-11.445 17.829 17.829 0 0 1 12.368-4.889zm-218.329-14.545h218.329a32.378 32.378 0 0 1 22.425 8.979 30.272 30.272 0 0 1 9.48 21.9v162.839a30.268 30.268 0 0 1 -9.48 21.9 32.375 32.375 0 0 1 -22.425 8.98h-90.544l-21.149 11.7q-.257.141-.518.259l-47.084 26.051a7.236 7.236 0 0 1 -10.73-6.335h-.037v-31.673h-48.267a32.378 32.378 0 0 1 -22.425-8.98 30.272 30.272 0 0 1 -9.48-21.9v-162.841a30.268 30.268 0 0 1 9.48-21.9 32.378 32.378 0 0 1 22.425-8.979zm53.254 72.778-10.193-10.192 10.193-10.193a7.272 7.272 0 0 0 -10.285-10.284l-10.192 10.191-10.192-10.19a7.272 7.272 0 0 0 -10.284 10.284l10.192 10.192-10.192 10.191a7.272 7.272 0 0 0 10.284 10.284l10.192-10.191 10.192 10.192a7.272 7.272 0 0 0 10.285-10.284zm123.469 89.042-10.192-10.192 10.192-10.193a7.272 7.272 0 0 0 -10.284-10.284l-10.192 10.192-10.192-10.191a7.272 7.272 0 1 0 -10.284 10.284l10.192 10.192-10.192 10.191a7.272 7.272 0 1 0 10.284 10.281l10.192-10.191 10.192 10.191a7.272 7.272 0 0 0 10.284-10.284z\" fill-rule=\"evenodd\"></path></svg>							\n												<h5>\n													Coping Strategies												</h5>\n											<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M248.298,398.776v-96.35c0-5.971-2.694-11.517-7.393-15.216l-59.928-47.132c-2.984-2.348-7.254-2.094-9.939,0.592   l-14.349,14.349c-2.986,2.985-4.637,7.118-4.53,11.338c0.106,4.215,1.961,8.252,5.079,11.069l30.406,27.556l-1.867,1.93   c-1.111,1.149-2.665,1.808-4.265,1.808h-5.366c-4.046,0-7.953-1.201-11.299-3.474l-66.646-45.245   c-1.237-0.838-1.976-2.237-1.976-3.742v-42.516c0-8.724-7.102-15.821-15.832-15.821h-23.54c-4.142,0-7.5,3.358-7.5,7.5v72.637   c0,6.404,3.145,12.405,8.408,16.048l46.124,31.979c3.404,2.359,8.077,1.513,10.437-1.89c2.36-3.404,1.514-8.077-1.89-10.437   l-46.128-31.982c-1.222-0.846-1.951-2.235-1.951-3.718v-65.137h16.039c0.458,0,0.832,0.368,0.832,0.821v42.516   c0,6.486,3.2,12.526,8.556,16.155l66.64,45.241c5.84,3.967,12.661,6.064,19.726,6.064h5.366c5.643,0,11.128-2.326,15.047-6.38   l2.254-2.331c2.749-2.837,4.193-6.572,4.066-10.518c-0.127-3.948-1.811-7.585-4.741-10.242l-30.836-27.946   c-0.039-0.036-0.143-0.129-0.148-0.327c-0.005-0.206,0.101-0.312,0.141-0.352l9.642-9.642l54.693,43.015   c1.061,0.834,1.668,2.084,1.668,3.427v88.844h-60.32v-24.995c0-6.607-3.24-12.792-8.658-16.538l-27.532-19.089   c-3.405-2.36-8.077-1.514-10.437,1.89s-1.514,8.077,1.89,10.437l27.541,19.095c1.375,0.951,2.196,2.522,2.196,4.205v24.995h-3.726   c-4.142,0-7.5,3.358-7.5,7.5v58.66c0,0.033,0.004,0.064,0.005,0.097V504.5c0,4.142,3.358,7.5,7.5,7.5h25.971   c4.142,0,7.5-3.358,7.5-7.5c0-4.142-3.358-7.5-7.5-7.5h-18.471v-47.64h71.535v8.07c0,0.016,0.002,0.032,0.002,0.048V497h-23.519   c-4.142,0-7.5,3.358-7.5,7.5c0,4.142,3.358,7.5,7.5,7.5h31.019c4.142,0,7.5-3.358,7.5-7.5v-62.64c0-0.016-0.002-0.032-0.002-0.048   v-42.92C248.293,398.853,248.298,398.815,248.298,398.776z M233.292,434.359h-71.54V406.27h3.62c0.036,0,0.07,0.005,0.106,0.005   h67.814V434.359z\"></path>	</g></g><g>	<g>		<path d=\"M455.147,197.92h-23.535c-8.728,0-15.828,7.101-15.828,15.828v42.51c0,1.501-0.742,2.9-1.984,3.744l-66.637,45.24   c-3.349,2.273-7.258,3.475-11.304,3.475h-5.362c-1.604,0-3.162-0.66-4.279-1.813l-1.862-1.922l30.408-27.549   c3.125-2.831,4.977-6.871,5.08-11.085c0.104-4.215-1.546-8.342-4.526-11.324l-14.354-14.354c-2.687-2.686-6.956-2.939-9.94-0.592   l-47.179,37.107l-12.747,10.025c-4.695,3.693-7.389,9.238-7.389,15.211v96.35c0,0.02,0.003,0.038,0.003,0.058v42.972   c0,0.02-0.003,0.038-0.003,0.058v62.64c0,4.142,3.357,7.5,7.5,7.5h86.538c4.143,0,7.5-3.358,7.5-7.5v-46.973   c0-0.033,0.005-0.064,0.005-0.097v-58.66c0-4.142-3.357-7.5-7.5-7.5h-3.729v-24.994c0-1.68,0.824-3.254,2.204-4.211l98.021-67.96   c5.26-3.647,8.4-9.646,8.4-16.046V205.42C462.647,201.278,459.29,197.92,455.147,197.92z M350.247,497h-71.538v-39.512   c0-0.02,0.003-0.038,0.003-0.058v-8.07h71.535V497z M350.252,434.36h-71.54v-28.088h67.811c0.013,0,0.026-0.002,0.039-0.002h3.69   V434.36z M447.65,278.059h-0.003c0,1.483-0.728,2.874-1.947,3.719l-98.021,67.961c-5.42,3.759-8.656,9.941-8.656,16.538v24.994   H278.71v-88.848c0-1.343,0.605-2.591,1.662-3.421l12.747-10.025l41.946-32.992l9.646,9.646c0.039,0.04,0.144,0.144,0.139,0.347   s-0.114,0.302-0.155,0.339l-30.83,27.931c-2.928,2.653-4.611,6.289-4.74,10.238c-0.128,3.95,1.314,7.688,4.065,10.527l2.256,2.328   c3.924,4.053,9.41,6.377,15.053,6.377h5.362c7.062,0,13.884-2.097,19.729-6.064l66.638-45.241   c5.359-3.639,8.559-9.677,8.559-16.154v-42.51c0-0.457,0.371-0.828,0.828-0.828h16.035V278.059z\"></path>	</g></g><g>	<g>		<path d=\"M256.002,0c-55.95,0-102.985,41.857-109.407,97.364c-0.476,4.115,2.474,7.836,6.588,8.313   c4.12,0.482,7.836-2.474,8.313-6.588C167.042,51.15,207.671,15,256.002,15c52.466,0,95.15,42.684,95.15,95.15   c0,41.507-26.532,77.917-66.021,90.603c-1.723,0.553-3.187,1.71-4.123,3.258l-25.006,41.333l-25.006-41.333   c-0.937-1.548-2.401-2.705-4.123-3.258c-33.804-10.859-58.561-39.313-64.609-74.259c-0.707-4.082-4.587-6.812-8.669-6.111   c-4.082,0.707-6.817,4.588-6.111,8.669c6.842,39.527,34.351,71.881,72.103,85.076l30,49.587c1.358,2.246,3.792,3.618,6.417,3.618   s5.059-1.372,6.417-3.618l29.999-49.587c44.219-15.453,73.732-56.883,73.732-103.978C366.152,49.413,316.739,0,256.002,0z\"></path>	</g></g><g>	<g>		<path d=\"M315.754,102.65h-10.565c-1.234-8.128-4.447-15.612-9.123-21.955l7.492-7.492c2.929-2.929,2.929-7.678,0-10.606   c-2.93-2.929-7.678-2.929-10.607,0l-7.491,7.491c-6.343-4.676-13.827-7.888-21.955-9.123V50.4c0-4.142-3.357-7.5-7.5-7.5   c-4.142,0-7.5,3.358-7.5,7.5v10.565c-8.128,1.234-15.612,4.447-21.955,9.123l-7.491-7.491c-2.929-2.929-7.678-2.929-10.606,0   c-2.929,2.929-2.929,7.678,0,10.606l7.491,7.491c-4.676,6.343-7.889,13.828-9.123,21.956c0,0-10.569,0-10.569,0   c-4.142,0-7.5,3.358-7.5,7.5c0,4.142,3.358,7.5,7.5,7.5h10.565c1.234,8.128,4.447,15.613,9.123,21.956l-7.491,7.491   c-2.929,2.929-2.929,7.678,0,10.606c1.464,1.464,3.384,2.197,5.303,2.197s3.839-0.732,5.303-2.197l7.491-7.491   c6.343,4.676,13.828,7.889,21.956,9.123V169.9c0,4.142,3.358,7.5,7.5,7.5c4.143,0,7.5-3.358,7.5-7.5v-10.565   c8.128-1.234,15.612-4.447,21.956-9.123l7.491,7.491c1.465,1.464,3.385,2.197,5.304,2.197c1.919,0,3.839-0.732,5.304-2.197   c2.929-2.929,2.929-7.678,0-10.606l-7.491-7.491c4.676-6.343,7.889-13.828,9.123-21.956h10.565c4.143,0,7.5-3.358,7.5-7.5   C323.254,106.008,319.897,102.65,315.754,102.65z M290.751,110.164c-0.007,19.151-15.586,34.731-34.738,34.738   c-0.004,0-0.009-0.001-0.013-0.001c-0.004,0-0.009,0.001-0.013,0.001c-19.151-0.007-34.731-15.586-34.738-34.738   c0-0.004,0.001-0.009,0.001-0.013c0-0.004-0.001-0.008-0.001-0.013c0.009-19.154,15.592-34.735,34.746-34.738   c0.002,0,0.004,0,0.006,0s0.004,0,0.006,0c19.155,0.004,34.737,15.584,34.744,34.738c0,0.004-0.001,0.008-0.001,0.013   C290.75,110.155,290.751,110.16,290.751,110.164z\"></path>	</g></g><g>	<g>		<path d=\"M256.002,85.119c-13.802,0-25.032,11.229-25.032,25.031c0,13.803,11.229,25.032,25.032,25.032   c13.803,0,25.031-11.229,25.031-25.031C281.033,96.348,269.804,85.119,256.002,85.119z M256.002,120.182   c-5.532,0-10.032-4.5-10.032-10.031c0-5.532,4.5-10.032,10.032-10.032c5.531,0,10.031,4.5,10.031,10.032   C266.033,115.682,261.533,120.182,256.002,120.182z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>							\n												<h5>\n													Goal Setting												</h5>\n											<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xodm=\"http://www.corel.com/coreldraw/odm/2003\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_2077007814064\"><g id=\"_200306976\"><path d=\"m256 319.44c-1.59 0-3.12-.63-4.24-1.75-11.13-11.13-22.33-21.98-33.17-32.48-62.94-60.98-117.31-113.65-117.31-179.39 0-44.31 36.05-80.35 80.36-80.35 37.74 0 57.46 18.43 74.36 48.87 16.9-30.44 36.62-48.87 74.35-48.87 44.31 0 80.36 36.04 80.36 80.35 0 65.74-54.36 118.41-117.31 179.39-10.83 10.49-22.03 21.35-33.16 32.48-1.12 1.12-2.65 1.75-4.24 1.75zm-74.36-281.97c-37.69 0-68.35 30.66-68.35 68.35 0 60.66 52.67 111.69 113.65 170.77 9.5 9.2 19.27 18.67 29.06 28.39 9.78-9.72 19.56-19.19 29.06-28.39 60.98-59.08 113.65-110.11 113.65-170.77 0-37.69-30.66-68.35-68.35-68.35-31.58 0-49.63 13.72-68.99 52.45-1.02 2.03-3.1 3.31-5.37 3.31s-4.35-1.28-5.37-3.31c-19.36-38.73-37.41-52.45-68.99-52.45z\"></path></g><g><g id=\"_200307000\"><path d=\"m268.35 249.13h-24.7c-3.32 0-6-2.68-6-6v-11.56c-2.07-.72-4.09-1.56-6.06-2.51l-8.18 8.18c-1.13 1.12-2.65 1.75-4.25 1.75-1.59 0-3.11-.63-4.24-1.75l-17.47-17.47c-2.34-2.34-2.34-6.14 0-8.49l8.18-8.18c-.95-1.97-1.79-3.99-2.51-6.06h-11.57c-3.31 0-6-2.68-6-6v-24.7c0-3.32 2.69-6 6-6h11.57c.72-2.07 1.56-4.09 2.51-6.06l-8.18-8.18c-1.13-1.13-1.76-2.65-1.76-4.24 0-1.6.63-3.12 1.76-4.25l17.47-17.47c2.34-2.34 6.14-2.34 8.49 0l8.18 8.18c1.96-.95 3.99-1.79 6.05-2.51v-11.56c0-3.32 2.69-6 6-6h24.71c3.31 0 6 2.68 6 6v11.56c2.07.72 4.09 1.56 6.06 2.51l8.18-8.18c1.12-1.12 2.65-1.76 4.24-1.76s3.12.64 4.24 1.76l17.48 17.47c1.12 1.13 1.75 2.65 1.75 4.25 0 1.59-.63 3.11-1.75 4.24l-8.19 8.18c.96 1.97 1.8 3.99 2.52 6.06h11.56c3.32 0 6 2.68 6 6v24.7c0 3.32-2.68 6-6 6h-11.56c-.72 2.07-1.56 4.09-2.52 6.06l8.19 8.18c1.12 1.13 1.75 2.65 1.75 4.24 0 1.6-.63 3.12-1.75 4.25l-17.47 17.47c-2.35 2.34-6.15 2.34-8.49 0l-8.18-8.18c-1.97.95-3.99 1.79-6.06 2.51v11.57c0 3.31-2.69 5.99-6 5.99zm-18.7-12h12.7v-10.02c0-2.74 1.86-5.14 4.52-5.82 4.06-1.03 7.95-2.64 11.56-4.79 2.36-1.4 5.37-1.02 7.31.92l7.09 7.09 8.99-8.99-7.09-7.09c-1.94-1.94-2.32-4.95-.92-7.31 2.15-3.6 3.76-7.49 4.79-11.56.68-2.66 3.07-4.52 5.82-4.52h10.02v-12.7h-10.02c-2.75 0-5.14-1.87-5.82-4.52-1.03-4.07-2.64-7.95-4.79-11.56-1.4-2.36-1.03-5.37.92-7.31l7.09-7.1-8.99-8.98-7.09 7.09c-1.94 1.94-4.95 2.32-7.31.92-3.61-2.15-7.5-3.77-11.56-4.8-2.66-.67-4.52-3.07-4.52-5.81v-10.03h-12.7v10.03c0 2.74-1.87 5.14-4.53 5.81-4.05 1.04-7.94 2.65-11.55 4.8-2.36 1.4-5.37 1.02-7.31-.92l-7.1-7.09-8.98 8.99 7.09 7.09c1.94 1.94 2.32 4.95.92 7.31-2.15 3.61-3.76 7.5-4.8 11.55-.67 2.66-3.07 4.53-5.81 4.53h-10.02v12.7h10.02c2.74 0 5.14 1.86 5.81 4.52 1.04 4.06 2.65 7.95 4.8 11.56 1.4 2.36 1.02 5.37-.92 7.31l-7.09 7.09 8.98 8.99 7.1-7.09c1.94-1.94 4.95-2.32 7.31-.92 3.61 2.15 7.5 3.76 11.56 4.79 2.66.68 4.52 3.08 4.52 5.82z\"></path></g><g id=\"_200306760\"><path d=\"m256 215.48c-20.29 0-36.8-16.5-36.8-36.79s16.51-36.8 36.8-36.8 36.79 16.51 36.79 36.8-16.5 36.79-36.79 36.79zm0-61.59c-13.67 0-24.8 11.13-24.8 24.8s11.13 24.79 24.8 24.79 24.79-11.12 24.79-24.79-11.12-24.8-24.79-24.8z\"></path></g></g><g id=\"_200306784\"><path d=\"m461.9 340.14c-.4 0-.8-.04-1.21-.12-2.77-.57-4.77-3.01-4.79-5.84-.01-.8-.54-16.35-18.14-25.35-4.77 6.05-14.98 15.83-31.26 15.83-7.09 0-14.53-1.91-22.17-5.68-1.97 2.49-4.39 6.45-4.71 11.19-.17 2.67-2.1 4.89-4.71 5.46-2.62.57-5.29-.67-6.56-3.03-.73-1.35-17.54-33.58 6.24-66.87.25-.34.54-.67.85-.95.53-.48 13.04-11.64 29.73-11.64 8.33 0 16.16 2.73 23.32 8.11 6.78.84 29.41 4.94 40.34 22.87 8.21 13.48 7.74 31.11-1.42 52.39-.96 2.24-3.15 3.63-5.51 3.63zm-26.24-44.82c.73 0 1.45.13 2.16.41 12.4 4.82 19.68 12.11 23.97 19.04 1.81-9.72.76-17.87-3.18-24.36-9.39-15.48-32.65-17.38-32.88-17.39-1.23-.09-2.4-.56-3.35-1.33-5.36-4.35-11.14-6.55-17.2-6.55-10.52 0-19.21 6.52-21.25 8.17-10.03 14.4-10.85 28.57-9.39 38.73 2.4-3.14 4.55-4.96 4.74-5.12 1.93-1.61 4.66-1.85 6.84-.59 7.27 4.2 14.13 6.33 20.38 6.33 15.81 0 23.56-13.64 23.88-14.22 1.09-1.97 3.15-3.12 5.28-3.12z\"></path></g><g id=\"_200307264\"><path d=\"m419.46 411.58c-.16 0-.32 0-.48 0-10.3-.15-20.06-5.17-28.23-14.52-7.44-8.5-13.2-20.37-16.78-34.51-9.81-1.95-15.33-9.01-16.53-15.9-1.66-9.54 3.98-18.57 14.03-22.48 3.08-1.2 6.56.33 7.76 3.42s-.33 6.56-3.41 7.77c-5.64 2.19-7.06 6.34-6.56 9.23.53 3.02 3.36 6.31 9.74 6.48 2.77.08 5.12 2.03 5.71 4.73 5.7 26.37 19.22 43.55 34.45 43.78h.29c14.2 0 26.75-15.15 32.81-39.65.62-2.5 2.75-4.32 5.31-4.54 5.81-.5 8.33-3.74 8.74-6.61.43-2.97-1.08-6.91-6.58-9.05-3.09-1.2-4.62-4.68-3.42-7.76 1.2-3.09 4.68-4.62 7.77-3.42 9.78 3.8 15.45 12.62 14.11 21.93-1.15 8.02-6.99 14.03-15.29 16.15-7.91 27.89-24.31 44.95-43.44 44.95z\"></path></g><g id=\"_200306808\"><path d=\"m332.55 486.53c-1.59 0-3.11-.63-4.24-1.75-1.12-1.13-1.76-2.65-1.76-4.25 0-44.88 21.25-52.28 38.32-58.24 13.67-4.77 23.55-8.21 24.07-29.7.08-3.31 2.86-5.89 6.15-5.85 3.31.08 5.93 2.83 5.85 6.15-.73 29.78-17.41 35.6-32.12 40.73-15.3 5.34-28.64 9.99-30.13 40.91h161.17c-1.49-30.92-14.83-35.57-30.13-40.91-14.73-5.13-31.42-10.96-32.12-40.8-.08-3.31 2.54-6.06 5.85-6.14 3.31-.11 6.06 2.54 6.14 5.86.51 21.53 10.4 24.98 24.08 29.75 17.07 5.96 38.32 13.36 38.32 58.24 0 3.31-2.69 6-6 6z\"></path></g><g id=\"_200306616\"><path d=\"m419.27 443.04c-15.8 0-30.68-6.12-41.9-17.25-2.36-2.33-2.38-6.13-.04-8.48 2.33-2.35 6.13-2.37 8.48-.04 8.96 8.88 20.85 13.77 33.46 13.77 12.62 0 24.5-4.89 33.46-13.77 2.36-2.33 6.16-2.31 8.49.04s2.31 6.15-.04 8.48c-11.22 11.13-26.11 17.25-41.91 17.25z\"></path></g><g id=\"_200307672\"><path d=\"m374.04 486.53c-3.32 0-6-2.68-6-6v-19.82c0-3.31 2.68-6 6-6 3.31 0 6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307888\"><path d=\"m464.51 486.53c-3.31 0-6-2.68-6-6v-19.82c0-3.31 2.69-6 6-6s6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307744\"><path d=\"m135.35 340.14c-.4 0-.8-.04-1.21-.12-2.77-.57-4.77-3.01-4.79-5.84-.01-.8-.54-16.35-18.14-25.35-4.77 6.05-14.98 15.83-31.26 15.83-7.09 0-14.53-1.91-22.17-5.68-1.97 2.49-4.39 6.45-4.7 11.19-.18 2.67-2.11 4.89-4.72 5.46-2.62.57-5.29-.67-6.56-3.03-.72-1.35-17.54-33.58 6.24-66.87.25-.34.54-.67.86-.95.52-.48 13.03-11.64 29.73-11.64 8.32 0 16.16 2.73 23.31 8.11 6.78.84 29.41 4.94 40.34 22.87 8.22 13.48 7.74 31.11-1.42 52.39-.96 2.24-3.15 3.63-5.51 3.63zm-26.25-44.82c.72 0 1.46.13 2.17.41 12.4 4.82 19.69 12.1 23.97 19.04 1.81-9.72.76-17.87-3.18-24.36-9.39-15.48-32.65-17.37-32.88-17.39-1.22-.09-2.4-.56-3.35-1.33-5.36-4.35-11.14-6.55-17.2-6.55-10.52 0-19.21 6.52-21.24 8.17-10.04 14.4-10.85 28.57-9.4 38.73 2.4-3.14 4.55-4.96 4.74-5.12 1.93-1.61 4.67-1.85 6.84-.59 7.27 4.2 14.13 6.33 20.38 6.33 16.01 0 23.79-14.05 23.86-14.2 1.08-1.98 3.14-3.14 5.29-3.14z\"></path></g><g id=\"_200307960\"><path d=\"m92.91 411.58c-.16 0-.32 0-.48 0-10.3-.15-20.06-5.17-28.23-14.52-7.44-8.5-13.2-20.37-16.79-34.51-9.8-1.95-15.32-9.01-16.52-15.9-1.66-9.54 3.98-18.57 14.03-22.48 3.08-1.2 6.56.33 7.76 3.42s-.33 6.56-3.41 7.77c-5.64 2.19-7.06 6.34-6.56 9.23.53 3.02 3.36 6.31 9.74 6.48 2.77.08 5.12 2.03 5.71 4.73 5.7 26.37 19.22 43.55 34.45 43.78h.29c14.2 0 26.75-15.15 32.81-39.65.62-2.5 2.75-4.32 5.31-4.54 5.81-.5 8.33-3.74 8.74-6.61.43-2.97-1.08-6.91-6.58-9.05-3.09-1.2-4.62-4.68-3.42-7.76 1.2-3.09 4.68-4.62 7.77-3.42 9.78 3.8 15.45 12.62 14.11 21.93-1.16 8.02-6.99 14.03-15.3 16.15-7.9 27.89-24.3 44.95-43.43 44.95z\"></path></g><g id=\"_200307408\"><path d=\"m6 486.53c-1.59 0-3.11-.63-4.24-1.75-1.12-1.13-1.76-2.65-1.76-4.25 0-44.88 21.25-52.28 38.32-58.24 13.67-4.77 23.55-8.21 24.08-29.7.08-3.31 2.82-5.89 6.14-5.85 3.31.08 5.93 2.83 5.85 6.15-.73 29.78-17.41 35.6-32.12 40.73-15.3 5.34-28.64 9.99-30.13 40.91h161.17c-1.5-30.92-14.83-35.57-30.13-40.91-14.73-5.13-31.42-10.96-32.12-40.8-.08-3.31 2.54-6.06 5.85-6.14 3.27-.11 6.06 2.54 6.14 5.86.51 21.53 10.4 24.98 24.08 29.75 17.07 5.96 38.32 13.36 38.32 58.24 0 3.31-2.69 6-6 6h-173.45z\"></path></g><g id=\"_200307648\"><path d=\"m92.73 443.04c-15.81 0-30.69-6.12-41.91-17.25-2.36-2.33-2.37-6.13-.04-8.48s6.13-2.37 8.48-.04c8.97 8.88 20.85 13.77 33.47 13.77 12.61 0 24.49-4.89 33.45-13.77 2.36-2.33 6.16-2.31 8.49.04s2.31 6.15-.04 8.48c-11.22 11.13-26.11 17.25-41.9 17.25z\"></path></g><g id=\"_200307720\"><path d=\"m47.49 486.53c-3.32 0-6-2.68-6-6v-19.82c0-3.31 2.68-6 6-6 3.31 0 6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307456\"><path d=\"m137.96 486.53c-3.31 0-6-2.68-6-6v-19.82c0-3.31 2.69-6 6-6s6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307840\"><path d=\"m94.44 269.46c-3.31 0-6-2.68-6-6v-23.34c0-8.01 6.52-14.53 14.53-14.53h70.38c3.31 0 6 2.69 6 6 0 3.32-2.69 6-6 6h-70.38c-1.37 0-2.53 1.16-2.53 2.53v23.34c0 3.32-2.68 6-6 6zm323.12-1.73c-3.32 0-6-2.69-6-6v-21.61c0-1.37-1.16-2.53-2.53-2.53h-70.38c-3.31 0-6-2.68-6-6 0-3.31 2.69-6 6-6h70.37c8.02 0 14.54 6.52 14.54 14.53v21.61c0 3.31-2.69 6-6 6z\"></path></g></g></g></svg>							\n												<h5>\n													Relationship Improvement												</h5>\n											<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m434.61 333.03-21.34-36.58c6.76-18.2 7.07-35.07.96-51.47-5.64-15.15-16.96-29.98-34.59-45.33-11.13-9.69-23.22-17.82-35.9-24.21.12-3.43-1.13-6.87-3.68-9.41l-11.45-11.45c-.24-.24-.28-.47-.12-.78 1.77-3.49 3.28-7.13 4.5-10.84.11-.32.3-.46.64-.46h16.19c6.99 0 12.67-5.68 12.67-12.67v-22.44c0-6.99-5.68-12.67-12.67-12.67h-16.19c-.34 0-.53-.14-.64-.46-1.22-3.71-2.73-7.35-4.5-10.84-.15-.3-.12-.53.12-.77l11.45-11.45c2.39-2.39 3.71-5.57 3.71-8.96s-1.32-6.57-3.71-8.96l-15.87-15.87c-2.39-2.39-5.57-3.71-8.96-3.71s-6.57 1.32-8.96 3.71l-11.45 11.45c-.24.24-.47.28-.77.12-3.48-1.77-7.13-3.28-10.84-4.5-.32-.11-.46-.3-.46-.64v-16.17c0-6.99-5.68-12.67-12.67-12.67h-22.44c-6.99 0-12.67 5.68-12.67 12.67v16.19c0 .34-.14.53-.46.64-3.7 1.22-7.35 2.73-10.84 4.5-.3.15-.54.12-.77-.12l-11.45-11.45c-2.39-2.39-5.57-3.71-8.96-3.71s-6.57 1.32-8.96 3.71l-15.87 15.87c-2.39 2.39-3.71 5.57-3.71 8.96s1.32 6.57 3.71 8.96l11.45 11.45c.24.24.28.47.12.77-1.77 3.49-3.28 7.13-4.5 10.84-.11.32-.3.46-.64.46h-16.19c-6.99 0-12.67 5.68-12.67 12.67v10.02c-.5 1.37-.76 2.83-.76 4.3v16.19c0 .34-.14.53-.46.64-3.7 1.22-7.35 2.73-10.84 4.5-.3.15-.54.12-.78-.12l-11.45-11.45c-2.39-2.39-5.57-3.71-8.96-3.71s-6.57 1.32-8.96 3.71l-15.87 15.87c-2.39 2.39-3.71 5.57-3.71 8.96s1.32 6.57 3.71 8.96l11.45 11.45c.24.24.28.47.12.77-1.77 3.49-3.28 7.13-4.49 10.84-.11.32-.3.46-.64.46h-16.16c-6.99 0-12.67 5.68-12.67 12.67v22.44c0 6.99 5.68 12.67 12.67 12.67h16.19c.34 0 .53.14.63.46 1.22 3.7 2.73 7.35 4.5 10.84.15.3.12.53-.12.77l-11.45 11.45c-2.39 2.39-3.71 5.57-3.71 8.96s1.32 6.57 3.71 8.96l15.87 15.87c2.39 2.39 5.57 3.71 8.96 3.71s6.57-1.32 8.96-3.71l11.45-11.45c.24-.24.47-.28.78-.12 2.63 1.33 5.35 2.52 8.12 3.55 3.63 25.86 18.43 52.67 31.88 77.01 3.47 6.29 6.76 12.23 9.84 18.11 12.69 35.72 7.66 78.5-12.56 106.56l-6.85 9.51h173.63v-44.26c38.01-.13 59.59-5.99 67.67-18.29 6.96-10.6 1.74-22.31-1.38-29.3-.44-.98-.98-2.19-1.34-3.11 3.35-4.7 4.47-10.39 3.12-16.07.14-.2.3-.41.43-.59 2.26-3.05 6.46-8.74 3.06-18.47-.43-1.24-.63-2.03-.72-2.5.71-.41 1.88-.97 2.87-1.44 1.82-.86 4.08-1.94 6.69-3.46 4.46-2.6 7.64-6.79 8.96-11.8s.59-10.29-2.01-14.74zm-267.36-225.64c0-.36.31-.67.67-.67h16.19c5.49 0 10.32-3.5 12.04-8.71 1.03-3.13 2.31-6.21 3.8-9.16 2.48-4.9 1.54-10.8-2.34-14.68l-11.45-11.45c-.13-.13-.19-.29-.19-.47 0-.19.06-.35.19-.47l15.87-15.87c.25-.25.69-.25.95 0l11.45 11.45c3.88 3.88 9.78 4.82 14.68 2.34 2.95-1.49 6.03-2.77 9.16-3.8 5.21-1.71 8.72-6.55 8.72-12.04v-16.19c0-.36.31-.67.67-.67h22.44c.36 0 .67.31.67.67v16.19c0 5.49 3.5 10.32 8.71 12.04 3.13 1.03 6.21 2.31 9.16 3.8 4.9 2.48 10.8 1.54 14.68-2.34l11.45-11.45c.25-.25.69-.25.95 0l15.87 15.87c.13.13.19.29.19.47 0 .19-.06.35-.19.47l-11.45 11.45c-3.88 3.88-4.83 9.78-2.34 14.68 1.49 2.95 2.77 6.03 3.8 9.16 1.71 5.21 6.55 8.71 12.04 8.71h16.19c.36 0 .67.31.67.67v22.44c0 .36-.31.67-.67.67h-16.19c-5.49 0-10.32 3.5-12.04 8.71-1.03 3.13-2.31 6.21-3.8 9.16-2.48 4.9-1.54 10.8 2.34 14.68l4.07 4.07c-6.1-2.13-12.28-3.88-18.52-5.21-5.2-1.11-10.41-1.91-15.6-2.44 12.29-9.41 20.24-24.22 20.24-40.86 0-28.37-23.08-51.45-51.45-51.45s-51.45 23.08-51.45 51.45c0 20.1 11.59 37.53 28.43 45.99-1.46.45-2.91.93-4.35 1.43-13.15 4.6-25.02 11.14-35.4 19.37l-9.95-9.95c-.13-.13-.19-.28-.19-.47s.06-.35.19-.47l11.45-11.45c3.88-3.88 4.82-9.78 2.34-14.68-1.49-2.95-2.77-6.03-3.8-9.16-1.71-5.21-6.55-8.72-12.04-8.72h-16.19c-.36 0-.67-.31-.67-.67zm91.61 50.67c-21.75 0-39.45-17.7-39.45-39.45s17.7-39.45 39.45-39.45 39.45 17.7 39.45 39.45-17.7 39.45-39.45 39.45zm-81.2 25.88 9.4 9.4c-14.24 13.88-24.92 31.39-31.29 51.61-10.4-7.3-16.85-19.33-16.85-32.3 0-20.29 15.4-37.05 35.13-39.21-.06.51-.1 1.02-.1 1.54 0 3.39 1.32 6.57 3.71 8.96zm-43.73 89.97-11.45 11.45c-.25.25-.69.25-.94 0l-15.87-15.87c-.16-.16-.19-.34-.19-.47 0-.19.06-.35.19-.47l11.45-11.45c3.88-3.88 4.83-9.78 2.34-14.68-1.49-2.95-2.77-6.03-3.8-9.16-1.71-5.21-6.55-8.72-12.04-8.72h-16.19c-.36 0-.67-.31-.67-.67v-22.44c0-.36.31-.67.67-.67h16.19c5.49 0 10.32-3.5 12.04-8.71 1.03-3.13 2.31-6.21 3.8-9.16 2.48-4.9 1.54-10.8-2.34-14.68l-11.45-11.45c-.16-.16-.19-.34-.19-.47 0-.19.06-.35.19-.47l15.87-15.87c.25-.25.69-.25.95 0l11.45 11.45c3.88 3.88 9.78 4.82 14.68 2.34 2.95-1.49 6.03-2.77 9.16-3.8 3.75-1.23 6.61-4.09 7.92-7.63.72.13 1.47.21 2.23.21h16.19c.34 0 .53.14.63.46 1.22 3.7 2.73 7.35 4.5 10.84.15.3.12.53-.12.77l-6.78 6.78c-1.31-.1-2.64-.16-3.95-.16-28.37 0-51.45 23.08-51.45 51.45 0 18.39 9.91 35.35 25.61 44.49-.35 1.61-.69 3.23-.99 4.86-.64 3.46-.96 6.96-1.05 10.48-.63-.3-1.27-.6-1.89-.91-4.92-2.5-10.82-1.55-14.7 2.33zm291.06 70.74c-.5 1.91-1.71 3.5-3.4 4.49-2.17 1.27-4.1 2.18-5.8 2.99-6.98 3.32-12.43 7.02-8.33 18.75 1.31 3.74.35 5.03-1.38 7.37-1.5 2.02-4 5.41-2.62 9.89.88 2.86.29 5.54-1.71 7.76-3.67 4.08-1.39 9.2.82 14.14 3.1 6.95 5.42 13.09 2.31 17.82-3.31 5.04-15.96 13.42-63.57 12.85l-6.07-.07v44.36h-138.97c17.34-30.83 20.69-72.96 7.92-108.51l-.14-.39-.19-.37c-3.21-6.12-6.59-12.24-10.17-18.72-17.49-31.65-35.57-64.37-30.34-92.85 7.68-41.83 33.96-73.47 72.1-86.8 44.14-15.44 96.37-3.43 136.3 31.34 33.22 28.92 41.99 54.65 29.31 86.02l-1.1 2.73 24.28 41.62c.99 1.69 1.25 3.67.75 5.58zm-145.92-155.19c-51.35 0-93.14 41.78-93.14 93.14 0 51.35 41.78 93.13 93.14 93.13s93.14-41.78 93.14-93.13c0-51.36-41.78-93.14-93.14-93.14zm0 174.27c-44.74 0-81.14-36.4-81.14-81.13s36.4-81.14 81.14-81.14 81.14 36.4 81.14 81.14-36.4 81.13-81.14 81.13zm29.28-94.9c-3.51-13.57-12.31-26.17-25.63-36.38-2.15-1.65-5.15-1.65-7.3 0-13.32 10.22-22.12 22.81-25.63 36.38-7.81-2.14-16.51-2.65-25.56-1.45-2.69.35-4.81 2.47-5.16 5.16-2.5 18.97 2.38 35.68 13.74 47.04 9.42 9.42 22.51 14.38 37.52 14.38 2.85 0 5.77-.19 8.74-.55 2.98.36 5.89.55 8.74.55 15.01 0 28.1-4.96 37.52-14.38 11.36-11.36 16.24-28.07 13.74-47.04-.35-2.69-2.47-4.81-5.16-5.16-9.05-1.19-17.75-.68-25.56 1.45zm-29.28-23.87c12.29 10.71 19.01 23.83 19.01 37.34s-6.71 26.63-19.01 37.34c-12.29-10.71-19.01-23.83-19.01-37.34s6.72-26.63 19.01-37.34zm-48.55 33.87c6.31-.35 12.26.35 17.57 2.02-.01.48-.02.96-.02 1.45 0 14.08 5.57 27.65 15.92 39.27-9.08-1.12-16.89-4.67-22.68-10.47-7.77-7.75-11.52-19.08-10.79-32.27zm86.33 32.27c-5.8 5.8-13.61 9.34-22.68 10.47 10.35-11.63 15.91-25.19 15.91-39.27 0-.48-.01-.96-.02-1.45 5.31-1.67 11.25-2.36 17.57-2.02.73 13.19-3.03 24.52-10.78 32.27z\"></path></svg>							\n												<h5>\n													Skill Development												</h5>\n											<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m273.006 83.567v168.425h87.5a4 4 0 1 1 0 8h-87.5v168.433h87.5a4 4 0 0 1 0 8h-91.5a4 4 0 0 1 -4-4v-172.431h-23.979a4 4 0 1 1 0-8h23.973v-172.428a4 4 0 0 1 4-4h91.5a4 4 0 0 1 0 8zm170 415.36a66.5 66.5 0 1 0 -66.5-66.5 66.569 66.569 0 0 0 66.5 66.5zm0-352.86a66.5 66.5 0 1 0 -66.5-66.5 66.569 66.569 0 0 0 66.5 66.5zm0 176.427a66.5 66.5 0 1 0 -66.498-66.494 66.569 66.569 0 0 0 66.5 66.494zm-344.212-195.217-6.473 100.7a4.046 4.046 0 0 0 .55 2.3l17.454 29.364a3.994 3.994 0 0 0 6.88 0l17.454-29.364a3.983 3.983 0 0 0 .55-2.3l-6.473-100.7 60.793 15.639c16.032 4.116 26.821 18.062 27.5 35.53v140.818a19.6 19.6 0 0 1 -6.9 15.283 37.861 37.861 0 0 1 -11.274 6.887 15.2 15.2 0 0 1 -12.961-.608v-142.018a4 4 0 1 0 -8 0v291.546a13.657 13.657 0 0 1 -13.646 13.639h-32.839a13.657 13.657 0 0 1 -13.646-13.639v-130.33a4 4 0 1 0 -8 0v130.33a13.657 13.657 0 0 1 -13.646 13.639h-32.831a13.651 13.651 0 0 1 -13.639-13.639v-291.546a4 4 0 0 0 -8 0v142.018a15.314 15.314 0 0 1 -12.967.608 37.924 37.924 0 0 1 -11.28-6.887 19.616 19.616 0 0 1 -6.895-15.283v-140.818c.672-17.468 11.46-31.414 27.492-35.53l60.793-15.639zm-96.287 50.948v141.039a27.649 27.649 0 0 0 9.61 21.284 45.823 45.823 0 0 0 13.638 8.338 23.478 23.478 0 0 0 15.89.6v140.868a21.667 21.667 0 0 0 21.641 21.646h32.836a21.632 21.632 0 0 0 17.647-9.131 21.608 21.608 0 0 0 17.64 9.131h32.836a21.673 21.673 0 0 0 21.647-21.641v-140.88a22.827 22.827 0 0 0 7.016 1.114 24.352 24.352 0 0 0 8.867-1.707 45.84 45.84 0 0 0 13.639-8.338 27.648 27.648 0 0 0 9.609-21.284v-141.039c-.786-21.127-13.932-38.031-33.493-43.06l-61.836-15.911c22.691-13.039 31.486-42.089 31.807-67.909.193-15.46-4.622-28.557-13.924-37.887a47.161 47.161 0 0 0 -33.301-13.458h-.943a47.221 47.221 0 0 0 -33.379 13.46c-9.3 9.33-14.118 22.427-13.925 37.887.322 25.82 9.124 54.87 31.815 67.909l-61.836 15.909c-19.562 5.029-32.715 21.933-33.5 43.06zm444.493-61.479a4 4 0 1 1 -8 0v-33.179h-33.164a4 4 0 0 1 0-8h33.172v-33.174a4 4 0 0 1 8 0v33.172h33.172a4 4 0 0 1 0 8h-33.18v33.179zm0 102.081v33.165h33.172a4 4 0 1 1 0 8h-33.172v33.171a4 4 0 1 1 -8 0v-33.169h-33.164a4 4 0 0 1 0-8h33.172v-33.167a4 4 0 1 1 8 0zm0 176.419v33.179h33.172a4 4 0 0 1 0 8h-33.172v33.175a4 4 0 0 1 -8 0v-33.173h-33.164a4 4 0 0 1 0-8h33.172v-33.181a4 4 0 1 1 8 0z\" fill-rule=\"evenodd\"></path></svg>							\n												<h5>\n													Tailored Approaches												</h5>\n											<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.</p>										\n		Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.', 'Services', '', 'publish', 'closed', 'closed', '', 'services', '', '', '2026-06-17 14:29:18', '2026-06-17 14:29:18', '', 0, 'https://mrarif.me/optimalmentalwellness/?page_id=14', 0, 'page', '', 0),
(15, 1, '2026-06-16 07:16:35', '2026-06-16 07:16:35', '', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-16 07:16:35', '2026-06-16 07:16:35', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=15', 0, 'revision', '', 0),
(16, 1, '2026-06-16 07:16:51', '2026-06-16 07:16:51', '', 'Blog', '', 'publish', 'closed', 'closed', '', 'blog', '', '', '2026-06-16 07:16:51', '2026-06-16 07:16:51', '', 0, 'https://mrarif.me/optimalmentalwellness/?page_id=16', 0, 'page', '', 0),
(17, 1, '2026-06-16 07:16:51', '2026-06-16 07:16:51', '', 'Blog', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-06-16 07:16:51', '2026-06-16 07:16:51', '', 16, 'https://mrarif.me/optimalmentalwellness/?p=17', 0, 'revision', '', 0),
(18, 1, '2026-06-16 07:17:15', '2026-06-16 07:17:15', '<h2>Book an Appointment</h2>\n			<!-- Step 1: Service Selection -->\n				<h3>\n					Select a Service				</h3>\n				<p>\n					Choose the service you would like to book.				</p>\n						Loading services…					\n			<!-- Step 2: Date & Time -->\n				<h3>\n					Choose Date &amp; Time				</h3>\n				<p>\n					Select your preferred appointment date and time slot.				</p>\n						<h4>Date</h4>\n						<h4>Available Slots</h4>\n							<p>\n								Please select a date to see available slots.							</p>\n			<!-- Step 3: Customer Form -->\n				<h3>\n					Your Information				</h3>\n				<p>\n					Please fill in your details below.				</p>\n						Loading form…					\n			<!-- Step 4: Summary -->\n				<h3>\n					Confirm Your Booking				</h3>\n				<p>\n					Please review your booking details before confirming.				</p>\n			<!-- Success Screen -->\n				✅\n				<h3>\n					Booking Confirmed!				</h3>\n				<p></p>\n				<p></p>\n			<!-- Navigation -->\n				<button type=\"button\" style=\"display:none;\">\n					← Back				</button>\n				<button type=\"button\">\n					Next →\n				</button>\n			<!-- Status messages -->', 'Book appointment', '', 'publish', 'closed', 'closed', '', 'book-appointment', '', '', '2026-06-17 12:08:10', '2026-06-17 12:08:10', '', 0, 'https://mrarif.me/optimalmentalwellness/?page_id=18', 0, 'page', '', 0),
(19, 1, '2026-06-16 07:17:15', '2026-06-16 07:17:15', '', 'Book appointment', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-06-16 07:17:15', '2026-06-16 07:17:15', '', 18, 'https://mrarif.me/optimalmentalwellness/?p=19', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(20, 1, '2026-06-16 07:20:57', '2026-06-16 07:20:57', '<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						09:30 AM - 04:30 PM					\n							Sat - Sun						\n										<a href=\"https://clinikehr.com/book/optimal-mental-health-and-wellness-group\" target=\"_blank\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>', 'Contact Us', '', 'publish', 'closed', 'closed', '', 'contact-us', '', '', '2026-07-13 16:30:34', '2026-07-13 16:30:34', '', 0, 'https://mrarif.me/optimalmentalwellness/?page_id=20', 0, 'page', '', 0),
(21, 1, '2026-06-16 07:20:57', '2026-06-16 07:20:57', '', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-06-16 07:20:57', '2026-06-16 07:20:57', '', 20, 'https://mrarif.me/optimalmentalwellness/?p=21', 0, 'revision', '', 0),
(22, 1, '2026-06-16 07:21:14', '2026-06-16 07:21:14', '', 'Default Kit', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2026-06-16 07:21:14', '2026-06-16 07:21:14', '', 7, 'https://mrarif.me/optimalmentalwellness/?p=22', 0, 'revision', '', 0),
(23, 1, '2026-06-16 07:25:32', '0000-00-00 00:00:00', '', 'Home', '', 'draft', 'closed', 'closed', '', '', '', '', '2026-06-16 07:25:32', '0000-00-00 00:00:00', '', 0, 'https://mrarif.me/optimalmentalwellness/?p=23', 1, 'nav_menu_item', '', 0),
(24, 1, '2026-06-17 11:16:01', '2026-06-16 07:28:45', ' ', '', '', 'publish', 'closed', 'closed', '', '24', '', '', '2026-06-17 11:16:01', '2026-06-17 11:16:01', '', 0, 'https://mrarif.me/optimalmentalwellness/?p=24', 5, 'nav_menu_item', '', 0),
(26, 1, '2026-06-17 11:16:01', '2026-06-16 07:28:45', ' ', '', '', 'publish', 'closed', 'closed', '', '26', '', '', '2026-06-17 11:16:01', '2026-06-17 11:16:01', '', 0, 'https://mrarif.me/optimalmentalwellness/?p=26', 8, 'nav_menu_item', '', 0),
(27, 1, '2026-06-17 11:16:01', '2026-06-16 07:28:45', ' ', '', '', 'publish', 'closed', 'closed', '', '27', '', '', '2026-06-17 11:16:01', '2026-06-17 11:16:01', '', 0, 'https://mrarif.me/optimalmentalwellness/?p=27', 1, 'nav_menu_item', '', 0),
(28, 1, '2026-06-17 11:16:01', '2026-06-16 07:28:45', ' ', '', '', 'publish', 'closed', 'closed', '', '28', '', '', '2026-06-17 11:16:01', '2026-06-17 11:16:01', '', 0, 'https://mrarif.me/optimalmentalwellness/?p=28', 3, 'nav_menu_item', '', 0),
(29, 1, '2026-06-16 07:25:32', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'closed', 'closed', '', '', '', '', '2026-06-16 07:25:32', '0000-00-00 00:00:00', '', 0, 'https://mrarif.me/optimalmentalwellness/?p=29', 1, 'nav_menu_item', '', 0),
(30, 1, '2026-06-17 11:16:01', '2026-06-16 07:28:45', ' ', '', '', 'publish', 'closed', 'closed', '', '30', '', '', '2026-06-17 11:16:01', '2026-06-17 11:16:01', '', 0, 'https://mrarif.me/optimalmentalwellness/?p=30', 4, 'nav_menu_item', '', 0),
(67, 1, '2026-06-16 10:07:37', '2026-06-16 10:07:37', '<ul>\n							<li>\n											<a href=\"mailto:info@optimalmentalwellness.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@optimalmentalwellness.org\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:9049017913\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										904-901-7913\n											</a>\n									</li>\n						</ul>\n																	<img width=\"878\" height=\"420\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Optimal-Mental-Health-And-Wellness-logo-a.png\" alt=\"\" />																					<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book Now\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2026-06-16 10:07:37', '2026-06-16 10:07:37', '', 48, 'https://mrarif.me/optimalmentalwellness/?p=67', 0, 'revision', '', 0),
(31, 1, '2026-06-16 07:37:12', '2026-06-16 07:37:12', '<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.', 'About Us', '', 'publish', 'closed', 'closed', '', 'about-us', '', '', '2026-06-17 14:27:19', '2026-06-17 14:27:19', '', 0, 'https://mrarif.me/optimalmentalwellness/?page_id=31', 0, 'page', '', 0),
(32, 1, '2026-06-16 07:37:05', '2026-06-16 07:37:05', '', 'About Us', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-06-16 07:37:05', '2026-06-16 07:37:05', '', 31, 'https://mrarif.me/optimalmentalwellness/?p=32', 0, 'revision', '', 0),
(33, 1, '2026-06-17 11:16:01', '2026-06-16 07:37:44', ' ', '', '', 'publish', 'closed', 'closed', '', '33', '', '', '2026-06-17 11:16:01', '2026-06-17 11:16:01', '', 0, 'https://mrarif.me/optimalmentalwellness/?p=33', 2, 'nav_menu_item', '', 0),
(34, 1, '2026-06-16 08:12:46', '2026-06-16 08:12:46', '', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 08:12:46', '2026-06-16 08:12:46', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=34', 0, 'revision', '', 0),
(35, 1, '2026-06-16 08:12:46', '2026-06-16 08:12:46', '', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 08:12:46', '2026-06-16 08:12:46', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=35', 0, 'revision', '', 0),
(36, 1, '2026-06-16 08:12:46', '2026-06-16 08:12:46', '<h1>Welcome to Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 08:12:46', '2026-06-16 08:12:46', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=36', 0, 'revision', '', 0),
(37, 1, '2026-06-16 08:14:58', '2026-06-16 08:14:58', '<h1>Welcome to Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 08:14:58', '2026-06-16 08:14:58', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=37', 0, 'revision', '', 0),
(38, 1, '2026-06-16 08:14:58', '2026-06-16 08:14:58', '<h1>Welcome to Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 08:14:58', '2026-06-16 08:14:58', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=38', 0, 'revision', '', 0),
(39, 1, '2026-06-16 08:14:59', '2026-06-16 08:14:59', '<h1>Welcome to Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"#\">\n									Learn More\n					</a>\n									<h5>About Us</h5>					<h2>Optimal Mental Health And Wellness</h2>		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br />We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 08:14:59', '2026-06-16 08:14:59', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=39', 0, 'revision', '', 0),
(40, 1, '2026-06-16 08:19:00', '2026-06-16 08:19:00', '', 'banner ab', '', 'inherit', 'closed', 'closed', '', 'banner-ab', '', '', '2026-06-16 08:19:00', '2026-06-16 08:19:00', '', 10, 'https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab.jpg', 0, 'attachment', 'image/jpeg', 0),
(41, 1, '2026-06-16 08:19:27', '2026-06-16 08:19:27', '<h1>Welcome to Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"#\">\n									Learn More\n					</a>\n									<h5>About Us</h5>					<h2>Optimal Mental Health And Wellness</h2>		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br />We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 08:19:27', '2026-06-16 08:19:27', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=41', 0, 'revision', '', 0),
(42, 1, '2026-06-16 08:19:27', '2026-06-16 08:19:27', '<h1>Welcome to Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"#\">\n									Learn More\n					</a>\n									<h5>About Us</h5>					<h2>Optimal Mental Health And Wellness</h2>		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br />We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 08:19:27', '2026-06-16 08:19:27', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=42', 0, 'revision', '', 0),
(43, 1, '2026-06-16 08:19:27', '2026-06-16 08:19:27', '<h1>Welcome to Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"#\">\n									Learn More\n					</a>\n									<h5>About Us</h5>					<h2>Optimal Mental Health And Wellness</h2>		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br />We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 08:19:27', '2026-06-16 08:19:27', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=43', 0, 'revision', '', 0),
(48, 1, '2026-06-16 09:32:41', '2026-06-16 09:32:41', '<ul>\n							<li>\n											<a href=\"mailto:info@optimalmentalwellness.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@optimalmentalwellness.org\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:8772967846\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										877 296 7846\n											</a>\n									</li>\n						</ul>\n																	<img width=\"878\" height=\"420\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Optimal-Mental-Health-And-Wellness-logo-a.png\" alt=\"\" />																					<a href=\"https://clinikehr.com/book/optimal-mental-health-and-wellness-group\" target=\"_blank\">\n									Book Now\n					</a>\n									<h2>Blog</h2>', 'Header', '', 'publish', 'closed', 'closed', '', 'header', '', '', '2026-07-13 16:30:40', '2026-07-13 16:30:40', '', 0, 'https://mrarif.me/optimalmentalwellness/?post_type=elementor_library&#038;p=48', 0, 'elementor_library', '', 0),
(417, 1, '2026-06-17 08:48:41', '2026-06-17 08:48:41', '', 'Footer', '', 'inherit', 'closed', 'closed', '', '414-revision-v1', '', '', '2026-06-17 08:48:41', '2026-06-17 08:48:41', '', 414, 'https://mrarif.me/optimalmentalwellness/?p=417', 0, 'revision', '', 0),
(51, 1, '2026-06-16 09:34:26', '2026-06-16 09:34:26', '', 'Optimal-Mental-Health-And-Wellness-faveicon', '', 'inherit', 'closed', 'closed', '', 'optimal-mental-health-and-wellness-faveicon', '', '', '2026-06-16 09:34:26', '2026-06-16 09:34:26', '', 48, 'https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Optimal-Mental-Health-And-Wellness-faveicon.png', 0, 'attachment', 'image/png', 0),
(52, 1, '2026-06-16 09:34:29', '2026-06-16 09:34:29', '', 'Optimal-Mental-Health-And-Wellness-logo-a', '', 'inherit', 'closed', 'closed', '', 'optimal-mental-health-and-wellness-logo-a', '', '', '2026-06-16 09:34:29', '2026-06-16 09:34:29', '', 48, 'https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Optimal-Mental-Health-And-Wellness-logo-a.png', 0, 'attachment', 'image/png', 0),
(53, 1, '2026-06-16 09:34:45', '2026-06-16 09:34:45', '', 'Header', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2026-06-16 09:34:45', '2026-06-16 09:34:45', '', 48, 'https://mrarif.me/optimalmentalwellness/?p=53', 0, 'revision', '', 0),
(54, 1, '2026-06-16 09:34:46', '2026-06-16 09:34:46', '<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=\"878\" height=\"420\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Optimal-Mental-Health-And-Wellness-logo-a.png\" alt=\"\" />', 'Header', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2026-06-16 09:34:46', '2026-06-16 09:34:46', '', 48, 'https://mrarif.me/optimalmentalwellness/?p=54', 0, 'revision', '', 0),
(55, 1, '2026-06-16 09:35:12', '2026-06-16 09:35:12', '<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=\"878\" height=\"420\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Optimal-Mental-Health-And-Wellness-logo-a.png\" alt=\"\" />', 'Header', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2026-06-16 09:35:12', '2026-06-16 09:35:12', '', 48, 'https://mrarif.me/optimalmentalwellness/?p=55', 0, 'revision', '', 0),
(56, 1, '2026-06-16 09:36:37', '2026-06-16 09:36:37', '', 'Default Kit', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2026-06-16 09:36:37', '2026-06-16 09:36:37', '', 7, 'https://mrarif.me/optimalmentalwellness/?p=56', 0, 'revision', '', 0),
(57, 1, '2026-06-16 09:36:37', '2026-06-16 09:36:37', '', 'Default Kit', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2026-06-16 09:36:37', '2026-06-16 09:36:37', '', 7, 'https://mrarif.me/optimalmentalwellness/?p=57', 0, 'revision', '', 0),
(58, 1, '2026-06-16 09:37:44', '2026-06-16 09:37:44', '', 'Default Kit', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2026-06-16 09:37:44', '2026-06-16 09:37:44', '', 7, 'https://mrarif.me/optimalmentalwellness/?p=58', 0, 'revision', '', 0),
(59, 1, '2026-06-16 09:38:24', '2026-06-16 09:38:24', '', 'Default Kit', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2026-06-16 09:38:24', '2026-06-16 09:38:24', '', 7, 'https://mrarif.me/optimalmentalwellness/?p=59', 0, 'revision', '', 0),
(64, 1, '2026-06-16 09:53:41', '2026-06-16 09:53:41', '<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=\"878\" height=\"420\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Optimal-Mental-Health-And-Wellness-logo-a.png\" alt=\"\" />', 'Header', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2026-06-16 09:53:41', '2026-06-16 09:53:41', '', 48, 'https://mrarif.me/optimalmentalwellness/?p=64', 0, 'revision', '', 0),
(65, 1, '2026-06-16 09:54:26', '2026-06-16 09:54:26', '<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=\"878\" height=\"420\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Optimal-Mental-Health-And-Wellness-logo-a.png\" alt=\"\" />', 'Header', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2026-06-16 09:54:26', '2026-06-16 09:54:26', '', 48, 'https://mrarif.me/optimalmentalwellness/?p=65', 0, 'revision', '', 0),
(66, 1, '2026-06-16 09:55:13', '2026-06-16 09:55:13', '<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=\"878\" height=\"420\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Optimal-Mental-Health-And-Wellness-logo-a.png\" alt=\"\" />																					<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book Now\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2026-06-16 09:55:13', '2026-06-16 09:55:13', '', 48, 'https://mrarif.me/optimalmentalwellness/?p=66', 0, 'revision', '', 0),
(68, 1, '2026-06-16 10:12:44', '2026-06-16 10:12:44', '<ul>\n							<li>\n											<a href=\"mailto:info@optimalmentalwellness.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@optimalmentalwellness.org\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:9049017913\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										904-901-7913\n											</a>\n									</li>\n						</ul>\n																	<img width=\"878\" height=\"420\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Optimal-Mental-Health-And-Wellness-logo-a.png\" alt=\"\" />																					<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book Now\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2026-06-16 10:12:44', '2026-06-16 10:12:44', '', 48, 'https://mrarif.me/optimalmentalwellness/?p=68', 0, 'revision', '', 0),
(84, 1, '2026-06-16 10:24:01', '2026-06-16 10:24:01', '', 'banner-wm-a', '', 'inherit', 'closed', 'closed', '', 'banner-wm-a', '', '', '2026-06-16 10:24:01', '2026-06-16 10:24:01', '', 0, 'https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-wm-a.jpg', 0, 'attachment', 'image/jpeg', 0),
(88, 1, '2026-06-16 10:28:00', '2026-06-16 10:28:00', '', 'wellnes-ab', '', 'inherit', 'closed', 'closed', '', 'wellnes-ab', '', '', '2026-06-16 10:28:00', '2026-06-16 10:28:00', '', 0, 'https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/wellnes-ab.jpg', 0, 'attachment', 'image/jpeg', 0),
(71, 1, '2026-06-16 10:14:02', '2026-06-16 10:14:02', '', 'banner bva', '', 'inherit', 'closed', 'closed', '', 'banner-bva', '', '', '2026-06-16 10:14:02', '2026-06-16 10:14:02', '', 0, 'https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-bva.jpg', 0, 'attachment', 'image/jpeg', 0),
(72, 1, '2026-06-16 10:15:45', '2026-06-16 10:15:45', '<h1>Welcome to Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"#\">\n									Learn More\n					</a>\n									<h5>About Us</h5>					<h2>Optimal Mental Health And Wellness</h2>		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br />We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 10:15:45', '2026-06-16 10:15:45', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=72', 0, 'revision', '', 0),
(73, 1, '2026-06-16 10:15:45', '2026-06-16 10:15:45', '<h1>Welcome to Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"#\">\n									Learn More\n					</a>\n									<h5>About Us</h5>					<h2>Optimal Mental Health And Wellness</h2>		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br />We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 10:15:45', '2026-06-16 10:15:45', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=73', 0, 'revision', '', 0),
(74, 1, '2026-06-16 10:15:46', '2026-06-16 10:15:46', '<h1>Welcome to Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"#\">\n									Learn More\n					</a>\n									<h5>About Us</h5>					<h2>Optimal Mental Health And Wellness</h2>		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br />We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 10:15:46', '2026-06-16 10:15:46', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=74', 0, 'revision', '', 0),
(75, 1, '2026-06-16 10:18:49', '2026-06-16 10:18:49', '<h1>Welcome to Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"#\">\n									Learn More\n					</a>\n									<h5>About Us</h5>					<h2>Optimal Mental Health And Wellness</h2>		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br />We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 10:18:49', '2026-06-16 10:18:49', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=75', 0, 'revision', '', 0),
(76, 1, '2026-06-16 10:18:49', '2026-06-16 10:18:49', '<h1>Welcome to Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"#\">\n									Learn More\n					</a>\n									<h5>About Us</h5>					<h2>Optimal Mental Health And Wellness</h2>		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br />We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 10:18:49', '2026-06-16 10:18:49', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=76', 0, 'revision', '', 0),
(77, 1, '2026-06-16 10:18:50', '2026-06-16 10:18:50', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"#\">\n									Learn More\n					</a>\n									<h5>About Us</h5>					<h2>Optimal Mental Health And Wellness</h2>		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br />We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 10:18:50', '2026-06-16 10:18:50', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=77', 0, 'revision', '', 0),
(78, 1, '2026-06-16 10:19:33', '2026-06-16 10:19:33', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"#\">\n									Learn More\n					</a>\n									<h5>About Us</h5>					<h2>Optimal Mental Health And Wellness</h2>		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br />We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 10:19:33', '2026-06-16 10:19:33', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=78', 0, 'revision', '', 0),
(79, 1, '2026-06-16 10:19:33', '2026-06-16 10:19:33', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"#\">\n									Learn More\n					</a>\n									<h5>About Us</h5>					<h2>Optimal Mental Health And Wellness</h2>		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br />We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 10:19:33', '2026-06-16 10:19:33', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=79', 0, 'revision', '', 0),
(80, 1, '2026-06-16 10:19:34', '2026-06-16 10:19:34', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"#\">\n									Learn More\n					</a>\n									<h5>About Us</h5>					<h2>Optimal Mental Health And Wellness</h2>		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br />We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 10:19:34', '2026-06-16 10:19:34', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=80', 0, 'revision', '', 0),
(81, 1, '2026-06-16 10:20:05', '2026-06-16 10:20:05', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"#\">\n									Learn More\n					</a>\n									<h5>About Us</h5>					<h2>Optimal Mental Health And Wellness</h2>		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br />We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 10:20:05', '2026-06-16 10:20:05', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=81', 0, 'revision', '', 0),
(82, 1, '2026-06-16 10:20:05', '2026-06-16 10:20:05', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"#\">\n									Learn More\n					</a>\n									<h5>About Us</h5>					<h2>Optimal Mental Health And Wellness</h2>		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br />We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 10:20:05', '2026-06-16 10:20:05', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=82', 0, 'revision', '', 0),
(83, 1, '2026-06-16 10:20:06', '2026-06-16 10:20:06', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"#\">\n									Learn More\n					</a>\n									<h5>About Us</h5>					<h2>Optimal Mental Health And Wellness</h2>		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br />We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 10:20:06', '2026-06-16 10:20:06', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=83', 0, 'revision', '', 0),
(85, 1, '2026-06-16 10:24:17', '2026-06-16 10:24:17', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"#\">\n									Learn More\n					</a>\n									<h5>About Us</h5>					<h2>Optimal Mental Health And Wellness</h2>		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br />We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 10:24:17', '2026-06-16 10:24:17', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=85', 0, 'revision', '', 0),
(86, 1, '2026-06-16 10:24:17', '2026-06-16 10:24:17', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"#\">\n									Learn More\n					</a>\n									<h5>About Us</h5>					<h2>Optimal Mental Health And Wellness</h2>		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br />We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 10:24:17', '2026-06-16 10:24:17', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=86', 0, 'revision', '', 0),
(87, 1, '2026-06-16 10:24:18', '2026-06-16 10:24:18', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"#\">\n									Learn More\n					</a>\n									<h5>About Us</h5>					<h2>Optimal Mental Health And Wellness</h2>		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br />We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 10:24:18', '2026-06-16 10:24:18', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=87', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(89, 1, '2026-06-16 10:28:14', '2026-06-16 10:28:14', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"#\">\n									Learn More\n					</a>\n									<h5>About Us</h5>					<h2>Optimal Mental Health And Wellness</h2>		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br />We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 10:28:14', '2026-06-16 10:28:14', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=89', 0, 'revision', '', 0),
(90, 1, '2026-06-16 10:28:14', '2026-06-16 10:28:14', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"#\">\n									Learn More\n					</a>\n									<h5>About Us</h5>					<h2>Optimal Mental Health And Wellness</h2>		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br />We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 10:28:14', '2026-06-16 10:28:14', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=90', 0, 'revision', '', 0),
(91, 1, '2026-06-16 10:28:15', '2026-06-16 10:28:15', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"#\">\n									Learn More\n					</a>\n									<h5>About Us</h5>					<h2>Optimal Mental Health And Wellness</h2>		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br />We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 10:28:15', '2026-06-16 10:28:15', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=91', 0, 'revision', '', 0),
(92, 1, '2026-06-16 10:29:11', '2026-06-16 10:29:11', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"#\">\n									Learn More\n					</a>\n									<h5>About Us</h5>					<h2>Optimal Mental Health And Wellness</h2>		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br />We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 10:29:11', '2026-06-16 10:29:11', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=92', 0, 'revision', '', 0),
(93, 1, '2026-06-16 10:29:12', '2026-06-16 10:29:12', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"#\">\n									Learn More\n					</a>\n									<h5>About Us</h5>					<h2>Optimal Mental Health And Wellness</h2>		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br />We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 10:29:12', '2026-06-16 10:29:12', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=93', 0, 'revision', '', 0),
(94, 1, '2026-06-16 10:29:15', '2026-06-16 10:29:15', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"#\">\n									Learn More\n					</a>\n									<h5>About Us</h5>					<h2>Optimal Mental Health And Wellness</h2>		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br />We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 10:29:15', '2026-06-16 10:29:15', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=94', 0, 'revision', '', 0),
(95, 1, '2026-06-16 10:29:47', '2026-06-16 10:29:47', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"#\">\n									Learn More\n					</a>\n									<h5>About Us</h5>					<h2>Optimal Mental Health And Wellness</h2>		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br />We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 10:29:47', '2026-06-16 10:29:47', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=95', 0, 'revision', '', 0),
(96, 1, '2026-06-16 10:29:47', '2026-06-16 10:29:47', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"#\">\n									Learn More\n					</a>\n									<h5>About Us</h5>					<h2>Optimal Mental Health And Wellness</h2>		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br />We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 10:29:47', '2026-06-16 10:29:47', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=96', 0, 'revision', '', 0),
(100, 1, '2026-06-16 10:31:49', '2026-06-16 10:31:49', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n									<h5>About Us</h5>					<h2>Optimal Mental Health And Wellness</h2>		<p>we strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 10:31:49', '2026-06-16 10:31:49', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=100', 0, 'revision', '', 0),
(97, 1, '2026-06-16 10:29:49', '2026-06-16 10:29:49', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n									<h5>About Us</h5>					<h2>Optimal Mental Health And Wellness</h2>		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br />We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 10:29:49', '2026-06-16 10:29:49', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=97', 0, 'revision', '', 0),
(98, 1, '2026-06-16 10:31:44', '2026-06-16 10:31:44', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n									<h5>About Us</h5>					<h2>Optimal Mental Health And Wellness</h2>		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br />We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 10:31:44', '2026-06-16 10:31:44', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=98', 0, 'revision', '', 0),
(99, 1, '2026-06-16 10:31:45', '2026-06-16 10:31:45', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n									<h5>About Us</h5>					<h2>Optimal Mental Health And Wellness</h2>		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.<br />We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 10:31:45', '2026-06-16 10:31:45', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=99', 0, 'revision', '', 0),
(101, 1, '2026-06-16 10:32:41', '2026-06-16 10:32:41', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n									<h5>About Us</h5>					<h2>Optimal Mental Health And Wellness</h2>		<p>we strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 10:32:41', '2026-06-16 10:32:41', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=101', 0, 'revision', '', 0),
(102, 1, '2026-06-16 10:32:43', '2026-06-16 10:32:43', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n									<h5>About Us</h5>					<h2>Optimal Mental Health And Wellness</h2>		<p>we strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 10:32:43', '2026-06-16 10:32:43', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=102', 0, 'revision', '', 0),
(103, 1, '2026-06-16 10:32:47', '2026-06-16 10:32:47', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n									<h5>About Us</h5>					<h2>Optimal Mental Health And Wellness</h2>		<p>we strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 10:32:47', '2026-06-16 10:32:47', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=103', 0, 'revision', '', 0),
(104, 1, '2026-06-16 10:33:11', '2026-06-16 10:33:11', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n									<h5>About Us</h5>					<h2>Optimal Mental Health And Wellness</h2>		<p>we strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 10:33:11', '2026-06-16 10:33:11', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=104', 0, 'revision', '', 0),
(105, 1, '2026-06-16 10:33:15', '2026-06-16 10:33:15', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n									<h5>About Us</h5>					<h2>Optimal Mental Health And Wellness</h2>		<p>we strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 10:33:15', '2026-06-16 10:33:15', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=105', 0, 'revision', '', 0),
(106, 1, '2026-06-16 10:33:21', '2026-06-16 10:33:21', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"2000\" height=\"1084\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab.jpg\" alt=\"\" />																<h5>About Us</h5>					<h2>Optimal Mental Health And Wellness</h2>		<p>we strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 10:33:21', '2026-06-16 10:33:21', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=106', 0, 'revision', '', 0),
(107, 1, '2026-06-16 10:36:14', '2026-06-16 10:36:14', '', 'circle_11837105', '', 'inherit', 'closed', 'closed', '', 'circle_11837105', '', '', '2026-06-16 10:36:14', '2026-06-16 10:36:14', '', 10, 'https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/circle_11837105.svg', 0, 'attachment', 'image/svg+xml', 0),
(111, 1, '2026-06-16 10:38:40', '2026-06-16 10:38:40', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"2000\" height=\"1084\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab.jpg\" alt=\"\" />																		<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n							<h2>Optimal Mental Health And Wellness</h2>		<p>we strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 10:38:40', '2026-06-16 10:38:40', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=111', 0, 'revision', '', 0),
(112, 1, '2026-06-16 10:39:28', '2026-06-16 10:39:28', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"2000\" height=\"1084\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab.jpg\" alt=\"\" />																		<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n							<h2>Optimal Mental Health And Wellness</h2>		<p>we strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 10:39:28', '2026-06-16 10:39:28', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=112', 0, 'revision', '', 0),
(109, 1, '2026-06-16 10:38:37', '2026-06-16 10:38:37', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"2000\" height=\"1084\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab.jpg\" alt=\"\" />																<h5>About Us</h5>					<h2>Optimal Mental Health And Wellness</h2>		<p>we strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 10:38:37', '2026-06-16 10:38:37', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=109', 0, 'revision', '', 0),
(110, 1, '2026-06-16 10:38:37', '2026-06-16 10:38:37', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"2000\" height=\"1084\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab.jpg\" alt=\"\" />																<h5>About Us</h5>					<h2>Optimal Mental Health And Wellness</h2>		<p>we strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 10:38:37', '2026-06-16 10:38:37', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=110', 0, 'revision', '', 0),
(113, 1, '2026-06-16 10:39:28', '2026-06-16 10:39:28', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"2000\" height=\"1084\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab.jpg\" alt=\"\" />																		<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n							<h2>Optimal Mental Health And Wellness</h2>		<p>we strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 10:39:28', '2026-06-16 10:39:28', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=113', 0, 'revision', '', 0),
(114, 1, '2026-06-16 10:39:29', '2026-06-16 10:39:29', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"2000\" height=\"1084\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab.jpg\" alt=\"\" />																		<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n		<p>we strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 10:39:29', '2026-06-16 10:39:29', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=114', 0, 'revision', '', 0),
(115, 1, '2026-06-16 10:58:04', '2026-06-16 10:58:04', '', 'Wellness opti', '', 'inherit', 'closed', 'closed', '', 'wellness-opti', '', '', '2026-06-16 10:58:04', '2026-06-16 10:58:04', '', 10, 'https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg', 0, 'attachment', 'image/jpeg', 0),
(116, 1, '2026-06-16 10:59:23', '2026-06-16 10:59:23', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"2000\" height=\"1084\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab.jpg\" alt=\"\" />																		<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n		<p>we strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 10:59:23', '2026-06-16 10:59:23', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=116', 0, 'revision', '', 0),
(117, 1, '2026-06-16 10:59:23', '2026-06-16 10:59:23', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"2000\" height=\"1084\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab.jpg\" alt=\"\" />																		<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n		<p>we strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 10:59:23', '2026-06-16 10:59:23', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=117', 0, 'revision', '', 0),
(118, 1, '2026-06-16 10:59:23', '2026-06-16 10:59:23', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />																		<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n		<p>we strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1024\" height=\"555\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab-1024x555.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 10:59:23', '2026-06-16 10:59:23', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=118', 0, 'revision', '', 0),
(119, 1, '2026-06-16 11:00:44', '2026-06-16 11:00:44', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />																		<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n		<p>we strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1024\" height=\"555\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab-1024x555.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:00:44', '2026-06-16 11:00:44', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=119', 0, 'revision', '', 0),
(120, 1, '2026-06-16 11:00:45', '2026-06-16 11:00:45', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />																		<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n		<p>we strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1024\" height=\"555\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab-1024x555.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:00:45', '2026-06-16 11:00:45', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=120', 0, 'revision', '', 0),
(121, 1, '2026-06-16 11:00:47', '2026-06-16 11:00:47', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />																		<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1024\" height=\"555\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab-1024x555.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:00:47', '2026-06-16 11:00:47', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=121', 0, 'revision', '', 0),
(122, 1, '2026-06-16 11:01:12', '2026-06-16 11:01:12', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />																		<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1024\" height=\"555\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab-1024x555.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:01:12', '2026-06-16 11:01:12', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=122', 0, 'revision', '', 0),
(123, 1, '2026-06-16 11:01:13', '2026-06-16 11:01:13', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />																		<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1024\" height=\"555\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab-1024x555.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:01:13', '2026-06-16 11:01:13', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=123', 0, 'revision', '', 0),
(124, 1, '2026-06-16 11:01:14', '2026-06-16 11:01:14', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />																		<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1024\" height=\"555\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab-1024x555.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:01:14', '2026-06-16 11:01:14', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=124', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(125, 1, '2026-06-16 11:02:23', '2026-06-16 11:02:23', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />																		<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1024\" height=\"555\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab-1024x555.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:02:23', '2026-06-16 11:02:23', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=125', 0, 'revision', '', 0),
(126, 1, '2026-06-16 11:02:24', '2026-06-16 11:02:24', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />																		<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1024\" height=\"555\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab-1024x555.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:02:24', '2026-06-16 11:02:24', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=126', 0, 'revision', '', 0),
(127, 1, '2026-06-16 11:02:25', '2026-06-16 11:02:25', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />																		<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n							<h2>About Us</h2>				\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1024\" height=\"555\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab-1024x555.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:02:25', '2026-06-16 11:02:25', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=127', 0, 'revision', '', 0),
(128, 1, '2026-06-16 11:03:49', '2026-06-16 11:03:49', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />																		<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n							<h2>About Us</h2>				\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1024\" height=\"555\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab-1024x555.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:03:49', '2026-06-16 11:03:49', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=128', 0, 'revision', '', 0),
(129, 1, '2026-06-16 11:03:49', '2026-06-16 11:03:49', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />																		<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n							<h2>About Us</h2>				\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1024\" height=\"555\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab-1024x555.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:03:49', '2026-06-16 11:03:49', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=129', 0, 'revision', '', 0),
(130, 1, '2026-06-16 11:03:51', '2026-06-16 11:03:51', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />																		<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n							<h2>About Us</h2>				\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1024\" height=\"555\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab-1024x555.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:03:51', '2026-06-16 11:03:51', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=130', 0, 'revision', '', 0),
(131, 1, '2026-06-16 11:05:29', '2026-06-16 11:05:29', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />																		<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n							<h2>About Us</h2>				\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1024\" height=\"555\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab-1024x555.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:05:29', '2026-06-16 11:05:29', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=131', 0, 'revision', '', 0),
(132, 1, '2026-06-16 11:05:30', '2026-06-16 11:05:30', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />																		<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n							<h2>About Us</h2>				\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1024\" height=\"555\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab-1024x555.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:05:30', '2026-06-16 11:05:30', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=132', 0, 'revision', '', 0),
(136, 1, '2026-06-16 11:05:49', '2026-06-16 11:05:49', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />																		<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1024\" height=\"555\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab-1024x555.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:05:49', '2026-06-16 11:05:49', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=136', 0, 'revision', '', 0),
(133, 1, '2026-06-16 11:05:30', '2026-06-16 11:05:30', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />																		<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n															<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />													<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1024\" height=\"555\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab-1024x555.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:05:30', '2026-06-16 11:05:30', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=133', 0, 'revision', '', 0),
(134, 1, '2026-06-16 11:05:49', '2026-06-16 11:05:49', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />																		<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n															<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />													<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1024\" height=\"555\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab-1024x555.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:05:49', '2026-06-16 11:05:49', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=134', 0, 'revision', '', 0),
(135, 1, '2026-06-16 11:05:49', '2026-06-16 11:05:49', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />																		<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n															<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />													<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1024\" height=\"555\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab-1024x555.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:05:49', '2026-06-16 11:05:49', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=135', 0, 'revision', '', 0),
(137, 1, '2026-06-16 11:06:24', '2026-06-16 11:06:24', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />																		<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1024\" height=\"555\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab-1024x555.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:06:24', '2026-06-16 11:06:24', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=137', 0, 'revision', '', 0),
(138, 1, '2026-06-16 11:06:24', '2026-06-16 11:06:24', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />																		<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1024\" height=\"555\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab-1024x555.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:06:24', '2026-06-16 11:06:24', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=138', 0, 'revision', '', 0),
(139, 1, '2026-06-16 11:06:25', '2026-06-16 11:06:25', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />																		<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1024\" height=\"555\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab-1024x555.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:06:25', '2026-06-16 11:06:25', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=139', 0, 'revision', '', 0),
(140, 1, '2026-06-16 11:07:07', '2026-06-16 11:07:07', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />																		<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1024\" height=\"555\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab-1024x555.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:07:07', '2026-06-16 11:07:07', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=140', 0, 'revision', '', 0),
(141, 1, '2026-06-16 11:07:07', '2026-06-16 11:07:07', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />																		<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1024\" height=\"555\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab-1024x555.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:07:07', '2026-06-16 11:07:07', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=141', 0, 'revision', '', 0),
(142, 1, '2026-06-16 11:07:08', '2026-06-16 11:07:08', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />																		<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1024\" height=\"555\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab-1024x555.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:07:08', '2026-06-16 11:07:08', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=142', 0, 'revision', '', 0),
(143, 1, '2026-06-16 11:07:28', '2026-06-16 11:07:28', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />																		<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1024\" height=\"555\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab-1024x555.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:07:28', '2026-06-16 11:07:28', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=143', 0, 'revision', '', 0),
(144, 1, '2026-06-16 11:07:28', '2026-06-16 11:07:28', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />																		<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1024\" height=\"555\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab-1024x555.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:07:28', '2026-06-16 11:07:28', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=144', 0, 'revision', '', 0),
(145, 1, '2026-06-16 11:07:28', '2026-06-16 11:07:28', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />																		<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1024\" height=\"555\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab-1024x555.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:07:28', '2026-06-16 11:07:28', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=145', 0, 'revision', '', 0),
(146, 1, '2026-06-16 11:10:02', '2026-06-16 11:10:02', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />																		<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1024\" height=\"555\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab-1024x555.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:10:02', '2026-06-16 11:10:02', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=146', 0, 'revision', '', 0),
(147, 1, '2026-06-16 11:10:02', '2026-06-16 11:10:02', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />																		<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1024\" height=\"555\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab-1024x555.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:10:02', '2026-06-16 11:10:02', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=147', 0, 'revision', '', 0),
(148, 1, '2026-06-16 11:10:04', '2026-06-16 11:10:04', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />																		<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1024\" height=\"555\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab-1024x555.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:10:04', '2026-06-16 11:10:04', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=148', 0, 'revision', '', 0),
(149, 1, '2026-06-16 11:12:42', '2026-06-16 11:12:42', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />																		<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1024\" height=\"555\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab-1024x555.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:12:42', '2026-06-16 11:12:42', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=149', 0, 'revision', '', 0),
(150, 1, '2026-06-16 11:12:42', '2026-06-16 11:12:42', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />																		<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n		<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1024\" height=\"555\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab-1024x555.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:12:42', '2026-06-16 11:12:42', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=150', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(151, 1, '2026-06-16 11:12:43', '2026-06-16 11:12:43', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1024\" height=\"555\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab-1024x555.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:12:43', '2026-06-16 11:12:43', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=151', 0, 'revision', '', 0),
(152, 1, '2026-06-16 11:13:29', '2026-06-16 11:13:29', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1024\" height=\"555\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab-1024x555.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:13:29', '2026-06-16 11:13:29', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=152', 0, 'revision', '', 0),
(153, 1, '2026-06-16 11:13:29', '2026-06-16 11:13:29', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1024\" height=\"555\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab-1024x555.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:13:29', '2026-06-16 11:13:29', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=153', 0, 'revision', '', 0),
(154, 1, '2026-06-16 11:13:30', '2026-06-16 11:13:30', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1024\" height=\"555\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab-1024x555.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:13:30', '2026-06-16 11:13:30', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=154', 0, 'revision', '', 0),
(155, 1, '2026-06-16 11:14:42', '2026-06-16 11:14:42', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1024\" height=\"555\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab-1024x555.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:14:42', '2026-06-16 11:14:42', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=155', 0, 'revision', '', 0),
(156, 1, '2026-06-16 11:14:42', '2026-06-16 11:14:42', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1024\" height=\"555\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-ab-1024x555.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:14:42', '2026-06-16 11:14:42', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=156', 0, 'revision', '', 0),
(157, 1, '2026-06-16 11:14:43', '2026-06-16 11:14:43', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:14:43', '2026-06-16 11:14:43', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=157', 0, 'revision', '', 0),
(177, 1, '2026-06-16 11:35:17', '2026-06-16 11:35:17', '', 'nottom welnes', '', 'inherit', 'closed', 'closed', '', 'nottom-welnes', '', '', '2026-06-16 11:35:17', '2026-06-16 11:35:17', '', 10, 'https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg', 0, 'attachment', 'image/jpeg', 0),
(159, 1, '2026-06-16 11:17:12', '2026-06-16 11:17:12', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:17:12', '2026-06-16 11:17:12', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=159', 0, 'revision', '', 0),
(160, 1, '2026-06-16 11:17:12', '2026-06-16 11:17:12', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:17:12', '2026-06-16 11:17:12', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=160', 0, 'revision', '', 0),
(161, 1, '2026-06-16 11:17:13', '2026-06-16 11:17:13', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Health-And-Wellness-aa.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:17:13', '2026-06-16 11:17:13', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=161', 0, 'revision', '', 0),
(162, 1, '2026-06-16 11:18:08', '2026-06-16 11:18:08', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Health-And-Wellness-aa.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:18:08', '2026-06-16 11:18:08', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=162', 0, 'revision', '', 0),
(163, 1, '2026-06-16 11:18:08', '2026-06-16 11:18:08', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Health-And-Wellness-aa.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:18:08', '2026-06-16 11:18:08', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=163', 0, 'revision', '', 0),
(167, 1, '2026-06-16 11:18:37', '2026-06-16 11:18:37', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Health-And-Wellness-aa.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:18:37', '2026-06-16 11:18:37', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=167', 0, 'revision', '', 0),
(164, 1, '2026-06-16 11:18:09', '2026-06-16 11:18:09', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Health-And-Wellness-aa.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Health-And-Wellness-aa.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:18:09', '2026-06-16 11:18:09', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=164', 0, 'revision', '', 0),
(165, 1, '2026-06-16 11:18:37', '2026-06-16 11:18:37', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Health-And-Wellness-aa.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Health-And-Wellness-aa.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:18:37', '2026-06-16 11:18:37', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=165', 0, 'revision', '', 0),
(166, 1, '2026-06-16 11:18:37', '2026-06-16 11:18:37', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Health-And-Wellness-aa.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Health-And-Wellness-aa.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:18:37', '2026-06-16 11:18:37', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=166', 0, 'revision', '', 0),
(168, 1, '2026-06-16 11:19:10', '2026-06-16 11:19:10', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Health-And-Wellness-aa.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:19:10', '2026-06-16 11:19:10', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=168', 0, 'revision', '', 0),
(169, 1, '2026-06-16 11:19:10', '2026-06-16 11:19:10', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Health-And-Wellness-aa.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:19:10', '2026-06-16 11:19:10', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=169', 0, 'revision', '', 0),
(170, 1, '2026-06-16 11:19:11', '2026-06-16 11:19:11', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Health-And-Wellness-aa.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:19:11', '2026-06-16 11:19:11', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=170', 0, 'revision', '', 0),
(171, 1, '2026-06-16 11:19:24', '2026-06-16 11:19:24', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Health-And-Wellness-aa.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:19:24', '2026-06-16 11:19:24', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=171', 0, 'revision', '', 0),
(172, 1, '2026-06-16 11:19:24', '2026-06-16 11:19:24', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Health-And-Wellness-aa.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:19:24', '2026-06-16 11:19:24', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=172', 0, 'revision', '', 0),
(173, 1, '2026-06-16 11:19:25', '2026-06-16 11:19:25', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Health-And-Wellness-aa.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:19:25', '2026-06-16 11:19:25', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=173', 0, 'revision', '', 0),
(174, 1, '2026-06-16 11:19:49', '2026-06-16 11:19:49', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Health-And-Wellness-aa.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:19:49', '2026-06-16 11:19:49', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=174', 0, 'revision', '', 0),
(175, 1, '2026-06-16 11:19:49', '2026-06-16 11:19:49', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Health-And-Wellness-aa.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:19:49', '2026-06-16 11:19:49', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=175', 0, 'revision', '', 0),
(176, 1, '2026-06-16 11:19:50', '2026-06-16 11:19:50', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-bva.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:19:50', '2026-06-16 11:19:50', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=176', 0, 'revision', '', 0),
(178, 1, '2026-06-16 11:35:29', '2026-06-16 11:35:29', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-bva.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:35:29', '2026-06-16 11:35:29', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=178', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(179, 1, '2026-06-16 11:35:29', '2026-06-16 11:35:29', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/banner-bva.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:35:29', '2026-06-16 11:35:29', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=179', 0, 'revision', '', 0),
(180, 1, '2026-06-16 11:35:30', '2026-06-16 11:35:30', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:35:30', '2026-06-16 11:35:30', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=180', 0, 'revision', '', 0),
(181, 1, '2026-06-16 11:35:47', '2026-06-16 11:35:47', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:35:47', '2026-06-16 11:35:47', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=181', 0, 'revision', '', 0),
(182, 1, '2026-06-16 11:35:47', '2026-06-16 11:35:47', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:35:47', '2026-06-16 11:35:47', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=182', 0, 'revision', '', 0),
(183, 1, '2026-06-16 11:35:47', '2026-06-16 11:35:47', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:35:47', '2026-06-16 11:35:47', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=183', 0, 'revision', '', 0),
(184, 1, '2026-06-16 11:37:18', '2026-06-16 11:37:18', '<ul>\n							<li>\n											<a href=\"mailto:info@optimalmentalwellness.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@optimalmentalwellness.org\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:9049017913\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										904-901-7913\n											</a>\n									</li>\n						</ul>\n																	<img width=\"878\" height=\"420\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Optimal-Mental-Health-And-Wellness-logo-a.png\" alt=\"\" />																					<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book Now\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2026-06-16 11:37:18', '2026-06-16 11:37:18', '', 48, 'https://mrarif.me/optimalmentalwellness/?p=184', 0, 'revision', '', 0),
(185, 1, '2026-06-16 11:39:57', '2026-06-16 11:39:57', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:39:57', '2026-06-16 11:39:57', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=185', 0, 'revision', '', 0),
(186, 1, '2026-06-16 11:39:57', '2026-06-16 11:39:57', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:39:57', '2026-06-16 11:39:57', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=186', 0, 'revision', '', 0),
(187, 1, '2026-06-16 11:39:58', '2026-06-16 11:39:58', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:39:58', '2026-06-16 11:39:58', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=187', 0, 'revision', '', 0),
(188, 1, '2026-06-16 11:46:55', '2026-06-16 11:46:55', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:46:55', '2026-06-16 11:46:55', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=188', 0, 'revision', '', 0),
(189, 1, '2026-06-16 11:46:55', '2026-06-16 11:46:55', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:46:55', '2026-06-16 11:46:55', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=189', 0, 'revision', '', 0),
(190, 1, '2026-06-16 11:46:56', '2026-06-16 11:46:56', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:46:56', '2026-06-16 11:46:56', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=190', 0, 'revision', '', 0),
(191, 1, '2026-06-16 11:49:06', '2026-06-16 11:49:06', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:49:06', '2026-06-16 11:49:06', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=191', 0, 'revision', '', 0),
(192, 1, '2026-06-16 11:49:07', '2026-06-16 11:49:07', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:49:07', '2026-06-16 11:49:07', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=192', 0, 'revision', '', 0),
(193, 1, '2026-06-16 11:49:08', '2026-06-16 11:49:08', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 11:49:08', '2026-06-16 11:49:08', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=193', 0, 'revision', '', 0),
(197, 1, '2026-06-16 12:04:42', '2026-06-16 12:04:42', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 12:04:42', '2026-06-16 12:04:42', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=197', 0, 'revision', '', 0),
(195, 1, '2026-06-16 12:04:41', '2026-06-16 12:04:41', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 12:04:41', '2026-06-16 12:04:41', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=195', 0, 'revision', '', 0),
(196, 1, '2026-06-16 12:04:41', '2026-06-16 12:04:41', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 12:04:41', '2026-06-16 12:04:41', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=196', 0, 'revision', '', 0),
(202, 1, '2026-06-16 12:09:40', '2026-06-16 12:09:40', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 12:09:40', '2026-06-16 12:09:40', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=202', 0, 'revision', '', 0),
(199, 1, '2026-06-16 12:09:11', '2026-06-16 12:09:11', '', 'Medication & Nutritional d', '', 'inherit', 'closed', 'closed', '', 'medication-nutritional-d', '', '', '2026-06-16 12:09:11', '2026-06-16 12:09:11', '', 10, 'https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(200, 1, '2026-06-16 12:09:39', '2026-06-16 12:09:39', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 12:09:39', '2026-06-16 12:09:39', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=200', 0, 'revision', '', 0),
(201, 1, '2026-06-16 12:09:39', '2026-06-16 12:09:39', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 12:09:39', '2026-06-16 12:09:39', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=201', 0, 'revision', '', 0),
(203, 1, '2026-06-16 12:11:58', '2026-06-16 12:11:58', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 12:11:58', '2026-06-16 12:11:58', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=203', 0, 'revision', '', 0),
(204, 1, '2026-06-16 12:11:58', '2026-06-16 12:11:58', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 12:11:58', '2026-06-16 12:11:58', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=204', 0, 'revision', '', 0),
(205, 1, '2026-06-16 12:11:59', '2026-06-16 12:11:59', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											Individual therapy. Couples/marriage therapy.\nFamily therapy. Child/teen therapy. Online\ntherapy. COMMON SPECIALTIES &#038; approaches										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 12:11:59', '2026-06-16 12:11:59', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=205', 0, 'revision', '', 0),
(206, 1, '2026-06-16 12:12:30', '2026-06-16 12:12:30', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											Individual therapy. Couples/marriage therapy.\nFamily therapy. Child/teen therapy. Online\ntherapy. COMMON SPECIALTIES &#038; approaches										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 12:12:30', '2026-06-16 12:12:30', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=206', 0, 'revision', '', 0),
(207, 1, '2026-06-16 12:12:30', '2026-06-16 12:12:30', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											Individual therapy. Couples/marriage therapy.\nFamily therapy. Child/teen therapy. Online\ntherapy. COMMON SPECIALTIES &#038; approaches										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 12:12:30', '2026-06-16 12:12:30', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=207', 0, 'revision', '', 0),
(208, 1, '2026-06-16 12:12:30', '2026-06-16 12:12:30', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychotherapy												</h5>\n											Individual therapy. Couples/marriage therapy.\nFamily therapy. Child/teen therapy. Online\ntherapy. COMMON SPECIALTIES &#038; approaches										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 12:12:30', '2026-06-16 12:12:30', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=208', 0, 'revision', '', 0),
(209, 1, '2026-06-16 12:17:05', '2026-06-16 12:17:05', '', 'psychotherapy a', '', 'inherit', 'closed', 'closed', '', 'psychotherapy-a', '', '', '2026-06-16 12:17:05', '2026-06-16 12:17:05', '', 10, 'https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp', 0, 'attachment', 'image/webp', 0),
(210, 1, '2026-06-16 12:17:11', '2026-06-16 12:17:11', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychotherapy												</h5>\n											Individual therapy. Couples/marriage therapy.\nFamily therapy. Child/teen therapy. Online\ntherapy. COMMON SPECIALTIES &#038; approaches										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 12:17:11', '2026-06-16 12:17:11', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=210', 0, 'revision', '', 0),
(211, 1, '2026-06-16 12:17:11', '2026-06-16 12:17:11', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychotherapy												</h5>\n											Individual therapy. Couples/marriage therapy.\nFamily therapy. Child/teen therapy. Online\ntherapy. COMMON SPECIALTIES &#038; approaches										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 12:17:11', '2026-06-16 12:17:11', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=211', 0, 'revision', '', 0),
(212, 1, '2026-06-16 12:17:12', '2026-06-16 12:17:12', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 12:17:12', '2026-06-16 12:17:12', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=212', 0, 'revision', '', 0),
(213, 1, '2026-06-16 12:20:10', '2026-06-16 12:20:10', '', 'Psychiatric Evaluation aa', '', 'inherit', 'closed', 'closed', '', 'psychiatric-evaluation-aa', '', '', '2026-06-16 12:20:10', '2026-06-16 12:20:10', '', 10, 'https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg', 0, 'attachment', 'image/jpeg', 0),
(214, 1, '2026-06-16 12:20:21', '2026-06-16 12:20:21', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 12:20:21', '2026-06-16 12:20:21', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=214', 0, 'revision', '', 0),
(215, 1, '2026-06-16 12:20:21', '2026-06-16 12:20:21', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"nottom welnes\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 12:20:21', '2026-06-16 12:20:21', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=215', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(242, 1, '2026-06-16 13:00:01', '2026-06-16 13:00:01', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 13:00:01', '2026-06-16 13:00:01', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=242', 0, 'revision', '', 0),
(216, 1, '2026-06-16 12:20:22', '2026-06-16 12:20:22', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 12:20:22', '2026-06-16 12:20:22', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=216', 0, 'revision', '', 0),
(217, 1, '2026-06-16 12:22:11', '2026-06-16 12:22:11', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 12:22:11', '2026-06-16 12:22:11', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=217', 0, 'revision', '', 0),
(218, 1, '2026-06-16 12:22:11', '2026-06-16 12:22:11', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 12:22:11', '2026-06-16 12:22:11', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=218', 0, 'revision', '', 0),
(219, 1, '2026-06-16 12:22:12', '2026-06-16 12:22:12', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 12:22:12', '2026-06-16 12:22:12', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=219', 0, 'revision', '', 0),
(223, 1, '2026-06-16 12:31:57', '2026-06-16 12:31:57', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 12:31:57', '2026-06-16 12:31:57', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=223', 0, 'revision', '', 0),
(221, 1, '2026-06-16 12:31:56', '2026-06-16 12:31:56', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 12:31:56', '2026-06-16 12:31:56', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=221', 0, 'revision', '', 0),
(222, 1, '2026-06-16 12:31:56', '2026-06-16 12:31:56', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 12:31:56', '2026-06-16 12:31:56', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=222', 0, 'revision', '', 0),
(224, 1, '2026-06-16 12:37:36', '2026-06-16 12:37:36', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 12:37:36', '2026-06-16 12:37:36', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=224', 0, 'revision', '', 0),
(225, 1, '2026-06-16 12:37:36', '2026-06-16 12:37:36', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 12:37:36', '2026-06-16 12:37:36', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=225', 0, 'revision', '', 0),
(226, 1, '2026-06-16 12:37:37', '2026-06-16 12:37:37', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 12:37:37', '2026-06-16 12:37:37', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=226', 0, 'revision', '', 0),
(227, 1, '2026-06-16 12:41:07', '2026-06-16 12:41:07', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 12:41:07', '2026-06-16 12:41:07', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=227', 0, 'revision', '', 0),
(228, 1, '2026-06-16 12:41:07', '2026-06-16 12:41:07', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 12:41:07', '2026-06-16 12:41:07', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=228', 0, 'revision', '', 0),
(229, 1, '2026-06-16 12:41:08', '2026-06-16 12:41:08', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 12:41:08', '2026-06-16 12:41:08', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=229', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(230, 1, '2026-06-16 12:43:28', '2026-06-16 12:43:28', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 12:43:28', '2026-06-16 12:43:28', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=230', 0, 'revision', '', 0),
(231, 1, '2026-06-16 12:43:28', '2026-06-16 12:43:28', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 12:43:28', '2026-06-16 12:43:28', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=231', 0, 'revision', '', 0),
(232, 1, '2026-06-16 12:43:28', '2026-06-16 12:43:28', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 12:43:28', '2026-06-16 12:43:28', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=232', 0, 'revision', '', 0),
(233, 1, '2026-06-16 12:45:50', '2026-06-16 12:45:50', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 12:45:50', '2026-06-16 12:45:50', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=233', 0, 'revision', '', 0),
(234, 1, '2026-06-16 12:45:50', '2026-06-16 12:45:50', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 12:45:50', '2026-06-16 12:45:50', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=234', 0, 'revision', '', 0),
(235, 1, '2026-06-16 12:45:51', '2026-06-16 12:45:51', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 12:45:51', '2026-06-16 12:45:51', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=235', 0, 'revision', '', 0),
(236, 1, '2026-06-16 12:45:59', '2026-06-16 12:45:59', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 12:45:59', '2026-06-16 12:45:59', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=236', 0, 'revision', '', 0),
(237, 1, '2026-06-16 12:45:59', '2026-06-16 12:45:59', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 12:45:59', '2026-06-16 12:45:59', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=237', 0, 'revision', '', 0),
(238, 1, '2026-06-16 12:45:59', '2026-06-16 12:45:59', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 12:45:59', '2026-06-16 12:45:59', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=238', 0, 'revision', '', 0),
(240, 1, '2026-06-16 13:00:00', '2026-06-16 13:00:00', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 13:00:00', '2026-06-16 13:00:00', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=240', 0, 'revision', '', 0),
(241, 1, '2026-06-16 13:00:00', '2026-06-16 13:00:00', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				<p>We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.</p><p>​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />																<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 13:00:00', '2026-06-16 13:00:00', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=241', 0, 'revision', '', 0),
(243, 1, '2026-06-16 13:00:56', '2026-06-16 13:00:56', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 13:00:56', '2026-06-16 13:00:56', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=243', 0, 'revision', '', 0),
(244, 1, '2026-06-16 13:00:56', '2026-06-16 13:00:56', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/nottom-welnes.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 13:00:56', '2026-06-16 13:00:56', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=244', 0, 'revision', '', 0),
(245, 1, '2026-06-16 13:00:56', '2026-06-16 13:00:56', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 13:00:56', '2026-06-16 13:00:56', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=245', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(246, 1, '2026-06-16 13:01:25', '2026-06-16 13:01:25', '', '453006', '', 'inherit', 'closed', 'closed', '', '453006', '', '', '2026-06-16 13:01:25', '2026-06-16 13:01:25', '', 10, 'https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg', 0, 'attachment', 'image/jpeg', 0),
(247, 1, '2026-06-16 13:01:32', '2026-06-16 13:01:32', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 13:01:32', '2026-06-16 13:01:32', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=247', 0, 'revision', '', 0),
(248, 1, '2026-06-16 13:01:32', '2026-06-16 13:01:32', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 13:01:32', '2026-06-16 13:01:32', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=248', 0, 'revision', '', 0),
(249, 1, '2026-06-16 13:01:32', '2026-06-16 13:01:32', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 13:01:32', '2026-06-16 13:01:32', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=249', 0, 'revision', '', 0),
(250, 1, '2026-06-16 13:01:57', '2026-06-16 13:01:57', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 13:01:57', '2026-06-16 13:01:57', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=250', 0, 'revision', '', 0),
(251, 1, '2026-06-16 13:01:57', '2026-06-16 13:01:57', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 13:01:57', '2026-06-16 13:01:57', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=251', 0, 'revision', '', 0),
(252, 1, '2026-06-16 13:01:57', '2026-06-16 13:01:57', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 13:01:57', '2026-06-16 13:01:57', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=252', 0, 'revision', '', 0),
(253, 1, '2026-06-16 13:19:45', '2026-06-16 13:19:45', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 13:19:45', '2026-06-16 13:19:45', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=253', 0, 'revision', '', 0),
(254, 1, '2026-06-16 13:19:45', '2026-06-16 13:19:45', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 13:19:45', '2026-06-16 13:19:45', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=254', 0, 'revision', '', 0),
(255, 1, '2026-06-16 13:19:45', '2026-06-16 13:19:45', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 13:19:45', '2026-06-16 13:19:45', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=255', 0, 'revision', '', 0),
(256, 1, '2026-06-16 13:26:21', '2026-06-16 13:26:21', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 13:26:21', '2026-06-16 13:26:21', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=256', 0, 'revision', '', 0),
(257, 1, '2026-06-16 13:26:21', '2026-06-16 13:26:21', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 13:26:21', '2026-06-16 13:26:21', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=257', 0, 'revision', '', 0),
(258, 1, '2026-06-16 13:26:21', '2026-06-16 13:26:21', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 13:26:21', '2026-06-16 13:26:21', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=258', 0, 'revision', '', 0),
(259, 1, '2026-06-16 13:27:11', '2026-06-16 13:27:11', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 13:27:11', '2026-06-16 13:27:11', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=259', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-06-16 13:27:11', '2026-06-16 13:27:11', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 13:27:11', '2026-06-16 13:27:11', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=260', 0, 'revision', '', 0),
(261, 1, '2026-06-16 13:27:11', '2026-06-16 13:27:11', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 13:27:11', '2026-06-16 13:27:11', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=261', 0, 'revision', '', 0),
(262, 1, '2026-06-16 13:27:50', '2026-06-16 13:27:50', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 13:27:50', '2026-06-16 13:27:50', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=262', 0, 'revision', '', 0),
(263, 1, '2026-06-16 13:27:51', '2026-06-16 13:27:51', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 13:27:51', '2026-06-16 13:27:51', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=263', 0, 'revision', '', 0),
(264, 1, '2026-06-16 13:27:51', '2026-06-16 13:27:51', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 13:27:51', '2026-06-16 13:27:51', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=264', 0, 'revision', '', 0),
(265, 1, '2026-06-16 13:27:58', '2026-06-16 13:27:58', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 13:27:58', '2026-06-16 13:27:58', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=265', 0, 'revision', '', 0),
(266, 1, '2026-06-16 13:27:58', '2026-06-16 13:27:58', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 13:27:58', '2026-06-16 13:27:58', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=266', 0, 'revision', '', 0),
(267, 1, '2026-06-16 13:27:59', '2026-06-16 13:27:59', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 13:27:59', '2026-06-16 13:27:59', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=267', 0, 'revision', '', 0),
(268, 1, '2026-06-16 13:28:28', '2026-06-16 13:28:28', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 13:28:28', '2026-06-16 13:28:28', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=268', 0, 'revision', '', 0),
(269, 1, '2026-06-16 13:28:28', '2026-06-16 13:28:28', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 13:28:28', '2026-06-16 13:28:28', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=269', 0, 'revision', '', 0),
(270, 1, '2026-06-16 13:28:29', '2026-06-16 13:28:29', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-16 13:28:29', '2026-06-16 13:28:29', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=270', 0, 'revision', '', 0),
(271, 1, '2026-06-17 06:03:51', '2026-06-17 06:03:51', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:03:51', '2026-06-17 06:03:51', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=271', 0, 'revision', '', 0),
(272, 1, '2026-06-17 06:03:52', '2026-06-17 06:03:52', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:03:52', '2026-06-17 06:03:52', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=272', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(273, 1, '2026-06-17 06:03:52', '2026-06-17 06:03:52', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:03:52', '2026-06-17 06:03:52', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=273', 0, 'revision', '', 0),
(274, 1, '2026-06-17 06:07:36', '2026-06-17 06:07:36', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:07:36', '2026-06-17 06:07:36', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=274', 0, 'revision', '', 0),
(275, 1, '2026-06-17 06:07:36', '2026-06-17 06:07:36', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:07:36', '2026-06-17 06:07:36', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=275', 0, 'revision', '', 0),
(276, 1, '2026-06-17 06:07:37', '2026-06-17 06:07:37', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:07:37', '2026-06-17 06:07:37', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=276', 0, 'revision', '', 0),
(277, 1, '2026-06-17 06:10:26', '2026-06-17 06:10:26', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:10:26', '2026-06-17 06:10:26', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=277', 0, 'revision', '', 0),
(278, 1, '2026-06-17 06:10:26', '2026-06-17 06:10:26', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:10:26', '2026-06-17 06:10:26', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=278', 0, 'revision', '', 0),
(279, 1, '2026-06-17 06:10:27', '2026-06-17 06:10:27', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Emergency Mental Health Support</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:10:27', '2026-06-17 06:10:27', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=279', 0, 'revision', '', 0),
(280, 1, '2026-06-17 06:12:43', '2026-06-17 06:12:43', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Emergency Mental Health Support</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:12:43', '2026-06-17 06:12:43', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=280', 0, 'revision', '', 0),
(281, 1, '2026-06-17 06:12:43', '2026-06-17 06:12:43', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Emergency Mental Health Support</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:12:43', '2026-06-17 06:12:43', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=281', 0, 'revision', '', 0),
(282, 1, '2026-06-17 06:12:44', '2026-06-17 06:12:44', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Emergency Mental Health Support</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h3>\n							This is the heading						\n					</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:12:44', '2026-06-17 06:12:44', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=282', 0, 'revision', '', 0),
(283, 1, '2026-06-17 06:21:00', '2026-06-17 06:21:00', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Emergency Mental Health Support</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h3>\n							This is the heading						\n					</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:21:00', '2026-06-17 06:21:00', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=283', 0, 'revision', '', 0),
(284, 1, '2026-06-17 06:21:00', '2026-06-17 06:21:00', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Emergency Mental Health Support</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h3>\n							This is the heading						\n					</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:21:00', '2026-06-17 06:21:00', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=284', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(285, 1, '2026-06-17 06:21:00', '2026-06-17 06:21:00', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Emergency Mental Health Support</h2>				\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:21:00', '2026-06-17 06:21:00', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=285', 0, 'revision', '', 0),
(286, 1, '2026-06-17 06:21:09', '2026-06-17 06:21:09', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Emergency Mental Health Support</h2>				\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:21:09', '2026-06-17 06:21:09', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=286', 0, 'revision', '', 0),
(287, 1, '2026-06-17 06:21:09', '2026-06-17 06:21:09', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Emergency Mental Health Support</h2>				\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:21:09', '2026-06-17 06:21:09', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=287', 0, 'revision', '', 0),
(288, 1, '2026-06-17 06:21:10', '2026-06-17 06:21:10', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Emergency Mental Health Support</h2>				\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:21:10', '2026-06-17 06:21:10', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=288', 0, 'revision', '', 0),
(289, 1, '2026-06-17 06:21:27', '2026-06-17 06:21:27', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Emergency Mental Health Support</h2>				\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:21:27', '2026-06-17 06:21:27', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=289', 0, 'revision', '', 0),
(290, 1, '2026-06-17 06:21:27', '2026-06-17 06:21:27', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Emergency Mental Health Support</h2>				\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:21:27', '2026-06-17 06:21:27', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=290', 0, 'revision', '', 0),
(291, 1, '2026-06-17 06:21:28', '2026-06-17 06:21:28', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Emergency Mental Health Support</h2>				\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:21:28', '2026-06-17 06:21:28', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=291', 0, 'revision', '', 0),
(292, 1, '2026-06-17 06:24:02', '2026-06-17 06:24:02', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Emergency Mental Health Support</h2>				\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:24:02', '2026-06-17 06:24:02', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=292', 0, 'revision', '', 0),
(293, 1, '2026-06-17 06:24:02', '2026-06-17 06:24:02', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Emergency Mental Health Support</h2>				\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:24:02', '2026-06-17 06:24:02', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=293', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(294, 1, '2026-06-17 06:24:02', '2026-06-17 06:24:02', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Emergency Mental Health Support</h2>				\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:24:02', '2026-06-17 06:24:02', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=294', 0, 'revision', '', 0),
(295, 1, '2026-06-17 06:24:39', '2026-06-17 06:24:39', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Emergency Mental Health Support</h2>				\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:24:39', '2026-06-17 06:24:39', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=295', 0, 'revision', '', 0),
(296, 1, '2026-06-17 06:24:39', '2026-06-17 06:24:39', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Emergency Mental Health Support</h2>				\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:24:39', '2026-06-17 06:24:39', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=296', 0, 'revision', '', 0),
(297, 1, '2026-06-17 06:24:40', '2026-06-17 06:24:40', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Emergency Mental Health Support</h2>				\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:24:40', '2026-06-17 06:24:40', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=297', 0, 'revision', '', 0),
(298, 1, '2026-06-17 06:31:42', '2026-06-17 06:31:42', '', 'tool_15518412', '', 'inherit', 'closed', 'closed', '', 'tool_15518412', '', '', '2026-06-17 06:31:42', '2026-06-17 06:31:42', '', 10, 'https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/tool_15518412.svg', 0, 'attachment', 'image/svg+xml', 0),
(299, 1, '2026-06-17 06:32:18', '2026-06-17 06:32:18', '', 'stethoscope_2666276', '', 'inherit', 'closed', 'closed', '', 'stethoscope_2666276', '', '', '2026-06-17 06:32:18', '2026-06-17 06:32:18', '', 10, 'https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/stethoscope_2666276.svg', 0, 'attachment', 'image/svg+xml', 0),
(300, 1, '2026-06-17 06:32:25', '2026-06-17 06:32:25', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Emergency Mental Health Support</h2>				\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:32:25', '2026-06-17 06:32:25', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=300', 0, 'revision', '', 0),
(301, 1, '2026-06-17 06:32:25', '2026-06-17 06:32:25', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Emergency Mental Health Support</h2>				\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:32:25', '2026-06-17 06:32:25', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=301', 0, 'revision', '', 0),
(302, 1, '2026-06-17 06:32:25', '2026-06-17 06:32:25', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Emergency Mental Health Support</h2>				\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:32:25', '2026-06-17 06:32:25', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=302', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(303, 1, '2026-06-17 06:32:46', '2026-06-17 06:32:46', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Emergency Mental Health Support</h2>				\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:32:46', '2026-06-17 06:32:46', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=303', 0, 'revision', '', 0),
(304, 1, '2026-06-17 06:32:46', '2026-06-17 06:32:46', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Emergency Mental Health Support</h2>				\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:32:46', '2026-06-17 06:32:46', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=304', 0, 'revision', '', 0),
(305, 1, '2026-06-17 06:32:46', '2026-06-17 06:32:46', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Emergency Mental Health Support</h2>				\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:32:46', '2026-06-17 06:32:46', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=305', 0, 'revision', '', 0),
(306, 1, '2026-06-17 06:33:56', '2026-06-17 06:33:56', '', 'brainstorm_1786985', '', 'inherit', 'closed', 'closed', '', 'brainstorm_1786985', '', '', '2026-06-17 06:33:56', '2026-06-17 06:33:56', '', 10, 'https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/brainstorm_1786985.svg', 0, 'attachment', 'image/svg+xml', 0),
(307, 1, '2026-06-17 06:34:00', '2026-06-17 06:34:00', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Emergency Mental Health Support</h2>				\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:34:00', '2026-06-17 06:34:00', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=307', 0, 'revision', '', 0),
(308, 1, '2026-06-17 06:34:00', '2026-06-17 06:34:00', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Emergency Mental Health Support</h2>				\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:34:00', '2026-06-17 06:34:00', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=308', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(309, 1, '2026-06-17 06:34:01', '2026-06-17 06:34:01', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Emergency Mental Health Support</h2>				\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:34:01', '2026-06-17 06:34:01', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=309', 0, 'revision', '', 0),
(310, 1, '2026-06-17 06:35:05', '2026-06-17 06:35:05', '', 'music_14332530', '', 'inherit', 'closed', 'closed', '', 'music_14332530', '', '', '2026-06-17 06:35:05', '2026-06-17 06:35:05', '', 10, 'https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/music_14332530.svg', 0, 'attachment', 'image/svg+xml', 0),
(311, 1, '2026-06-17 06:35:27', '2026-06-17 06:35:27', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Emergency Mental Health Support</h2>				\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:35:27', '2026-06-17 06:35:27', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=311', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(312, 1, '2026-06-17 06:35:27', '2026-06-17 06:35:27', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Emergency Mental Health Support</h2>				\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:35:27', '2026-06-17 06:35:27', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=312', 0, 'revision', '', 0),
(316, 1, '2026-06-17 06:36:24', '2026-06-17 06:36:24', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:36:24', '2026-06-17 06:36:24', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=316', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(313, 1, '2026-06-17 06:35:27', '2026-06-17 06:35:27', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Emergency Mental Health Support</h2>				\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:35:27', '2026-06-17 06:35:27', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=313', 0, 'revision', '', 0),
(314, 1, '2026-06-17 06:36:24', '2026-06-17 06:36:24', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Emergency Mental Health Support</h2>				\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:36:24', '2026-06-17 06:36:24', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=314', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-06-17 06:36:24', '2026-06-17 06:36:24', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Emergency Mental Health Support</h2>				\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:36:24', '2026-06-17 06:36:24', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=315', 0, 'revision', '', 0),
(317, 1, '2026-06-17 06:41:45', '2026-06-17 06:41:45', '', 'Connect With Mental Health ag', '', 'inherit', 'closed', 'closed', '', 'connect-with-mental-health-ag', '', '', '2026-06-17 06:41:45', '2026-06-17 06:41:45', '', 10, 'https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg', 0, 'attachment', 'image/jpeg', 0),
(318, 1, '2026-06-17 06:41:54', '2026-06-17 06:41:54', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:41:54', '2026-06-17 06:41:54', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=318', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(319, 1, '2026-06-17 06:41:54', '2026-06-17 06:41:54', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:41:54', '2026-06-17 06:41:54', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=319', 0, 'revision', '', 0),
(320, 1, '2026-06-17 06:41:55', '2026-06-17 06:41:55', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:41:55', '2026-06-17 06:41:55', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=320', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(324, 1, '2026-06-17 06:49:59', '2026-06-17 06:49:59', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:49:59', '2026-06-17 06:49:59', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=324', 0, 'revision', '', 0),
(322, 1, '2026-06-17 06:49:58', '2026-06-17 06:49:58', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:49:58', '2026-06-17 06:49:58', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=322', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(323, 1, '2026-06-17 06:49:58', '2026-06-17 06:49:58', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:49:58', '2026-06-17 06:49:58', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=323', 0, 'revision', '', 0),
(325, 1, '2026-06-17 06:59:49', '2026-06-17 06:59:49', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:59:49', '2026-06-17 06:59:49', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=325', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(326, 1, '2026-06-17 06:59:50', '2026-06-17 06:59:50', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:59:50', '2026-06-17 06:59:50', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=326', 0, 'revision', '', 0),
(327, 1, '2026-06-17 06:59:50', '2026-06-17 06:59:50', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 06:59:50', '2026-06-17 06:59:50', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=327', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(328, 1, '2026-06-17 07:10:04', '2026-06-17 07:10:04', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:10:04', '2026-06-17 07:10:04', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=328', 0, 'revision', '', 0),
(329, 1, '2026-06-17 07:10:04', '2026-06-17 07:10:04', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:10:04', '2026-06-17 07:10:04', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=329', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(333, 1, '2026-06-17 07:12:19', '2026-06-17 07:12:19', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											Text HOME to 741741										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:12:19', '2026-06-17 07:12:19', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=333', 0, 'revision', '', 0),
(330, 1, '2026-06-17 07:10:04', '2026-06-17 07:10:04', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:10:04', '2026-06-17 07:10:04', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=330', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-06-17 07:12:18', '2026-06-17 07:12:18', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:12:18', '2026-06-17 07:12:18', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=331', 0, 'revision', '', 0),
(332, 1, '2026-06-17 07:12:18', '2026-06-17 07:12:18', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:12:18', '2026-06-17 07:12:18', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=332', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(334, 1, '2026-06-17 07:13:59', '2026-06-17 07:13:59', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											Text HOME to 741741										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:13:59', '2026-06-17 07:13:59', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=334', 0, 'revision', '', 0),
(335, 1, '2026-06-17 07:13:59', '2026-06-17 07:13:59', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											Text HOME to 741741										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:13:59', '2026-06-17 07:13:59', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=335', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(336, 1, '2026-06-17 07:14:00', '2026-06-17 07:14:00', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											Text HOME to 741741										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											Substance Abuse and Mental Health Services Administration\nPhone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:14:00', '2026-06-17 07:14:00', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=336', 0, 'revision', '', 0),
(337, 1, '2026-06-17 07:16:17', '2026-06-17 07:16:17', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											Text HOME to 741741										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											Substance Abuse and Mental Health Services Administration\nPhone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:16:17', '2026-06-17 07:16:17', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=337', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(338, 1, '2026-06-17 07:16:17', '2026-06-17 07:16:17', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											Text HOME to 741741										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											Substance Abuse and Mental Health Services Administration\nPhone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:16:17', '2026-06-17 07:16:17', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=338', 0, 'revision', '', 0),
(339, 1, '2026-06-17 07:16:18', '2026-06-17 07:16:18', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											Substance Abuse and Mental Health Services Administration\nPhone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a><br /><br />Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:16:18', '2026-06-17 07:16:18', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=339', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(340, 1, '2026-06-17 07:21:03', '2026-06-17 07:21:03', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											Substance Abuse and Mental Health Services Administration\nPhone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a><br /><br />Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:21:03', '2026-06-17 07:21:03', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=340', 0, 'revision', '', 0),
(341, 1, '2026-06-17 07:21:03', '2026-06-17 07:21:03', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											Substance Abuse and Mental Health Services Administration\nPhone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a><br /><br />Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:21:03', '2026-06-17 07:21:03', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=341', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(342, 1, '2026-06-17 07:21:03', '2026-06-17 07:21:03', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											Substance Abuse and Mental Health Services Administration\nPhone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a><br /><br />Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:21:03', '2026-06-17 07:21:03', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=342', 0, 'revision', '', 0),
(343, 1, '2026-06-17 07:22:43', '2026-06-17 07:22:43', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											Substance Abuse and Mental Health Services Administration\nPhone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a><br /><br />Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:22:43', '2026-06-17 07:22:43', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=343', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(344, 1, '2026-06-17 07:22:43', '2026-06-17 07:22:43', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											Substance Abuse and Mental Health Services Administration\nPhone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a><br /><br />Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:22:43', '2026-06-17 07:22:43', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=344', 0, 'revision', '', 0),
(345, 1, '2026-06-17 07:22:43', '2026-06-17 07:22:43', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											Substance Abuse and Mental Health Services Administration\nPhone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a><br /><br />Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											Phone: <a href=\"tel:18009696642\">1-800-969-6642</a>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:22:43', '2026-06-17 07:22:43', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=345', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(346, 1, '2026-06-17 07:24:16', '2026-06-17 07:24:16', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											Substance Abuse and Mental Health Services Administration\nPhone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a><br /><br />Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											Phone: <a href=\"tel:18009696642\">1-800-969-6642</a>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:24:16', '2026-06-17 07:24:16', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=346', 0, 'revision', '', 0),
(347, 1, '2026-06-17 07:24:16', '2026-06-17 07:24:16', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											Substance Abuse and Mental Health Services Administration\nPhone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a><br /><br />Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											Phone: <a href=\"tel:18009696642\">1-800-969-6642</a>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:24:16', '2026-06-17 07:24:16', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=347', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(348, 1, '2026-06-17 07:24:17', '2026-06-17 07:24:17', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											Substance Abuse and Mental Health Services Administration\nPhone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a><br /><br />Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											Phone: <a href=\"tel:18009696642\">1-800-969-6642</a>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:24:17', '2026-06-17 07:24:17', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=348', 0, 'revision', '', 0),
(349, 1, '2026-06-17 07:25:51', '2026-06-17 07:25:51', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											Substance Abuse and Mental Health Services Administration\nPhone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a><br /><br />Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											Phone: <a href=\"tel:18009696642\">1-800-969-6642</a>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:25:51', '2026-06-17 07:25:51', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=349', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(350, 1, '2026-06-17 07:25:51', '2026-06-17 07:25:51', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											Substance Abuse and Mental Health Services Administration\nPhone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a><br /><br />Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											Phone: <a href=\"tel:18009696642\">1-800-969-6642</a>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:25:51', '2026-06-17 07:25:51', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=350', 0, 'revision', '', 0),
(351, 1, '2026-06-17 07:25:52', '2026-06-17 07:25:52', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											Substance Abuse and Mental Health Services Administration\nPhone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a><br /><br />Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											Phone: <a href=\"tel:18009696642\">1-800-969-6642</a>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a><br /><br />Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:25:52', '2026-06-17 07:25:52', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=351', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(352, 1, '2026-06-17 07:27:15', '2026-06-17 07:27:15', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											Substance Abuse and Mental Health Services Administration\nPhone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a><br /><br />Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											Phone: <a href=\"tel:18009696642\">1-800-969-6642</a>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a><br /><br />Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:27:15', '2026-06-17 07:27:15', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=352', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(353, 1, '2026-06-17 07:27:15', '2026-06-17 07:27:15', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											Substance Abuse and Mental Health Services Administration\nPhone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a><br /><br />Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											Phone: <a href=\"tel:18009696642\">1-800-969-6642</a>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a><br /><br />Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:27:15', '2026-06-17 07:27:15', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=353', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(354, 1, '2026-06-17 07:27:15', '2026-06-17 07:27:15', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											Substance Abuse and Mental Health Services Administration\nPhone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a><br /><br />Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											Phone: <a href=\"tel:18009696642\">1-800-969-6642</a>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a><br /><br />Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											Rape, Abuse &#038; Incest National Network\nPhone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:27:15', '2026-06-17 07:27:15', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=354', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-06-17 07:30:44', '2026-06-17 07:30:44', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											Substance Abuse and Mental Health Services Administration\nPhone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a><br /><br />Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											Phone: <a href=\"tel:18009696642\">1-800-969-6642</a>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a><br /><br />Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											Rape, Abuse &#038; Incest National Network\nPhone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:30:44', '2026-06-17 07:30:44', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=355', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(356, 1, '2026-06-17 07:30:44', '2026-06-17 07:30:44', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											Substance Abuse and Mental Health Services Administration\nPhone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a><br /><br />Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											Phone: <a href=\"tel:18009696642\">1-800-969-6642</a>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a><br /><br />Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											Rape, Abuse &#038; Incest National Network\nPhone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:30:44', '2026-06-17 07:30:44', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=356', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(357, 1, '2026-06-17 07:30:44', '2026-06-17 07:30:44', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											Substance Abuse and Mental Health Services Administration\nPhone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a><br /><br />Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											Phone: <a href=\"tel:18009696642\">1-800-969-6642</a>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a><br /><br />Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											Rape, Abuse &#038; Incest National Network\nPhone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:30:44', '2026-06-17 07:30:44', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=357', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(361, 1, '2026-06-17 07:34:10', '2026-06-17 07:34:10', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											Substance Abuse and Mental Health Services Administration\nPhone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a><br /><br />Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											Phone: <a href=\"tel:18009696642\">1-800-969-6642</a>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a><br /><br />Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											Rape, Abuse &#038; Incest National Network\nPhone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:34:10', '2026-06-17 07:34:10', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=361', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(359, 1, '2026-06-17 07:34:10', '2026-06-17 07:34:10', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											Substance Abuse and Mental Health Services Administration\nPhone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a><br /><br />Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											Phone: <a href=\"tel:18009696642\">1-800-969-6642</a>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a><br /><br />Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											Rape, Abuse &#038; Incest National Network\nPhone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:34:10', '2026-06-17 07:34:10', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=359', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(360, 1, '2026-06-17 07:34:10', '2026-06-17 07:34:10', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											Substance Abuse and Mental Health Services Administration\nPhone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a><br /><br />Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											Phone: <a href=\"tel:18009696642\">1-800-969-6642</a>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a><br /><br />Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											Rape, Abuse &#038; Incest National Network\nPhone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:34:10', '2026-06-17 07:34:10', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=360', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(362, 1, '2026-06-17 07:34:36', '2026-06-17 07:34:36', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											Substance Abuse and Mental Health Services Administration\nPhone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a><br /><br />Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											Phone: <a href=\"tel:18009696642\">1-800-969-6642</a>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a><br /><br />Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											Rape, Abuse &#038; Incest National Network\nPhone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:34:36', '2026-06-17 07:34:36', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=362', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(363, 1, '2026-06-17 07:34:36', '2026-06-17 07:34:36', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											Substance Abuse and Mental Health Services Administration\nPhone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a><br /><br />Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											Phone: <a href=\"tel:18009696642\">1-800-969-6642</a>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a><br /><br />Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											Rape, Abuse &#038; Incest National Network\nPhone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:34:36', '2026-06-17 07:34:36', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=363', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(364, 1, '2026-06-17 07:34:37', '2026-06-17 07:34:37', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:34:37', '2026-06-17 07:34:37', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=364', 0, 'revision', '', 0),
(365, 1, '2026-06-17 07:44:47', '2026-06-17 07:44:47', 'Regular mental wellness check-ins are essential for maintaining emotional balance and identifying early signs of stress, anxiety, or burnout. By using structured strategies such as journaling, therapy sessions, mindfulness practices, and self-reflection, individuals can actively monitor their mental health. Access to the right resources ensures timely support and encourages proactive care for a healthier mind.\r\n\r\nIn addition to personal strategies, professional support plays a key role in mental wellness monitoring. Regular sessions with therapists or counselors can help individuals process emotions, identify thought patterns, and develop coping mechanisms. Support groups and community resources also provide a sense of connection and reduce feelings of isolation.\r\n\r\nModern tools such as mental health apps and mood trackers make it easier to observe emotional trends over time. When combined with professional guidance, these tools create a comprehensive system for maintaining long-term mental wellness and emotional stability.', 'Mind Health Check: Strategies and Resources for Mental Wellness Monitoring', '', 'publish', 'closed', 'closed', '', 'mind-health-check-strategies-and-resources-for-mental-wellness-monitoring', '', '', '2026-06-17 07:44:47', '2026-06-17 07:44:47', '', 0, 'https://mrarif.me/optimalmentalwellness/?p=365', 0, 'post', '', 0),
(366, 1, '2026-06-17 07:44:34', '2026-06-17 07:44:34', '', 'mental blog 3', '', 'inherit', 'closed', 'closed', '', 'mental-blog-3', '', '', '2026-06-17 07:44:34', '2026-06-17 07:44:34', '', 365, 'https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/mental-blog-3.jpg', 0, 'attachment', 'image/jpeg', 0),
(367, 1, '2026-06-17 07:44:47', '2026-06-17 07:44:47', 'Regular mental wellness check-ins are essential for maintaining emotional balance and identifying early signs of stress, anxiety, or burnout. By using structured strategies such as journaling, therapy sessions, mindfulness practices, and self-reflection, individuals can actively monitor their mental health. Access to the right resources ensures timely support and encourages proactive care for a healthier mind.\r\n\r\nIn addition to personal strategies, professional support plays a key role in mental wellness monitoring. Regular sessions with therapists or counselors can help individuals process emotions, identify thought patterns, and develop coping mechanisms. Support groups and community resources also provide a sense of connection and reduce feelings of isolation.\r\n\r\nModern tools such as mental health apps and mood trackers make it easier to observe emotional trends over time. When combined with professional guidance, these tools create a comprehensive system for maintaining long-term mental wellness and emotional stability.', 'Mind Health Check: Strategies and Resources for Mental Wellness Monitoring', '', 'inherit', 'closed', 'closed', '', '365-revision-v1', '', '', '2026-06-17 07:44:47', '2026-06-17 07:44:47', '', 365, 'https://mrarif.me/optimalmentalwellness/?p=367', 0, 'revision', '', 0),
(368, 1, '2026-06-17 07:46:47', '2026-06-17 07:46:47', 'Self-care is not a one-size-fits-all approach but a deeply personal journey that evolves with your needs, lifestyle, and emotional well-being. Building a sustainable self-care routine involves understanding your stressors, prioritizing rest, and creating healthy boundaries in daily life. When practiced consistently, self-care strengthens emotional resilience and supports long-term mental wellness.\r\n\r\nDeveloping self-care mastery also requires awareness of your mental and physical limits. Simple habits like maintaining sleep hygiene, eating balanced meals, engaging in physical activity, and practicing mindfulness can significantly improve emotional stability. Over time, these small actions create a strong foundation for mental clarity and stress management.\r\n\r\nIt is also important to disconnect from negative influences such as excessive screen time or toxic environments. True self-care is not just relaxation—it is intentional living that supports your overall mental, emotional, and physical balance.', 'Embarking on a Journey Cultivating Your Personal Path to Self-Care Mastery', '', 'publish', 'closed', 'closed', '', 'embarking-on-a-journey-cultivating-your-personal-path-to-self-care-mastery', '', '', '2026-06-17 07:48:57', '2026-06-17 07:48:57', '', 0, 'https://mrarif.me/optimalmentalwellness/?p=368', 0, 'post', '', 0),
(369, 1, '2026-06-17 07:46:38', '2026-06-17 07:46:38', '', 'Embarking on a Journey Cultivating Your Personal Path to Self-Care Mastery aa', '', 'inherit', 'closed', 'closed', '', 'embarking-on-a-journey-cultivating-your-personal-path-to-self-care-mastery-aa', '', '', '2026-06-17 07:46:38', '2026-06-17 07:46:38', '', 368, 'https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Embarking-on-a-Journey-Cultivating-Your-Personal-Path-to-Self-Care-Mastery-aa.jpg', 0, 'attachment', 'image/jpeg', 0),
(370, 1, '2026-06-17 07:46:47', '2026-06-17 07:46:47', 'Self-care is not a one-size-fits-all approach but a deeply personal journey that evolves with your needs, lifestyle, and emotional well-being. Building a sustainable self-care routine involves understanding your stressors, prioritizing rest, and creating healthy boundaries in daily life. When practiced consistently, self-care strengthens emotional resilience and supports long-term mental wellness.\r\n\r\nDeveloping self-care mastery also requires awareness of your mental and physical limits. Simple habits like maintaining sleep hygiene, eating balanced meals, engaging in physical activity, and practicing mindfulness can significantly improve emotional stability. Over time, these small actions create a strong foundation for mental clarity and stress management.\r\n\r\nIt is also important to disconnect from negative influences such as excessive screen time or toxic environments. True self-care is not just relaxation—it is intentional living that supports your overall mental, emotional, and physical balance.', 'Embarking on a Journey Cultivating Your Personal Path to Self-Care Mastery', '', 'inherit', 'closed', 'closed', '', '368-revision-v1', '', '', '2026-06-17 07:46:47', '2026-06-17 07:46:47', '', 368, 'https://mrarif.me/optimalmentalwellness/?p=370', 0, 'revision', '', 0),
(371, 1, '2026-06-17 07:49:40', '2026-06-17 07:49:40', 'Telemedicine and health technology are rapidly transforming the healthcare landscape, providing new ways for individuals to access care without physical barriers. Telehealth platforms allow patients to connect with doctors, therapists, and specialists through video calls, messaging, and digital monitoring tools.\r\n\r\nThis evolution is especially impactful in mental health care, where accessibility and timely intervention are crucial. Patients in remote areas or those with limited mobility can now receive consistent support without delays. Additionally, digital health records and AI-powered tools help clinicians make more accurate and personalized treatment decisions.\r\n\r\nBeyond convenience, telemedicine also reduces stigma, as many individuals feel more comfortable seeking help from their own environment. As technology continues to advance, the integration of mental health services into digital platforms will become a core part of modern healthcare systems.', 'Navigating Telemedicine and Health Tech Revolutionizing Healthcare in the Digital Age', '', 'publish', 'closed', 'closed', '', 'navigating-telemedicine-and-health-tech-revolutionizing-healthcare-in-the-digital-age', '', '', '2026-06-17 07:50:51', '2026-06-17 07:50:51', '', 0, 'https://mrarif.me/optimalmentalwellness/?p=371', 0, 'post', '', 0),
(372, 1, '2026-06-17 07:49:26', '2026-06-17 07:49:26', '', 'Navigating Telemedicine and Health Tech Revolutionizing Healthcare in the Digital Age a', '', 'inherit', 'closed', 'closed', '', 'navigating-telemedicine-and-health-tech-revolutionizing-healthcare-in-the-digital-age-a', '', '', '2026-06-17 07:49:26', '2026-06-17 07:49:26', '', 371, 'https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Navigating-Telemedicine-and-Health-Tech-Revolutionizing-Healthcare-in-the-Digital-Age-a.jpg', 0, 'attachment', 'image/jpeg', 0),
(373, 1, '2026-06-17 07:49:40', '2026-06-17 07:49:40', 'Telemedicine and health technology are rapidly transforming the healthcare landscape, providing new ways for individuals to access care without physical barriers. Telehealth platforms allow patients to connect with doctors, therapists, and specialists through video calls, messaging, and digital monitoring tools.\r\n\r\nThis evolution is especially impactful in mental health care, where accessibility and timely intervention are crucial. Patients in remote areas or those with limited mobility can now receive consistent support without delays. Additionally, digital health records and AI-powered tools help clinicians make more accurate and personalized treatment decisions.\r\n\r\nBeyond convenience, telemedicine also reduces stigma, as many individuals feel more comfortable seeking help from their own environment. As technology continues to advance, the integration of mental health services into digital platforms will become a core part of modern healthcare systems.', 'Navigating Telemedicine and Health Tech Revolutionizing Healthcare in the Digital Age', '', 'inherit', 'closed', 'closed', '', '371-revision-v1', '', '', '2026-06-17 07:49:40', '2026-06-17 07:49:40', '', 371, 'https://mrarif.me/optimalmentalwellness/?p=373', 0, 'revision', '', 0),
(374, 1, '2026-06-17 07:52:51', '2026-06-17 07:52:51', '', 'Blog single page', '', 'publish', 'closed', 'closed', '', 'blog-single-page', '', '', '2026-06-17 07:52:51', '2026-06-17 07:52:51', '', 0, 'https://mrarif.me/optimalmentalwellness/?elementor_library=blog-single-page', 0, 'elementor_library', '', 0),
(375, 1, '2026-06-17 07:52:51', '2026-06-17 07:52:51', '', 'Blog single page', '', 'inherit', 'closed', 'closed', '', '374-revision-v1', '', '', '2026-06-17 07:52:51', '2026-06-17 07:52:51', '', 374, 'https://mrarif.me/optimalmentalwellness/?p=375', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(378, 1, '2026-06-17 07:53:30', '2026-06-17 07:53:30', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:53:30', '2026-06-17 07:53:30', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=378', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(379, 1, '2026-06-17 07:53:30', '2026-06-17 07:53:30', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:53:30', '2026-06-17 07:53:30', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=379', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(380, 1, '2026-06-17 07:53:31', '2026-06-17 07:53:31', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Blog</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:53:31', '2026-06-17 07:53:31', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=380', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(381, 1, '2026-06-17 07:53:57', '2026-06-17 07:53:57', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Blog</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:53:57', '2026-06-17 07:53:57', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=381', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(382, 1, '2026-06-17 07:53:57', '2026-06-17 07:53:57', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Blog</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:53:57', '2026-06-17 07:53:57', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=382', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(383, 1, '2026-06-17 07:53:58', '2026-06-17 07:53:58', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Blog</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:53:58', '2026-06-17 07:53:58', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=383', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(384, 1, '2026-06-17 07:54:04', '2026-06-17 07:54:04', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Blog</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:54:04', '2026-06-17 07:54:04', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=384', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-06-17 07:54:04', '2026-06-17 07:54:04', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Blog</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:54:04', '2026-06-17 07:54:04', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=385', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(386, 1, '2026-06-17 07:54:05', '2026-06-17 07:54:05', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Blog</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:54:05', '2026-06-17 07:54:05', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=386', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(387, 1, '2026-06-17 07:54:09', '2026-06-17 07:54:09', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Blog</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:54:09', '2026-06-17 07:54:09', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=387', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(388, 1, '2026-06-17 07:54:09', '2026-06-17 07:54:09', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Blog</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:54:09', '2026-06-17 07:54:09', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=388', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(389, 1, '2026-06-17 07:54:10', '2026-06-17 07:54:10', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Blog</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:54:10', '2026-06-17 07:54:10', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=389', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(390, 1, '2026-06-17 07:56:33', '2026-06-17 07:56:33', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Blog</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:56:33', '2026-06-17 07:56:33', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=390', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(391, 1, '2026-06-17 07:56:33', '2026-06-17 07:56:33', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Blog</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:56:33', '2026-06-17 07:56:33', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=391', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(392, 1, '2026-06-17 07:56:34', '2026-06-17 07:56:34', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:56:34', '2026-06-17 07:56:34', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=392', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(393, 1, '2026-06-17 07:58:40', '2026-06-17 07:58:40', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:58:40', '2026-06-17 07:58:40', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=393', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(394, 1, '2026-06-17 07:58:41', '2026-06-17 07:58:41', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:58:41', '2026-06-17 07:58:41', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=394', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(395, 1, '2026-06-17 07:58:41', '2026-06-17 07:58:41', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:58:41', '2026-06-17 07:58:41', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=395', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(396, 1, '2026-06-17 07:59:11', '2026-06-17 07:59:11', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:59:11', '2026-06-17 07:59:11', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=396', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(397, 1, '2026-06-17 07:59:11', '2026-06-17 07:59:11', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:59:11', '2026-06-17 07:59:11', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=397', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(398, 1, '2026-06-17 07:59:12', '2026-06-17 07:59:12', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 07:59:12', '2026-06-17 07:59:12', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=398', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(399, 1, '2026-06-17 08:00:48', '2026-06-17 08:00:48', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 08:00:48', '2026-06-17 08:00:48', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=399', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-06-17 08:00:48', '2026-06-17 08:00:48', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 08:00:48', '2026-06-17 08:00:48', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=400', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(401, 1, '2026-06-17 08:00:48', '2026-06-17 08:00:48', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 08:00:48', '2026-06-17 08:00:48', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=401', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(402, 1, '2026-06-17 08:01:08', '2026-06-17 08:01:08', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 08:01:08', '2026-06-17 08:01:08', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=402', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(403, 1, '2026-06-17 08:01:08', '2026-06-17 08:01:08', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 08:01:08', '2026-06-17 08:01:08', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=403', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(404, 1, '2026-06-17 08:01:09', '2026-06-17 08:01:09', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 08:01:09', '2026-06-17 08:01:09', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=404', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(405, 1, '2026-06-17 08:02:08', '2026-06-17 08:02:08', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 08:02:08', '2026-06-17 08:02:08', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=405', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(406, 1, '2026-06-17 08:02:08', '2026-06-17 08:02:08', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 08:02:08', '2026-06-17 08:02:08', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=406', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(407, 1, '2026-06-17 08:02:09', '2026-06-17 08:02:09', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 08:02:09', '2026-06-17 08:02:09', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=407', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(408, 1, '2026-06-17 08:03:42', '2026-06-17 08:03:42', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 08:03:42', '2026-06-17 08:03:42', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=408', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(409, 1, '2026-06-17 08:03:42', '2026-06-17 08:03:42', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 08:03:42', '2026-06-17 08:03:42', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=409', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(410, 1, '2026-06-17 08:03:43', '2026-06-17 08:03:43', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 08:03:43', '2026-06-17 08:03:43', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=410', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(411, 1, '2026-06-17 08:03:54', '2026-06-17 08:03:54', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 08:03:54', '2026-06-17 08:03:54', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=411', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(412, 1, '2026-06-17 08:03:54', '2026-06-17 08:03:54', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 08:03:54', '2026-06-17 08:03:54', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=412', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(413, 1, '2026-06-17 08:03:55', '2026-06-17 08:03:55', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 08:03:55', '2026-06-17 08:03:55', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=413', 0, 'revision', '', 0),
(414, 1, '2026-06-17 08:07:43', '2026-06-17 08:07:43', '<h6>About Us</h6>							\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=30.246008,-81.533169&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=5011%20Gate%20Pkwy%20Bldg%20100%2C%20Suite%20100%20Collier%20Building%2C%20Parking%20lot%20Jacksonville%2C%20FL%2032256%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										5011 Gate Parkway Bldg 100 Suite 100  Jacksonville, FL 32256 United States\n											</a>\n									</li>\n								<li>\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										2590 Welton Street suite 200 Denver,Colorado  80205\n									</li>\n								<li>\n											<a href=\"tel:8772967846\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										877 296 7846\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:4702222746\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 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										470 222-2746\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@optimalmentalwellness.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@optimalmentalwellness.org\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.instagram.com/optimal_mentalhealth?igsh=Y3Z3NjFjYnQ0cXdo\" 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							<h6>Opening Hours</h6>							\n					Monday				\n							9:30 AM						\n						-\n							4:30 PM						\n					Tuesday				\n							9:30 AM						\n						-\n							4:30 PM						\n					Wednesday				\n							9:30 AM						\n						-\n							4:30 PM						\n					Thursday				\n							9:30 AM						\n						-\n							4:30 PM						\n					Friday				\n							9:30 AM						\n						-\n							4:30 PM						\n					Saturday				\n					Closed				\n					Sunday				\n					Closed				\n					© [copyright]. All Rights Reserved. Website Developed by <a target=\"_blank\" rel=\"noopener\">Devrivo</a>', 'Footer', '', 'publish', 'closed', 'closed', '', 'footer', '', '', '2026-07-13 16:26:48', '2026-07-13 16:26:48', '', 0, 'https://mrarif.me/optimalmentalwellness/?post_type=elementor_library&#038;p=414', 0, 'elementor_library', '', 0),
(415, 1, '2026-06-17 08:47:09', '2026-06-17 08:47:09', '<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													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', 'footer section', '', 'publish', 'closed', 'closed', '', 'footer-section', '', '', '2026-06-17 08:47:09', '2026-06-17 08:47:09', '', 0, 'https://mrarif.me/optimalmentalwellness/?elementor_library=footer-section', 0, 'elementor_library', '', 0),
(416, 1, '2026-06-17 08:47:09', '2026-06-17 08:47:09', '<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													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', 'footer section', '', 'inherit', 'closed', 'closed', '', '415-revision-v1', '', '', '2026-06-17 08:47:09', '2026-06-17 08:47:09', '', 415, 'https://mrarif.me/optimalmentalwellness/?p=416', 0, 'revision', '', 0),
(418, 1, '2026-06-17 08:48:41', '2026-06-17 08:48:41', '<img width=\"878\" height=\"420\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Optimal-Mental-Health-And-Wellness-logo-a.png\" alt=\"\" />													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', 'Footer', '', 'inherit', 'closed', 'closed', '', '414-revision-v1', '', '', '2026-06-17 08:48:41', '2026-06-17 08:48:41', '', 414, 'https://mrarif.me/optimalmentalwellness/?p=418', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(422, 1, '2026-06-17 09:00:21', '2026-06-17 09:00:21', '<h6>About Us</h6>							\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=30.246008,-81.533169&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=5011%20Gate%20Pkwy%20Bldg%20100%2C%20Suite%20100%20Collier%20Building%2C%20Parking%20lot%20Jacksonville%2C%20FL%2032256%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										5011 Gate Parkway Bldg 100 Suite 100  Jacksonville, FL 32256 United States\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:9049017913\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										904-901-7913\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:9043726034\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 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										904-372-6034\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@optimalmentalwellness.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@optimalmentalwellness.org\n											</a>\n									</li>\n						</ul>\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							<h6>Opening Hours</h6>							\n					Monday				\n							5:30 AM						\n						-\n							8:30 PM						\n					Tuesday				\n							5:30 AM						\n						-\n							8:30 PM						\n					Wednesday				\n							5:30 AM						\n						-\n							8:30 PM						\n					Thursday				\n							5:30 AM						\n						-\n							8:30 PM						\n					Friday				\n							5:30 AM						\n						-\n							8:00 PM						\n					Saturday				\n							8:00 AM						\n						-\n							1:00 PM						\n					Sunday				\n							8:00 AM						\n						-\n							1:00 PM						\n					Copyright 2024 All Rights Reserved', 'Footer', '', 'inherit', 'closed', 'closed', '', '414-revision-v1', '', '', '2026-06-17 09:00:21', '2026-06-17 09:00:21', '', 414, 'https://mrarif.me/optimalmentalwellness/?p=422', 0, 'revision', '', 0),
(420, 1, '2026-06-17 08:54:28', '2026-06-17 08:54:28', '<h6>About Us</h6>							\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=30.246008,-81.533169&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=5011%20Gate%20Pkwy%20Bldg%20100%2C%20Suite%20100%20Collier%20Building%2C%20Parking%20lot%20Jacksonville%2C%20FL%2032256%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										5011 Gate Parkway Bldg 100 Suite 100  Jacksonville, FL 32256 United States\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:9049017913\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										904-901-7913\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:9043726034\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 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										904-372-6034\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@optimalmentalwellness.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@optimalmentalwellness.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>Opening Hours</h6>							\n					Sunday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Monday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Tuesday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Wednesday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Thursday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Friday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Saturday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Copyright 2024 All Rights Reserved', 'Footer', '', 'inherit', 'closed', 'closed', '', '414-revision-v1', '', '', '2026-06-17 08:54:28', '2026-06-17 08:54:28', '', 414, 'https://mrarif.me/optimalmentalwellness/?p=420', 0, 'revision', '', 0),
(423, 1, '2026-06-17 09:07:15', '2026-06-17 09:07:15', '<h6>About Us</h6>							\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=30.246008,-81.533169&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=5011%20Gate%20Pkwy%20Bldg%20100%2C%20Suite%20100%20Collier%20Building%2C%20Parking%20lot%20Jacksonville%2C%20FL%2032256%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										5011 Gate Parkway Bldg 100 Suite 100  Jacksonville, FL 32256 United States\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:9049017913\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										904-901-7913\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:9043726034\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 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										904-372-6034\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@optimalmentalwellness.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@optimalmentalwellness.org\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.instagram.com/optimal_mentalhealth?igsh=Y3Z3NjFjYnQ0cXdo\" 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							<h6>Opening Hours</h6>							\n					Monday				\n							5:30 AM						\n						-\n							8:30 PM						\n					Tuesday				\n							5:30 AM						\n						-\n							8:30 PM						\n					Wednesday				\n							5:30 AM						\n						-\n							8:30 PM						\n					Thursday				\n							5:30 AM						\n						-\n							8:30 PM						\n					Friday				\n							5:30 AM						\n						-\n							8:00 PM						\n					Saturday				\n							8:00 AM						\n						-\n							1:00 PM						\n					Sunday				\n							8:00 AM						\n						-\n							1:00 PM						\n					Copyright 2024 All Rights Reserved', 'Footer', '', 'inherit', 'closed', 'closed', '', '414-revision-v1', '', '', '2026-06-17 09:07:15', '2026-06-17 09:07:15', '', 414, 'https://mrarif.me/optimalmentalwellness/?p=423', 0, 'revision', '', 0),
(424, 1, '2026-06-17 09:07:24', '2026-06-17 09:07:24', '<h6>About Us</h6>							\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=30.246008,-81.533169&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=5011%20Gate%20Pkwy%20Bldg%20100%2C%20Suite%20100%20Collier%20Building%2C%20Parking%20lot%20Jacksonville%2C%20FL%2032256%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										5011 Gate Parkway Bldg 100 Suite 100  Jacksonville, FL 32256 United States\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:9049017913\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										904-901-7913\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:9043726034\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 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										904-372-6034\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@optimalmentalwellness.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@optimalmentalwellness.org\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.instagram.com/optimal_mentalhealth?igsh=Y3Z3NjFjYnQ0cXdo\" 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							<h6>Opening Hours</h6>							\n					Monday				\n							5:30 AM						\n						-\n							8:30 PM						\n					Tuesday				\n							5:30 AM						\n						-\n							8:30 PM						\n					Wednesday				\n							5:30 AM						\n						-\n							8:30 PM						\n					Thursday				\n							5:30 AM						\n						-\n							8:30 PM						\n					Friday				\n							5:30 AM						\n						-\n							8:00 PM						\n					Saturday				\n							8:00 AM						\n						-\n							1:00 PM						\n					Sunday				\n							8:00 AM						\n						-\n							1:00 PM						\n					Copyright 2024 All Rights Reserved', 'Footer', '', 'inherit', 'closed', 'closed', '', '414-revision-v1', '', '', '2026-06-17 09:07:24', '2026-06-17 09:07:24', '', 414, 'https://mrarif.me/optimalmentalwellness/?p=424', 0, 'revision', '', 0),
(425, 1, '2026-06-17 09:09:31', '2026-06-17 09:09:31', '<h6>About Us</h6>							\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=30.246008,-81.533169&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=5011%20Gate%20Pkwy%20Bldg%20100%2C%20Suite%20100%20Collier%20Building%2C%20Parking%20lot%20Jacksonville%2C%20FL%2032256%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										5011 Gate Parkway Bldg 100 Suite 100  Jacksonville, FL 32256 United States\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:9049017913\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										904-901-7913\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:9043726034\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 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										904-372-6034\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@optimalmentalwellness.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@optimalmentalwellness.org\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.instagram.com/optimal_mentalhealth?igsh=Y3Z3NjFjYnQ0cXdo\" 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							<h6>Opening Hours</h6>							\n					Monday				\n							5:30 AM						\n						-\n							8:30 PM						\n					Tuesday				\n							5:30 AM						\n						-\n							8:30 PM						\n					Wednesday				\n							5:30 AM						\n						-\n							8:30 PM						\n					Thursday				\n							5:30 AM						\n						-\n							8:30 PM						\n					Friday				\n							5:30 AM						\n						-\n							8:00 PM						\n					Saturday				\n							8:00 AM						\n						-\n							1:00 PM						\n					Sunday				\n							8:00 AM						\n						-\n							1:00 PM						\n					© 2026. All Rights Reserved. Website Developed by <a href=\"https://devrivo.com/\" target=\"_blank\" rel=\"noopener\">Devrivo</a>', 'Footer', '', 'inherit', 'closed', 'closed', '', '414-revision-v1', '', '', '2026-06-17 09:09:31', '2026-06-17 09:09:31', '', 414, 'https://mrarif.me/optimalmentalwellness/?p=425', 0, 'revision', '', 0),
(426, 1, '2026-06-17 09:10:43', '2026-06-17 09:10:43', '<h6>About Us</h6>							\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=30.246008,-81.533169&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=5011%20Gate%20Pkwy%20Bldg%20100%2C%20Suite%20100%20Collier%20Building%2C%20Parking%20lot%20Jacksonville%2C%20FL%2032256%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										5011 Gate Parkway Bldg 100 Suite 100  Jacksonville, FL 32256 United States\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:9049017913\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										904-901-7913\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:9043726034\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 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										904-372-6034\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@optimalmentalwellness.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@optimalmentalwellness.org\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.instagram.com/optimal_mentalhealth?igsh=Y3Z3NjFjYnQ0cXdo\" 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							<h6>Opening Hours</h6>							\n					Monday				\n							5:30 AM						\n						-\n							8:30 PM						\n					Tuesday				\n							5:30 AM						\n						-\n							8:30 PM						\n					Wednesday				\n							5:30 AM						\n						-\n							8:30 PM						\n					Thursday				\n							5:30 AM						\n						-\n							8:30 PM						\n					Friday				\n							5:30 AM						\n						-\n							8:00 PM						\n					Saturday				\n							8:00 AM						\n						-\n							1:00 PM						\n					Sunday				\n							8:00 AM						\n						-\n							1:00 PM						\n					©[copyright]. All Rights Reserved. Website Developed by <a target=\"_blank\" rel=\"noopener\">Devrivo</a>', 'Footer', '', 'inherit', 'closed', 'closed', '', '414-revision-v1', '', '', '2026-06-17 09:10:43', '2026-06-17 09:10:43', '', 414, 'https://mrarif.me/optimalmentalwellness/?p=426', 0, 'revision', '', 0),
(427, 1, '2026-06-17 09:11:33', '2026-06-17 09:11:33', '<h6>About Us</h6>							\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=30.246008,-81.533169&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=5011%20Gate%20Pkwy%20Bldg%20100%2C%20Suite%20100%20Collier%20Building%2C%20Parking%20lot%20Jacksonville%2C%20FL%2032256%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										5011 Gate Parkway Bldg 100 Suite 100  Jacksonville, FL 32256 United States\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:9049017913\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										904-901-7913\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:9043726034\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 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										904-372-6034\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@optimalmentalwellness.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@optimalmentalwellness.org\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.instagram.com/optimal_mentalhealth?igsh=Y3Z3NjFjYnQ0cXdo\" 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							<h6>Opening Hours</h6>							\n					Monday				\n							5:30 AM						\n						-\n							8:30 PM						\n					Tuesday				\n							5:30 AM						\n						-\n							8:30 PM						\n					Wednesday				\n							5:30 AM						\n						-\n							8:30 PM						\n					Thursday				\n							5:30 AM						\n						-\n							8:30 PM						\n					Friday				\n							5:30 AM						\n						-\n							8:00 PM						\n					Saturday				\n							8:00 AM						\n						-\n							1:00 PM						\n					Sunday				\n							8:00 AM						\n						-\n							1:00 PM						\n					© [copyright]. All Rights Reserved. Website Developed by <a target=\"_blank\" rel=\"noopener\">Devrivo</a>', 'Footer', '', 'inherit', 'closed', 'closed', '', '414-revision-v1', '', '', '2026-06-17 09:11:33', '2026-06-17 09:11:33', '', 414, 'https://mrarif.me/optimalmentalwellness/?p=427', 0, 'revision', '', 0),
(428, 1, '2026-06-17 09:17:14', '2026-06-17 09:17:14', '<ul>\n							<li>\n											<a href=\"mailto:info@optimalmentalwellness.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@optimalmentalwellness.org\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:9049017913\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										904-901-7913\n											</a>\n									</li>\n						</ul>\n																	<img width=\"878\" height=\"420\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Optimal-Mental-Health-And-Wellness-logo-a.png\" alt=\"\" />																					<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book Now\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2026-06-17 09:17:14', '2026-06-17 09:17:14', '', 48, 'https://mrarif.me/optimalmentalwellness/?p=428', 0, 'revision', '', 0),
(429, 1, '2026-06-17 09:17:24', '2026-06-17 09:17:24', '<ul>\n							<li>\n											<a href=\"mailto:info@optimalmentalwellness.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@optimalmentalwellness.org\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:9049017913\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										904-901-7913\n											</a>\n									</li>\n						</ul>\n																	<img width=\"878\" height=\"420\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Optimal-Mental-Health-And-Wellness-logo-a.png\" alt=\"\" />																					<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book Now\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2026-06-17 09:17:24', '2026-06-17 09:17:24', '', 48, 'https://mrarif.me/optimalmentalwellness/?p=429', 0, 'revision', '', 0),
(430, 1, '2026-06-17 09:17:41', '2026-06-17 09:17:41', '<ul>\n							<li>\n											<a href=\"mailto:info@optimalmentalwellness.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@optimalmentalwellness.org\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:9049017913\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										904-901-7913\n											</a>\n									</li>\n						</ul>\n																	<img width=\"878\" height=\"420\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Optimal-Mental-Health-And-Wellness-logo-a.png\" alt=\"\" />																					<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book Now\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2026-06-17 09:17:41', '2026-06-17 09:17:41', '', 48, 'https://mrarif.me/optimalmentalwellness/?p=430', 0, 'revision', '', 0),
(431, 1, '2026-06-17 09:17:56', '2026-06-17 09:17:56', '<ul>\n							<li>\n											<a href=\"mailto:info@optimalmentalwellness.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@optimalmentalwellness.org\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:9049017913\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										904-901-7913\n											</a>\n									</li>\n						</ul>\n																	<img width=\"878\" height=\"420\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Optimal-Mental-Health-And-Wellness-logo-a.png\" alt=\"\" />																					<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book Now\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2026-06-17 09:17:56', '2026-06-17 09:17:56', '', 48, 'https://mrarif.me/optimalmentalwellness/?p=431', 0, 'revision', '', 0),
(432, 1, '2026-06-17 09:25:31', '2026-06-17 09:25:31', '', 'Mental Health And Wellness av', '', 'inherit', 'closed', 'closed', '', 'mental-health-and-wellness-av', '', '', '2026-06-17 09:25:31', '2026-06-17 09:25:31', '', 48, 'https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Mental-Health-And-Wellness-av.jpg', 0, 'attachment', 'image/jpeg', 0),
(433, 1, '2026-06-17 09:25:44', '2026-06-17 09:25:44', '<ul>\n							<li>\n											<a href=\"mailto:info@optimalmentalwellness.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@optimalmentalwellness.org\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:9049017913\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										904-901-7913\n											</a>\n									</li>\n						</ul>\n																	<img width=\"878\" height=\"420\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Optimal-Mental-Health-And-Wellness-logo-a.png\" alt=\"\" />																					<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book Now\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2026-06-17 09:25:44', '2026-06-17 09:25:44', '', 48, 'https://mrarif.me/optimalmentalwellness/?p=433', 0, 'revision', '', 0),
(434, 1, '2026-06-17 09:26:48', '2026-06-17 09:26:48', '', 'About Us', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-06-17 09:26:48', '2026-06-17 09:26:48', '', 31, 'https://mrarif.me/optimalmentalwellness/?p=434', 0, 'revision', '', 0),
(435, 1, '2026-06-17 09:26:49', '2026-06-17 09:26:49', '', 'About Us', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-06-17 09:26:49', '2026-06-17 09:26:49', '', 31, 'https://mrarif.me/optimalmentalwellness/?p=435', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(436, 1, '2026-06-17 09:26:49', '2026-06-17 09:26:49', '<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.', 'About Us', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-06-17 09:26:49', '2026-06-17 09:26:49', '', 31, 'https://mrarif.me/optimalmentalwellness/?p=436', 0, 'revision', '', 0),
(437, 1, '2026-06-17 09:32:37', '2026-06-17 09:32:37', '', 'Meet the Provider', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-06-17 09:32:37', '2026-06-17 09:32:37', '', 12, 'https://mrarif.me/optimalmentalwellness/?p=437', 0, 'revision', '', 0),
(438, 1, '2026-06-17 09:32:38', '2026-06-17 09:32:38', '', 'Meet the Provider', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-06-17 09:32:38', '2026-06-17 09:32:38', '', 12, 'https://mrarif.me/optimalmentalwellness/?p=438', 0, 'revision', '', 0),
(439, 1, '2026-06-17 09:32:38', '2026-06-17 09:32:38', '<h2>Meet the Provider</h2>					<h5>Arlene Johnson</h5>		<p>Arlene Johnson is a distinguished board -certified Nurse Practitioner holding a Masters Degree in Nursing Practice. Arlene is licensed in the state of Florida,Washington,Arizona,and Colorado as a Psychiatric Mental Health Nurse Practitioner . She obtained her Bachelor’s degree and Master’s degree from Walden University.</p><p>Arlene\'s passion for mental health was ignited early on in her nursing career, and since then, being an advocate for those suffering from mental health conditions has been at the forefront. With well over a decade of experience in the healthcare field, ranging from treating acute to chronic conditions, Arlene believes in a comprehensive approach integrating both her Psychiatric and Medical background grounded in evidence-based practice to provide the highest quality of care. With her patient-centered care tailored to meet the needs of each individual patient, she not only fosters a caring therapeutic environment, but she also empowers her patients to become the best version of themselves.<br /><br />Her years of extensive healthcare experience and unparalleled insight has helped individuals cultivate a path towards a balanced and fulfilling life of mental wellness!</p>', 'Meet the Provider', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-06-17 09:32:38', '2026-06-17 09:32:38', '', 12, 'https://mrarif.me/optimalmentalwellness/?p=439', 0, 'revision', '', 0),
(440, 1, '2026-06-17 09:32:58', '2026-06-17 09:32:58', '', 'Screenshot', 'Screenshot', 'inherit', 'closed', 'closed', '', 'screenshot', '', '', '2026-06-17 09:32:58', '2026-06-17 09:32:58', '', 12, 'https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/IMG_9815.jpg', 0, 'attachment', 'image/jpeg', 0),
(441, 1, '2026-06-17 09:33:47', '2026-06-17 09:33:47', '<h2>Meet the Provider</h2>					<h5>Arlene Johnson</h5>		<p>Arlene Johnson is a distinguished board -certified Nurse Practitioner holding a Masters Degree in Nursing Practice. Arlene is licensed in the state of Florida,Washington,Arizona,and Colorado as a Psychiatric Mental Health Nurse Practitioner . She obtained her Bachelor’s degree and Master’s degree from Walden University.</p><p>Arlene\'s passion for mental health was ignited early on in her nursing career, and since then, being an advocate for those suffering from mental health conditions has been at the forefront. With well over a decade of experience in the healthcare field, ranging from treating acute to chronic conditions, Arlene believes in a comprehensive approach integrating both her Psychiatric and Medical background grounded in evidence-based practice to provide the highest quality of care. With her patient-centered care tailored to meet the needs of each individual patient, she not only fosters a caring therapeutic environment, but she also empowers her patients to become the best version of themselves.<br /><br />Her years of extensive healthcare experience and unparalleled insight has helped individuals cultivate a path towards a balanced and fulfilling life of mental wellness!</p>', 'Meet the Provider', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-06-17 09:33:47', '2026-06-17 09:33:47', '', 12, 'https://mrarif.me/optimalmentalwellness/?p=441', 0, 'revision', '', 0),
(442, 1, '2026-06-17 09:33:47', '2026-06-17 09:33:47', '<h2>Meet the Provider</h2>					<h5>Arlene Johnson</h5>		<p>Arlene Johnson is a distinguished board -certified Nurse Practitioner holding a Masters Degree in Nursing Practice. Arlene is licensed in the state of Florida,Washington,Arizona,and Colorado as a Psychiatric Mental Health Nurse Practitioner . She obtained her Bachelor’s degree and Master’s degree from Walden University.</p><p>Arlene\'s passion for mental health was ignited early on in her nursing career, and since then, being an advocate for those suffering from mental health conditions has been at the forefront. With well over a decade of experience in the healthcare field, ranging from treating acute to chronic conditions, Arlene believes in a comprehensive approach integrating both her Psychiatric and Medical background grounded in evidence-based practice to provide the highest quality of care. With her patient-centered care tailored to meet the needs of each individual patient, she not only fosters a caring therapeutic environment, but she also empowers her patients to become the best version of themselves.<br /><br />Her years of extensive healthcare experience and unparalleled insight has helped individuals cultivate a path towards a balanced and fulfilling life of mental wellness!</p>', 'Meet the Provider', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-06-17 09:33:47', '2026-06-17 09:33:47', '', 12, 'https://mrarif.me/optimalmentalwellness/?p=442', 0, 'revision', '', 0),
(443, 1, '2026-06-17 09:33:48', '2026-06-17 09:33:48', '<img width=\"826\" height=\"1188\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/IMG_9815.jpg\" alt=\"\" />																<h2>Meet the Provider</h2>					<h5>Arlene Johnson</h5>		<p>Arlene Johnson is a distinguished board -certified Nurse Practitioner holding a Masters Degree in Nursing Practice. Arlene is licensed in the state of Florida,Washington,Arizona,and Colorado as a Psychiatric Mental Health Nurse Practitioner . She obtained her Bachelor’s degree and Master’s degree from Walden University.</p><p>Arlene\'s passion for mental health was ignited early on in her nursing career, and since then, being an advocate for those suffering from mental health conditions has been at the forefront. With well over a decade of experience in the healthcare field, ranging from treating acute to chronic conditions, Arlene believes in a comprehensive approach integrating both her Psychiatric and Medical background grounded in evidence-based practice to provide the highest quality of care. With her patient-centered care tailored to meet the needs of each individual patient, she not only fosters a caring therapeutic environment, but she also empowers her patients to become the best version of themselves.<br /><br />Her years of extensive healthcare experience and unparalleled insight has helped individuals cultivate a path towards a balanced and fulfilling life of mental wellness!</p>', 'Meet the Provider', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-06-17 09:33:48', '2026-06-17 09:33:48', '', 12, 'https://mrarif.me/optimalmentalwellness/?p=443', 0, 'revision', '', 0),
(444, 1, '2026-06-17 09:33:54', '2026-06-17 09:33:54', '<img width=\"826\" height=\"1188\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/IMG_9815.jpg\" alt=\"\" />																<h2>Meet the Provider</h2>					<h5>Arlene Johnson</h5>		<p>Arlene Johnson is a distinguished board -certified Nurse Practitioner holding a Masters Degree in Nursing Practice. Arlene is licensed in the state of Florida,Washington,Arizona,and Colorado as a Psychiatric Mental Health Nurse Practitioner . She obtained her Bachelor’s degree and Master’s degree from Walden University.</p><p>Arlene\'s passion for mental health was ignited early on in her nursing career, and since then, being an advocate for those suffering from mental health conditions has been at the forefront. With well over a decade of experience in the healthcare field, ranging from treating acute to chronic conditions, Arlene believes in a comprehensive approach integrating both her Psychiatric and Medical background grounded in evidence-based practice to provide the highest quality of care. With her patient-centered care tailored to meet the needs of each individual patient, she not only fosters a caring therapeutic environment, but she also empowers her patients to become the best version of themselves.<br /><br />Her years of extensive healthcare experience and unparalleled insight has helped individuals cultivate a path towards a balanced and fulfilling life of mental wellness!</p>', 'Meet the Provider', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-06-17 09:33:54', '2026-06-17 09:33:54', '', 12, 'https://mrarif.me/optimalmentalwellness/?p=444', 0, 'revision', '', 0),
(445, 1, '2026-06-17 09:33:54', '2026-06-17 09:33:54', '<img width=\"826\" height=\"1188\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/IMG_9815.jpg\" alt=\"\" />																<h2>Meet the Provider</h2>					<h5>Arlene Johnson</h5>		<p>Arlene Johnson is a distinguished board -certified Nurse Practitioner holding a Masters Degree in Nursing Practice. Arlene is licensed in the state of Florida,Washington,Arizona,and Colorado as a Psychiatric Mental Health Nurse Practitioner . She obtained her Bachelor’s degree and Master’s degree from Walden University.</p><p>Arlene\'s passion for mental health was ignited early on in her nursing career, and since then, being an advocate for those suffering from mental health conditions has been at the forefront. With well over a decade of experience in the healthcare field, ranging from treating acute to chronic conditions, Arlene believes in a comprehensive approach integrating both her Psychiatric and Medical background grounded in evidence-based practice to provide the highest quality of care. With her patient-centered care tailored to meet the needs of each individual patient, she not only fosters a caring therapeutic environment, but she also empowers her patients to become the best version of themselves.<br /><br />Her years of extensive healthcare experience and unparalleled insight has helped individuals cultivate a path towards a balanced and fulfilling life of mental wellness!</p>', 'Meet the Provider', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-06-17 09:33:54', '2026-06-17 09:33:54', '', 12, 'https://mrarif.me/optimalmentalwellness/?p=445', 0, 'revision', '', 0),
(446, 1, '2026-06-17 09:33:55', '2026-06-17 09:33:55', '<img width=\"826\" height=\"1188\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/IMG_9815.jpg\" alt=\"\" />																<h2>Meet the Provider</h2>					<h5>Arlene Johnson</h5>		<p>Arlene Johnson is a distinguished board -certified Nurse Practitioner holding a Masters Degree in Nursing Practice. Arlene is licensed in the state of Florida,Washington,Arizona,and Colorado as a Psychiatric Mental Health Nurse Practitioner . She obtained her Bachelor’s degree and Master’s degree from Walden University.</p><p>Arlene\'s passion for mental health was ignited early on in her nursing career, and since then, being an advocate for those suffering from mental health conditions has been at the forefront. With well over a decade of experience in the healthcare field, ranging from treating acute to chronic conditions, Arlene believes in a comprehensive approach integrating both her Psychiatric and Medical background grounded in evidence-based practice to provide the highest quality of care. With her patient-centered care tailored to meet the needs of each individual patient, she not only fosters a caring therapeutic environment, but she also empowers her patients to become the best version of themselves.<br /><br />Her years of extensive healthcare experience and unparalleled insight has helped individuals cultivate a path towards a balanced and fulfilling life of mental wellness!</p>', 'Meet the Provider', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-06-17 09:33:55', '2026-06-17 09:33:55', '', 12, 'https://mrarif.me/optimalmentalwellness/?p=446', 0, 'revision', '', 0),
(447, 1, '2026-06-17 09:34:44', '2026-06-17 09:34:44', '<img width=\"826\" height=\"1188\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/IMG_9815.jpg\" alt=\"\" />																<h2>Meet the Provider</h2>					<h5>Arlene Johnson</h5>		<p>Arlene Johnson is a distinguished board -certified Nurse Practitioner holding a Masters Degree in Nursing Practice. Arlene is licensed in the state of Florida,Washington,Arizona,and Colorado as a Psychiatric Mental Health Nurse Practitioner . She obtained her Bachelor’s degree and Master’s degree from Walden University.</p><p>Arlene\'s passion for mental health was ignited early on in her nursing career, and since then, being an advocate for those suffering from mental health conditions has been at the forefront. With well over a decade of experience in the healthcare field, ranging from treating acute to chronic conditions, Arlene believes in a comprehensive approach integrating both her Psychiatric and Medical background grounded in evidence-based practice to provide the highest quality of care. With her patient-centered care tailored to meet the needs of each individual patient, she not only fosters a caring therapeutic environment, but she also empowers her patients to become the best version of themselves.<br /><br />Her years of extensive healthcare experience and unparalleled insight has helped individuals cultivate a path towards a balanced and fulfilling life of mental wellness!</p>', 'Meet the Provider', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-06-17 09:34:44', '2026-06-17 09:34:44', '', 12, 'https://mrarif.me/optimalmentalwellness/?p=447', 0, 'revision', '', 0),
(448, 1, '2026-06-17 09:34:44', '2026-06-17 09:34:44', '<img width=\"826\" height=\"1188\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/IMG_9815.jpg\" alt=\"\" />																<h2>Meet the Provider</h2>					<h5>Arlene Johnson</h5>		<p>Arlene Johnson is a distinguished board -certified Nurse Practitioner holding a Masters Degree in Nursing Practice. Arlene is licensed in the state of Florida,Washington,Arizona,and Colorado as a Psychiatric Mental Health Nurse Practitioner . She obtained her Bachelor’s degree and Master’s degree from Walden University.</p><p>Arlene\'s passion for mental health was ignited early on in her nursing career, and since then, being an advocate for those suffering from mental health conditions has been at the forefront. With well over a decade of experience in the healthcare field, ranging from treating acute to chronic conditions, Arlene believes in a comprehensive approach integrating both her Psychiatric and Medical background grounded in evidence-based practice to provide the highest quality of care. With her patient-centered care tailored to meet the needs of each individual patient, she not only fosters a caring therapeutic environment, but she also empowers her patients to become the best version of themselves.<br /><br />Her years of extensive healthcare experience and unparalleled insight has helped individuals cultivate a path towards a balanced and fulfilling life of mental wellness!</p>', 'Meet the Provider', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-06-17 09:34:44', '2026-06-17 09:34:44', '', 12, 'https://mrarif.me/optimalmentalwellness/?p=448', 0, 'revision', '', 0),
(449, 1, '2026-06-17 09:34:45', '2026-06-17 09:34:45', '<img width=\"826\" height=\"1188\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/IMG_9815.jpg\" alt=\"\" />																<h2>Meet the Provider</h2>					<h5>Arlene Johnson</h5>		<p>Arlene Johnson is a distinguished board -certified Nurse Practitioner holding a Masters Degree in Nursing Practice. Arlene is licensed in the state of Florida,Washington,Arizona,and Colorado as a Psychiatric Mental Health Nurse Practitioner . She obtained her Bachelor’s degree and Master’s degree from Walden University.</p><p>Arlene\'s passion for mental health was ignited early on in her nursing career, and since then, being an advocate for those suffering from mental health conditions has been at the forefront. With well over a decade of experience in the healthcare field, ranging from treating acute to chronic conditions, Arlene believes in a comprehensive approach integrating both her Psychiatric and Medical background grounded in evidence-based practice to provide the highest quality of care. With her patient-centered care tailored to meet the needs of each individual patient, she not only fosters a caring therapeutic environment, but she also empowers her patients to become the best version of themselves.<br /><br />Her years of extensive healthcare experience and unparalleled insight has helped individuals cultivate a path towards a balanced and fulfilling life of mental wellness!</p>', 'Meet the Provider', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-06-17 09:34:45', '2026-06-17 09:34:45', '', 12, 'https://mrarif.me/optimalmentalwellness/?p=449', 0, 'revision', '', 0),
(450, 1, '2026-06-17 09:35:05', '2026-06-17 09:35:05', '<img width=\"826\" height=\"1188\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/IMG_9815.jpg\" alt=\"\" />																<h2>Meet the Provider</h2>					<h5>Arlene Johnson</h5>		<p>Arlene Johnson is a distinguished board -certified Nurse Practitioner holding a Masters Degree in Nursing Practice. Arlene is licensed in the state of Florida,Washington,Arizona,and Colorado as a Psychiatric Mental Health Nurse Practitioner . She obtained her Bachelor’s degree and Master’s degree from Walden University.</p><p>Arlene\'s passion for mental health was ignited early on in her nursing career, and since then, being an advocate for those suffering from mental health conditions has been at the forefront. With well over a decade of experience in the healthcare field, ranging from treating acute to chronic conditions, Arlene believes in a comprehensive approach integrating both her Psychiatric and Medical background grounded in evidence-based practice to provide the highest quality of care. With her patient-centered care tailored to meet the needs of each individual patient, she not only fosters a caring therapeutic environment, but she also empowers her patients to become the best version of themselves.<br /><br />Her years of extensive healthcare experience and unparalleled insight has helped individuals cultivate a path towards a balanced and fulfilling life of mental wellness!</p>', 'Meet the Provider', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-06-17 09:35:05', '2026-06-17 09:35:05', '', 12, 'https://mrarif.me/optimalmentalwellness/?p=450', 0, 'revision', '', 0),
(451, 1, '2026-06-17 09:35:05', '2026-06-17 09:35:05', '<img width=\"826\" height=\"1188\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/IMG_9815.jpg\" alt=\"\" />																<h2>Meet the Provider</h2>					<h5>Arlene Johnson</h5>		<p>Arlene Johnson is a distinguished board -certified Nurse Practitioner holding a Masters Degree in Nursing Practice. Arlene is licensed in the state of Florida,Washington,Arizona,and Colorado as a Psychiatric Mental Health Nurse Practitioner . She obtained her Bachelor’s degree and Master’s degree from Walden University.</p><p>Arlene\'s passion for mental health was ignited early on in her nursing career, and since then, being an advocate for those suffering from mental health conditions has been at the forefront. With well over a decade of experience in the healthcare field, ranging from treating acute to chronic conditions, Arlene believes in a comprehensive approach integrating both her Psychiatric and Medical background grounded in evidence-based practice to provide the highest quality of care. With her patient-centered care tailored to meet the needs of each individual patient, she not only fosters a caring therapeutic environment, but she also empowers her patients to become the best version of themselves.<br /><br />Her years of extensive healthcare experience and unparalleled insight has helped individuals cultivate a path towards a balanced and fulfilling life of mental wellness!</p>', 'Meet the Provider', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-06-17 09:35:05', '2026-06-17 09:35:05', '', 12, 'https://mrarif.me/optimalmentalwellness/?p=451', 0, 'revision', '', 0),
(452, 1, '2026-06-17 09:35:05', '2026-06-17 09:35:05', '<img width=\"826\" height=\"1188\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/IMG_9815.jpg\" alt=\"\" />																<h2>Meet the Provider</h2>					<h5>Arlene Johnson</h5>		<p>Arlene Johnson is a distinguished board -certified Nurse Practitioner holding a Masters Degree in Nursing Practice. Arlene is licensed in the state of Florida,Washington,Arizona,and Colorado as a Psychiatric Mental Health Nurse Practitioner . She obtained her Bachelor’s degree and Master’s degree from Walden University.</p><p>Arlene\'s passion for mental health was ignited early on in her nursing career, and since then, being an advocate for those suffering from mental health conditions has been at the forefront. With well over a decade of experience in the healthcare field, ranging from treating acute to chronic conditions, Arlene believes in a comprehensive approach integrating both her Psychiatric and Medical background grounded in evidence-based practice to provide the highest quality of care. With her patient-centered care tailored to meet the needs of each individual patient, she not only fosters a caring therapeutic environment, but she also empowers her patients to become the best version of themselves.<br /><br />Her years of extensive healthcare experience and unparalleled insight has helped individuals cultivate a path towards a balanced and fulfilling life of mental wellness!</p>', 'Meet the Provider', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-06-17 09:35:05', '2026-06-17 09:35:05', '', 12, 'https://mrarif.me/optimalmentalwellness/?p=452', 0, 'revision', '', 0),
(453, 1, '2026-06-17 09:51:07', '2026-06-17 09:51:07', '', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 09:51:07', '2026-06-17 09:51:07', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=453', 0, 'revision', '', 0),
(454, 1, '2026-06-17 09:51:07', '2026-06-17 09:51:07', '', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 09:51:07', '2026-06-17 09:51:07', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=454', 0, 'revision', '', 0),
(455, 1, '2026-06-17 09:51:08', '2026-06-17 09:51:08', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 09:51:08', '2026-06-17 09:51:08', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=455', 0, 'revision', '', 0),
(456, 1, '2026-06-17 09:51:26', '2026-06-17 09:51:26', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 09:51:26', '2026-06-17 09:51:26', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=456', 0, 'revision', '', 0),
(457, 1, '2026-06-17 09:51:26', '2026-06-17 09:51:26', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 09:51:26', '2026-06-17 09:51:26', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=457', 0, 'revision', '', 0),
(458, 1, '2026-06-17 09:51:26', '2026-06-17 09:51:26', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 09:51:26', '2026-06-17 09:51:26', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=458', 0, 'revision', '', 0),
(459, 1, '2026-06-17 09:51:35', '2026-06-17 09:51:35', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 09:51:35', '2026-06-17 09:51:35', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=459', 0, 'revision', '', 0),
(460, 1, '2026-06-17 09:51:35', '2026-06-17 09:51:35', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 09:51:35', '2026-06-17 09:51:35', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=460', 0, 'revision', '', 0),
(461, 1, '2026-06-17 09:51:36', '2026-06-17 09:51:36', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 09:51:36', '2026-06-17 09:51:36', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=461', 0, 'revision', '', 0),
(462, 1, '2026-06-17 09:52:43', '2026-06-17 09:52:43', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 09:52:43', '2026-06-17 09:52:43', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=462', 0, 'revision', '', 0),
(463, 1, '2026-06-17 09:52:43', '2026-06-17 09:52:43', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 09:52:43', '2026-06-17 09:52:43', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=463', 0, 'revision', '', 0),
(464, 1, '2026-06-17 09:52:43', '2026-06-17 09:52:43', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 09:52:43', '2026-06-17 09:52:43', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=464', 0, 'revision', '', 0),
(466, 1, '2026-06-17 09:54:44', '2026-06-17 09:54:44', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 09:54:44', '2026-06-17 09:54:44', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=466', 0, 'revision', '', 0),
(467, 1, '2026-06-17 09:54:44', '2026-06-17 09:54:44', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 09:54:44', '2026-06-17 09:54:44', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=467', 0, 'revision', '', 0),
(468, 1, '2026-06-17 09:54:44', '2026-06-17 09:54:44', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 09:54:44', '2026-06-17 09:54:44', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=468', 0, 'revision', '', 0),
(469, 1, '2026-06-17 09:58:08', '2026-06-17 09:58:08', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 09:58:08', '2026-06-17 09:58:08', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=469', 0, 'revision', '', 0),
(470, 1, '2026-06-17 09:58:09', '2026-06-17 09:58:09', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 09:58:09', '2026-06-17 09:58:09', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=470', 0, 'revision', '', 0),
(471, 1, '2026-06-17 09:58:09', '2026-06-17 09:58:09', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 09:58:09', '2026-06-17 09:58:09', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=471', 0, 'revision', '', 0),
(472, 1, '2026-06-17 09:58:21', '2026-06-17 09:58:21', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 09:58:21', '2026-06-17 09:58:21', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=472', 0, 'revision', '', 0),
(473, 1, '2026-06-17 09:58:21', '2026-06-17 09:58:21', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 09:58:21', '2026-06-17 09:58:21', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=473', 0, 'revision', '', 0),
(474, 1, '2026-06-17 09:58:21', '2026-06-17 09:58:21', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 09:58:21', '2026-06-17 09:58:21', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=474', 0, 'revision', '', 0),
(475, 1, '2026-06-17 09:59:05', '2026-06-17 09:59:05', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 09:59:05', '2026-06-17 09:59:05', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=475', 0, 'revision', '', 0),
(476, 1, '2026-06-17 09:59:05', '2026-06-17 09:59:05', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 09:59:05', '2026-06-17 09:59:05', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=476', 0, 'revision', '', 0),
(477, 1, '2026-06-17 09:59:06', '2026-06-17 09:59:06', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 09:59:06', '2026-06-17 09:59:06', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=477', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(478, 1, '2026-06-17 10:00:03', '2026-06-17 10:00:03', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:00:03', '2026-06-17 10:00:03', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=478', 0, 'revision', '', 0),
(479, 1, '2026-06-17 10:00:03', '2026-06-17 10:00:03', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:00:03', '2026-06-17 10:00:03', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=479', 0, 'revision', '', 0),
(480, 1, '2026-06-17 10:00:03', '2026-06-17 10:00:03', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul>\n 	<li>Enhance the effectiveness of medications through optimal nutrition.</li>\n 	<li>Reduce side effects of medications by addressing nutritional deficiencies.</li>\n 	<li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li>\n</ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:00:03', '2026-06-17 10:00:03', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=480', 0, 'revision', '', 0),
(481, 1, '2026-06-17 10:00:30', '2026-06-17 10:00:30', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul>\n 	<li>Enhance the effectiveness of medications through optimal nutrition.</li>\n 	<li>Reduce side effects of medications by addressing nutritional deficiencies.</li>\n 	<li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li>\n</ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:00:30', '2026-06-17 10:00:30', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=481', 0, 'revision', '', 0),
(482, 1, '2026-06-17 10:00:30', '2026-06-17 10:00:30', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul>\n 	<li>Enhance the effectiveness of medications through optimal nutrition.</li>\n 	<li>Reduce side effects of medications by addressing nutritional deficiencies.</li>\n 	<li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li>\n</ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:00:30', '2026-06-17 10:00:30', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=482', 0, 'revision', '', 0),
(483, 1, '2026-06-17 10:00:30', '2026-06-17 10:00:30', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:00:30', '2026-06-17 10:00:30', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=483', 0, 'revision', '', 0),
(484, 1, '2026-06-17 10:00:43', '2026-06-17 10:00:43', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:00:43', '2026-06-17 10:00:43', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=484', 0, 'revision', '', 0),
(485, 1, '2026-06-17 10:00:43', '2026-06-17 10:00:43', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:00:43', '2026-06-17 10:00:43', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=485', 0, 'revision', '', 0),
(486, 1, '2026-06-17 10:00:43', '2026-06-17 10:00:43', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:00:43', '2026-06-17 10:00:43', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=486', 0, 'revision', '', 0),
(487, 1, '2026-06-17 10:00:51', '2026-06-17 10:00:51', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:00:51', '2026-06-17 10:00:51', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=487', 0, 'revision', '', 0),
(488, 1, '2026-06-17 10:00:51', '2026-06-17 10:00:51', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:00:51', '2026-06-17 10:00:51', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=488', 0, 'revision', '', 0),
(489, 1, '2026-06-17 10:00:51', '2026-06-17 10:00:51', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:00:51', '2026-06-17 10:00:51', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=489', 0, 'revision', '', 0),
(493, 1, '2026-06-17 10:08:17', '2026-06-17 10:08:17', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />																<h2>Medication &amp; Nutritional Management</h2>		<ul style=\"margin-left: 18px;\">\n 	<li>Individual therapy</li>\n 	<li>Couples/marriage therapy</li>\n 	<li>Family therapy</li>\n 	<li>Child/teen therapy</li>\n 	<li>Online therapy</li>\n 	<li>COMMON SPECIALTIES &amp; approaches</li>\n 	<li>Anxiety therapy</li>\n 	<li>Cognitive behavioral therapy (CBT)</li>\n 	<li>Depression counseling</li>\n 	<li>Dialectical behavior therapy (DBT)</li>\n 	<li>Grief &amp; loss counseling</li>\n 	<li>Relational therapy</li>\n</ul><ul style=\"margin-left: 18px;\">\n 	<li>Enhance the effectiveness of medications through optimal nutrition.</li>\n 	<li>Reduce side effects of medications by addressing nutritional deficiencies.</li>\n 	<li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li>\n</ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:08:17', '2026-06-17 10:08:17', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=493', 0, 'revision', '', 0),
(491, 1, '2026-06-17 10:08:17', '2026-06-17 10:08:17', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:08:17', '2026-06-17 10:08:17', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=491', 0, 'revision', '', 0),
(492, 1, '2026-06-17 10:08:17', '2026-06-17 10:08:17', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:08:17', '2026-06-17 10:08:17', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=492', 0, 'revision', '', 0),
(494, 1, '2026-06-17 10:19:58', '2026-06-17 10:19:58', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />																<h2>Medication &amp; Nutritional Management</h2>		<ul style=\"margin-left: 18px;\">\n 	<li>Individual therapy</li>\n 	<li>Couples/marriage therapy</li>\n 	<li>Family therapy</li>\n 	<li>Child/teen therapy</li>\n 	<li>Online therapy</li>\n 	<li>COMMON SPECIALTIES &amp; approaches</li>\n 	<li>Anxiety therapy</li>\n 	<li>Cognitive behavioral therapy (CBT)</li>\n 	<li>Depression counseling</li>\n 	<li>Dialectical behavior therapy (DBT)</li>\n 	<li>Grief &amp; loss counseling</li>\n 	<li>Relational therapy</li>\n</ul><ul style=\"margin-left: 18px;\">\n 	<li>Enhance the effectiveness of medications through optimal nutrition.</li>\n 	<li>Reduce side effects of medications by addressing nutritional deficiencies.</li>\n 	<li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li>\n</ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:19:58', '2026-06-17 10:19:58', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=494', 0, 'revision', '', 0),
(495, 1, '2026-06-17 10:19:58', '2026-06-17 10:19:58', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />																<h2>Medication &amp; Nutritional Management</h2>		<ul style=\"margin-left: 18px;\">\n 	<li>Individual therapy</li>\n 	<li>Couples/marriage therapy</li>\n 	<li>Family therapy</li>\n 	<li>Child/teen therapy</li>\n 	<li>Online therapy</li>\n 	<li>COMMON SPECIALTIES &amp; approaches</li>\n 	<li>Anxiety therapy</li>\n 	<li>Cognitive behavioral therapy (CBT)</li>\n 	<li>Depression counseling</li>\n 	<li>Dialectical behavior therapy (DBT)</li>\n 	<li>Grief &amp; loss counseling</li>\n 	<li>Relational therapy</li>\n</ul><ul style=\"margin-left: 18px;\">\n 	<li>Enhance the effectiveness of medications through optimal nutrition.</li>\n 	<li>Reduce side effects of medications by addressing nutritional deficiencies.</li>\n 	<li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li>\n</ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:19:58', '2026-06-17 10:19:58', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=495', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(496, 1, '2026-06-17 10:19:58', '2026-06-17 10:19:58', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />																<h2>Medication &amp; Nutritional Management</h2>		<ul style=\"margin-left: 18px;\">\n 	<li>Individual therapy</li>\n 	<li>Couples/marriage therapy</li>\n 	<li>Family therapy</li>\n 	<li>Child/teen therapy</li>\n 	<li>Online therapy</li>\n 	<li>COMMON SPECIALTIES &amp; approaches</li>\n 	<li>Anxiety therapy</li>\n 	<li>Cognitive behavioral therapy (CBT)</li>\n 	<li>Depression counseling</li>\n 	<li>Dialectical behavior therapy (DBT)</li>\n 	<li>Grief &amp; loss counseling</li>\n 	<li>Relational therapy</li>\n</ul>			<h3>Therapy can be highly beneficial for mental health for several reasons:</h3>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Safe Space												</h5>\n											Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Emotional Support												</h5>\n											Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Self-Exploration												</h5>\n											Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Coping Strategies												</h5>\n											Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Goal Setting												</h5>\n											Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Relationship Improvement												</h5>\n											Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Skill Development												</h5>\n											Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Tailored Approaches												</h5>\n											Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:19:58', '2026-06-17 10:19:58', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=496', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(497, 1, '2026-06-17 10:20:38', '2026-06-17 10:20:38', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />																<h2>Medication &amp; Nutritional Management</h2>		<ul style=\"margin-left: 18px;\">\n 	<li>Individual therapy</li>\n 	<li>Couples/marriage therapy</li>\n 	<li>Family therapy</li>\n 	<li>Child/teen therapy</li>\n 	<li>Online therapy</li>\n 	<li>COMMON SPECIALTIES &amp; approaches</li>\n 	<li>Anxiety therapy</li>\n 	<li>Cognitive behavioral therapy (CBT)</li>\n 	<li>Depression counseling</li>\n 	<li>Dialectical behavior therapy (DBT)</li>\n 	<li>Grief &amp; loss counseling</li>\n 	<li>Relational therapy</li>\n</ul>			<h3>Therapy can be highly beneficial for mental health for several reasons:</h3>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Safe Space												</h5>\n											Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Emotional Support												</h5>\n											Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Self-Exploration												</h5>\n											Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Coping Strategies												</h5>\n											Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Goal Setting												</h5>\n											Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Relationship Improvement												</h5>\n											Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Skill Development												</h5>\n											Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Tailored Approaches												</h5>\n											Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:20:38', '2026-06-17 10:20:38', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=497', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(498, 1, '2026-06-17 10:20:38', '2026-06-17 10:20:38', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />																<h2>Medication &amp; Nutritional Management</h2>		<ul style=\"margin-left: 18px;\">\n 	<li>Individual therapy</li>\n 	<li>Couples/marriage therapy</li>\n 	<li>Family therapy</li>\n 	<li>Child/teen therapy</li>\n 	<li>Online therapy</li>\n 	<li>COMMON SPECIALTIES &amp; approaches</li>\n 	<li>Anxiety therapy</li>\n 	<li>Cognitive behavioral therapy (CBT)</li>\n 	<li>Depression counseling</li>\n 	<li>Dialectical behavior therapy (DBT)</li>\n 	<li>Grief &amp; loss counseling</li>\n 	<li>Relational therapy</li>\n</ul>			<h3>Therapy can be highly beneficial for mental health for several reasons:</h3>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Safe Space												</h5>\n											Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Emotional Support												</h5>\n											Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Self-Exploration												</h5>\n											Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Coping Strategies												</h5>\n											Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Goal Setting												</h5>\n											Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Relationship Improvement												</h5>\n											Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Skill Development												</h5>\n											Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Tailored Approaches												</h5>\n											Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:20:38', '2026-06-17 10:20:38', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=498', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(499, 1, '2026-06-17 10:20:38', '2026-06-17 10:20:38', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />																<h2>Psychotherapy</h2>		<ul style=\"margin-left: 18px;\">\n 	<li>Individual therapy</li>\n 	<li>Couples/marriage therapy</li>\n 	<li>Family therapy</li>\n 	<li>Child/teen therapy</li>\n 	<li>Online therapy</li>\n 	<li>COMMON SPECIALTIES &amp; approaches</li>\n 	<li>Anxiety therapy</li>\n 	<li>Cognitive behavioral therapy (CBT)</li>\n 	<li>Depression counseling</li>\n 	<li>Dialectical behavior therapy (DBT)</li>\n 	<li>Grief &amp; loss counseling</li>\n 	<li>Relational therapy</li>\n</ul>			<h3>Therapy can be highly beneficial for mental health for several reasons:</h3>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Safe Space												</h5>\n											Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Emotional Support												</h5>\n											Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Self-Exploration												</h5>\n											Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Coping Strategies												</h5>\n											Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Goal Setting												</h5>\n											Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Relationship Improvement												</h5>\n											Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Skill Development												</h5>\n											Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Tailored Approaches												</h5>\n											Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:20:38', '2026-06-17 10:20:38', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=499', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(500, 1, '2026-06-17 10:21:17', '2026-06-17 10:21:17', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />																<h2>Psychotherapy</h2>		<ul style=\"margin-left: 18px;\">\n 	<li>Individual therapy</li>\n 	<li>Couples/marriage therapy</li>\n 	<li>Family therapy</li>\n 	<li>Child/teen therapy</li>\n 	<li>Online therapy</li>\n 	<li>COMMON SPECIALTIES &amp; approaches</li>\n 	<li>Anxiety therapy</li>\n 	<li>Cognitive behavioral therapy (CBT)</li>\n 	<li>Depression counseling</li>\n 	<li>Dialectical behavior therapy (DBT)</li>\n 	<li>Grief &amp; loss counseling</li>\n 	<li>Relational therapy</li>\n</ul>			<h3>Therapy can be highly beneficial for mental health for several reasons:</h3>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Safe Space												</h5>\n											Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Emotional Support												</h5>\n											Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Self-Exploration												</h5>\n											Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Coping Strategies												</h5>\n											Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Goal Setting												</h5>\n											Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Relationship Improvement												</h5>\n											Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Skill Development												</h5>\n											Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Tailored Approaches												</h5>\n											Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:21:17', '2026-06-17 10:21:17', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=500', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(501, 1, '2026-06-17 10:21:18', '2026-06-17 10:21:18', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />																<h2>Psychotherapy</h2>		<ul style=\"margin-left: 18px;\">\n 	<li>Individual therapy</li>\n 	<li>Couples/marriage therapy</li>\n 	<li>Family therapy</li>\n 	<li>Child/teen therapy</li>\n 	<li>Online therapy</li>\n 	<li>COMMON SPECIALTIES &amp; approaches</li>\n 	<li>Anxiety therapy</li>\n 	<li>Cognitive behavioral therapy (CBT)</li>\n 	<li>Depression counseling</li>\n 	<li>Dialectical behavior therapy (DBT)</li>\n 	<li>Grief &amp; loss counseling</li>\n 	<li>Relational therapy</li>\n</ul>			<h3>Therapy can be highly beneficial for mental health for several reasons:</h3>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Safe Space												</h5>\n											Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Emotional Support												</h5>\n											Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Self-Exploration												</h5>\n											Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Coping Strategies												</h5>\n											Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Goal Setting												</h5>\n											Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Relationship Improvement												</h5>\n											Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Skill Development												</h5>\n											Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Tailored Approaches												</h5>\n											Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:21:18', '2026-06-17 10:21:18', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=501', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(502, 1, '2026-06-17 10:21:18', '2026-06-17 10:21:18', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />																<h2>Psychotherapy</h2>		<ul style=\"margin-left: 18px;\">\n 	<li>Individual therapy</li>\n 	<li>Couples/marriage therapy</li>\n 	<li>Family therapy</li>\n 	<li>Child/teen therapy</li>\n 	<li>Online therapy</li>\n 	<li>COMMON SPECIALTIES &amp; approaches</li>\n 	<li>Anxiety therapy</li>\n 	<li>Cognitive behavioral therapy (CBT)</li>\n 	<li>Depression counseling</li>\n 	<li>Dialectical behavior therapy (DBT)</li>\n 	<li>Grief &amp; loss counseling</li>\n 	<li>Relational therapy</li>\n</ul>			<h3>Therapy can be highly beneficial for mental health for several reasons:</h3>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Safe Space												</h5>\n											Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Emotional Support												</h5>\n											Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Self-Exploration												</h5>\n											Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Coping Strategies												</h5>\n											Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Goal Setting												</h5>\n											Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Relationship Improvement												</h5>\n											Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Skill Development												</h5>\n											Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Tailored Approaches												</h5>\n											Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.										\n		Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:21:18', '2026-06-17 10:21:18', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=502', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(507, 1, '2026-06-17 10:24:52', '2026-06-17 10:24:52', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />																<h2>Psychotherapy</h2>		<ul style=\"margin-left: 18px;\">\n 	<li>Individual therapy</li>\n 	<li>Couples/marriage therapy</li>\n 	<li>Family therapy</li>\n 	<li>Child/teen therapy</li>\n 	<li>Online therapy</li>\n 	<li>COMMON SPECIALTIES &amp; approaches</li>\n 	<li>Anxiety therapy</li>\n 	<li>Cognitive behavioral therapy (CBT)</li>\n 	<li>Depression counseling</li>\n 	<li>Dialectical behavior therapy (DBT)</li>\n 	<li>Grief &amp; loss counseling</li>\n 	<li>Relational therapy</li>\n</ul>			<h3>Therapy can be highly beneficial for mental health for several reasons:</h3>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 64 64.1999969\" width=\"512\"><path d=\"m51.2529297 42.0226555c.6357422-.6357422.9863281-1.4804688.9863281-2.3808594 0-.8994141-.3500977-1.7441406-.9863281-2.3808594-1.3125-1.3125-3.4492188-1.3125-4.7617188 0l-9.3178711 9.3173828c-.7426758.7441406-1.1518555 1.7314453-1.1518555 2.7822266v11.6396484c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-5.109375l11.5913086-11.5917969c.1875-.1875.2929688-.4414062.2929688-.7070312v-11.5488281c0-2.0097656-1.6347656-3.6445312-3.6445312-3.6445312s-3.6450195 1.6347656-3.6450195 3.6445312v8.6582031l-4.2260742 4.2255859c-.1459961.1455078-.3828125.1435547-.527832 0-.1455078-.1455078-.1455078-.3818359 0-.5273438zm-3.7910156 4.3183594c.9243164.9248047 2.4306641.9267578 3.355957 0l4.519043-4.5185547c.1875-.1875.2929688-.4414062.2929688-.7070312v-9.0722656c0-.9072266.737793-1.6445312 1.6450195-1.6445312.9067383 0 1.6445312.7373047 1.6445312 1.6445312v11.1347656l-11.5913086 11.5917968c-.1875.1875-.2929688.4414062-.2929688.7070312v4.5234375h-9.0136719v-10.6396484c0-.5166016.2011719-1.0029297.5664062-1.3681641l9.3173828-9.3173828c.5332031-.5332031 1.4008789-.5332031 1.9331055 0 .2583008.2587891.4008789.6015625.4008789.9667969s-.1420898.7089844-.4003906.9667969l-2.3769531 2.3769531c-.9252929.9248047-.9252929 2.4306641.0000001 3.3554688z\"></path><path d=\"m6.7250977 28.398632c-2.0097656 0-3.6445312 1.6347656-3.6445312 3.6445312v11.5488281c0 .265625.1054688.5195312.2929688.7070312l11.5913086 11.5917969v5.109375c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-11.6396483c0-1.0507812-.4091797-2.0380859-1.1523438-2.7822266l-9.3173828-9.3173828c-1.3125-1.3125-3.4487305-1.3125-4.762207 0-.6357422.6367188-.9858398 1.4814453-.9858398 2.3808594 0 .9003906.3505859 1.7451172.9863281 2.3808594l2.3769531 2.3769531c.1455078.1455078.1455078.3818359 0 .5273438s-.3823242.1435547-.527832 0l-4.2260742-4.2255859v-8.6582031c-.0000002-2.0097657-1.6352541-3.6445314-3.6450197-3.6445314zm6.4570312 17.9423829c.925293.9267578 2.4316406.9257812 3.355957 0 .925293-.9248047.925293-2.4306641 0-3.3554688l-2.3769531-2.3769531c-.2583008-.2578125-.4003906-.6015625-.4003906-.9667969s.1425781-.7080078.4003906-.9667969c.5332031-.5332031 1.4003906-.5332031 1.9335938 0l9.3168945 9.3173828c.3657227.3652344.5668945.8515625.5668945 1.3681641v10.6396484h-9.0136719v-4.5234375c0-.265625-.1054688-.5195312-.2929688-.7070312l-11.5913085-11.5917969v-11.1347656c0-.9072266.737793-1.6445312 1.6445312-1.6445312.9072266 0 1.6450195.7373047 1.6450195 1.6445312v9.0722656c0 .265625.1054688.5195312.2929688.7070312z\"></path><path d=\"m32 2.0998046c-10.0986328 0-18.3144531 8.2158203-18.3144531 18.3144531s8.2158203 18.3144525 18.3144531 18.3144525 18.3144531-8.2158203 18.3144531-18.3144531-8.2158203-18.3144525-18.3144531-18.3144525zm0 2.0000003c7.614502 0 14.0088501 5.2510376 15.798584 12.3173819-3.1233521-2.2542105-8.8903809-3.70996-15.798584-3.70996s-12.6752319 1.4557495-15.798584 3.70996c1.7897339-7.0663443 8.184082-12.3173819 15.798584-12.3173819zm16.3144531 16.3144521c0 2.6992188-6.7001953 5.7070312-16.3144531 5.7070312s-16.3144531-3.0078125-16.3144531-5.7070312 6.7001953-5.7070302 16.3144531-5.7070302 16.3144531 3.0078115 16.3144531 5.7070302zm-16.3144531 16.3144532c-7.614502 0-14.0088501-5.2510376-15.798584-12.3173828 3.1233521 2.2542114 8.8903809 3.7099609 15.798584 3.7099609s12.6752319-1.4557495 15.798584-3.7099609c-1.7897339 7.0663452-8.184082 12.3173828-15.798584 12.3173828z\"></path></svg>							\n												<h5>\n													Safe Space												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Emotional Support												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Self-Exploration												</h5>\n											<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Coping Strategies												</h5>\n											<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Goal Setting												</h5>\n											<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Relationship Improvement												</h5>\n											<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Skill Development												</h5>\n											<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Tailored Approaches												</h5>\n											<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.</p>										\n		Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:24:52', '2026-06-17 10:24:52', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=507', 0, 'revision', '', 0),
(504, 1, '2026-06-17 10:24:42', '2026-06-17 10:24:42', '', 'dimension_9728408', '', 'inherit', 'closed', 'closed', '', 'dimension_9728408', '', '', '2026-06-17 10:24:42', '2026-06-17 10:24:42', '', 14, 'https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/dimension_9728408.svg', 0, 'attachment', 'image/svg+xml', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(505, 1, '2026-06-17 10:24:52', '2026-06-17 10:24:52', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />																<h2>Psychotherapy</h2>		<ul style=\"margin-left: 18px;\">\n 	<li>Individual therapy</li>\n 	<li>Couples/marriage therapy</li>\n 	<li>Family therapy</li>\n 	<li>Child/teen therapy</li>\n 	<li>Online therapy</li>\n 	<li>COMMON SPECIALTIES &amp; approaches</li>\n 	<li>Anxiety therapy</li>\n 	<li>Cognitive behavioral therapy (CBT)</li>\n 	<li>Depression counseling</li>\n 	<li>Dialectical behavior therapy (DBT)</li>\n 	<li>Grief &amp; loss counseling</li>\n 	<li>Relational therapy</li>\n</ul>			<h3>Therapy can be highly beneficial for mental health for several reasons:</h3>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Safe Space												</h5>\n											Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Emotional Support												</h5>\n											Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Self-Exploration												</h5>\n											Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Coping Strategies												</h5>\n											Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Goal Setting												</h5>\n											Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Relationship Improvement												</h5>\n											Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Skill Development												</h5>\n											Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Tailored Approaches												</h5>\n											Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.										\n		Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:24:52', '2026-06-17 10:24:52', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=505', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(506, 1, '2026-06-17 10:24:52', '2026-06-17 10:24:52', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />																<h2>Psychotherapy</h2>		<ul style=\"margin-left: 18px;\">\n 	<li>Individual therapy</li>\n 	<li>Couples/marriage therapy</li>\n 	<li>Family therapy</li>\n 	<li>Child/teen therapy</li>\n 	<li>Online therapy</li>\n 	<li>COMMON SPECIALTIES &amp; approaches</li>\n 	<li>Anxiety therapy</li>\n 	<li>Cognitive behavioral therapy (CBT)</li>\n 	<li>Depression counseling</li>\n 	<li>Dialectical behavior therapy (DBT)</li>\n 	<li>Grief &amp; loss counseling</li>\n 	<li>Relational therapy</li>\n</ul>			<h3>Therapy can be highly beneficial for mental health for several reasons:</h3>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Safe Space												</h5>\n											Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Emotional Support												</h5>\n											Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Self-Exploration												</h5>\n											Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Coping Strategies												</h5>\n											Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Goal Setting												</h5>\n											Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Relationship Improvement												</h5>\n											Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Skill Development												</h5>\n											Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Tailored Approaches												</h5>\n											Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.										\n		Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:24:52', '2026-06-17 10:24:52', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=506', 0, 'revision', '', 0),
(508, 1, '2026-06-17 10:25:41', '2026-06-17 10:25:41', '', 'compassion_7040984', '', 'inherit', 'closed', 'closed', '', 'compassion_7040984', '', '', '2026-06-17 10:25:41', '2026-06-17 10:25:41', '', 14, 'https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/compassion_7040984.svg', 0, 'attachment', 'image/svg+xml', 0),
(509, 1, '2026-06-17 10:26:07', '2026-06-17 10:26:07', '', 'friendship_4760671', '', 'inherit', 'closed', 'closed', '', 'friendship_4760671', '', '', '2026-06-17 10:26:07', '2026-06-17 10:26:07', '', 14, 'https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/friendship_4760671.svg', 0, 'attachment', 'image/svg+xml', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(510, 1, '2026-06-17 10:26:11', '2026-06-17 10:26:11', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />																<h2>Psychotherapy</h2>		<ul style=\"margin-left: 18px;\">\n 	<li>Individual therapy</li>\n 	<li>Couples/marriage therapy</li>\n 	<li>Family therapy</li>\n 	<li>Child/teen therapy</li>\n 	<li>Online therapy</li>\n 	<li>COMMON SPECIALTIES &amp; approaches</li>\n 	<li>Anxiety therapy</li>\n 	<li>Cognitive behavioral therapy (CBT)</li>\n 	<li>Depression counseling</li>\n 	<li>Dialectical behavior therapy (DBT)</li>\n 	<li>Grief &amp; loss counseling</li>\n 	<li>Relational therapy</li>\n</ul>			<h3>Therapy can be highly beneficial for mental health for several reasons:</h3>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 64 64.1999969\" width=\"512\"><path d=\"m51.2529297 42.0226555c.6357422-.6357422.9863281-1.4804688.9863281-2.3808594 0-.8994141-.3500977-1.7441406-.9863281-2.3808594-1.3125-1.3125-3.4492188-1.3125-4.7617188 0l-9.3178711 9.3173828c-.7426758.7441406-1.1518555 1.7314453-1.1518555 2.7822266v11.6396484c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-5.109375l11.5913086-11.5917969c.1875-.1875.2929688-.4414062.2929688-.7070312v-11.5488281c0-2.0097656-1.6347656-3.6445312-3.6445312-3.6445312s-3.6450195 1.6347656-3.6450195 3.6445312v8.6582031l-4.2260742 4.2255859c-.1459961.1455078-.3828125.1435547-.527832 0-.1455078-.1455078-.1455078-.3818359 0-.5273438zm-3.7910156 4.3183594c.9243164.9248047 2.4306641.9267578 3.355957 0l4.519043-4.5185547c.1875-.1875.2929688-.4414062.2929688-.7070312v-9.0722656c0-.9072266.737793-1.6445312 1.6450195-1.6445312.9067383 0 1.6445312.7373047 1.6445312 1.6445312v11.1347656l-11.5913086 11.5917968c-.1875.1875-.2929688.4414062-.2929688.7070312v4.5234375h-9.0136719v-10.6396484c0-.5166016.2011719-1.0029297.5664062-1.3681641l9.3173828-9.3173828c.5332031-.5332031 1.4008789-.5332031 1.9331055 0 .2583008.2587891.4008789.6015625.4008789.9667969s-.1420898.7089844-.4003906.9667969l-2.3769531 2.3769531c-.9252929.9248047-.9252929 2.4306641.0000001 3.3554688z\"></path><path d=\"m6.7250977 28.398632c-2.0097656 0-3.6445312 1.6347656-3.6445312 3.6445312v11.5488281c0 .265625.1054688.5195312.2929688.7070312l11.5913086 11.5917969v5.109375c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-11.6396483c0-1.0507812-.4091797-2.0380859-1.1523438-2.7822266l-9.3173828-9.3173828c-1.3125-1.3125-3.4487305-1.3125-4.762207 0-.6357422.6367188-.9858398 1.4814453-.9858398 2.3808594 0 .9003906.3505859 1.7451172.9863281 2.3808594l2.3769531 2.3769531c.1455078.1455078.1455078.3818359 0 .5273438s-.3823242.1435547-.527832 0l-4.2260742-4.2255859v-8.6582031c-.0000002-2.0097657-1.6352541-3.6445314-3.6450197-3.6445314zm6.4570312 17.9423829c.925293.9267578 2.4316406.9257812 3.355957 0 .925293-.9248047.925293-2.4306641 0-3.3554688l-2.3769531-2.3769531c-.2583008-.2578125-.4003906-.6015625-.4003906-.9667969s.1425781-.7080078.4003906-.9667969c.5332031-.5332031 1.4003906-.5332031 1.9335938 0l9.3168945 9.3173828c.3657227.3652344.5668945.8515625.5668945 1.3681641v10.6396484h-9.0136719v-4.5234375c0-.265625-.1054688-.5195312-.2929688-.7070312l-11.5913085-11.5917969v-11.1347656c0-.9072266.737793-1.6445312 1.6445312-1.6445312.9072266 0 1.6450195.7373047 1.6450195 1.6445312v9.0722656c0 .265625.1054688.5195312.2929688.7070312z\"></path><path d=\"m32 2.0998046c-10.0986328 0-18.3144531 8.2158203-18.3144531 18.3144531s8.2158203 18.3144525 18.3144531 18.3144525 18.3144531-8.2158203 18.3144531-18.3144531-8.2158203-18.3144525-18.3144531-18.3144525zm0 2.0000003c7.614502 0 14.0088501 5.2510376 15.798584 12.3173819-3.1233521-2.2542105-8.8903809-3.70996-15.798584-3.70996s-12.6752319 1.4557495-15.798584 3.70996c1.7897339-7.0663443 8.184082-12.3173819 15.798584-12.3173819zm16.3144531 16.3144521c0 2.6992188-6.7001953 5.7070312-16.3144531 5.7070312s-16.3144531-3.0078125-16.3144531-5.7070312 6.7001953-5.7070302 16.3144531-5.7070302 16.3144531 3.0078115 16.3144531 5.7070302zm-16.3144531 16.3144532c-7.614502 0-14.0088501-5.2510376-15.798584-12.3173828 3.1233521 2.2542114 8.8903809 3.7099609 15.798584 3.7099609s12.6752319-1.4557495 15.798584-3.7099609c-1.7897339 7.0663452-8.184082 12.3173828-15.798584 12.3173828z\"></path></svg>							\n												<h5>\n													Safe Space												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Emotional Support												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Self-Exploration												</h5>\n											<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Coping Strategies												</h5>\n											<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Goal Setting												</h5>\n											<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Relationship Improvement												</h5>\n											<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Skill Development												</h5>\n											<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Tailored Approaches												</h5>\n											<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.</p>										\n		Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:26:11', '2026-06-17 10:26:11', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=510', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(511, 1, '2026-06-17 10:26:11', '2026-06-17 10:26:11', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />																<h2>Psychotherapy</h2>		<ul style=\"margin-left: 18px;\">\n 	<li>Individual therapy</li>\n 	<li>Couples/marriage therapy</li>\n 	<li>Family therapy</li>\n 	<li>Child/teen therapy</li>\n 	<li>Online therapy</li>\n 	<li>COMMON SPECIALTIES &amp; approaches</li>\n 	<li>Anxiety therapy</li>\n 	<li>Cognitive behavioral therapy (CBT)</li>\n 	<li>Depression counseling</li>\n 	<li>Dialectical behavior therapy (DBT)</li>\n 	<li>Grief &amp; loss counseling</li>\n 	<li>Relational therapy</li>\n</ul>			<h3>Therapy can be highly beneficial for mental health for several reasons:</h3>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 64 64.1999969\" width=\"512\"><path d=\"m51.2529297 42.0226555c.6357422-.6357422.9863281-1.4804688.9863281-2.3808594 0-.8994141-.3500977-1.7441406-.9863281-2.3808594-1.3125-1.3125-3.4492188-1.3125-4.7617188 0l-9.3178711 9.3173828c-.7426758.7441406-1.1518555 1.7314453-1.1518555 2.7822266v11.6396484c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-5.109375l11.5913086-11.5917969c.1875-.1875.2929688-.4414062.2929688-.7070312v-11.5488281c0-2.0097656-1.6347656-3.6445312-3.6445312-3.6445312s-3.6450195 1.6347656-3.6450195 3.6445312v8.6582031l-4.2260742 4.2255859c-.1459961.1455078-.3828125.1435547-.527832 0-.1455078-.1455078-.1455078-.3818359 0-.5273438zm-3.7910156 4.3183594c.9243164.9248047 2.4306641.9267578 3.355957 0l4.519043-4.5185547c.1875-.1875.2929688-.4414062.2929688-.7070312v-9.0722656c0-.9072266.737793-1.6445312 1.6450195-1.6445312.9067383 0 1.6445312.7373047 1.6445312 1.6445312v11.1347656l-11.5913086 11.5917968c-.1875.1875-.2929688.4414062-.2929688.7070312v4.5234375h-9.0136719v-10.6396484c0-.5166016.2011719-1.0029297.5664062-1.3681641l9.3173828-9.3173828c.5332031-.5332031 1.4008789-.5332031 1.9331055 0 .2583008.2587891.4008789.6015625.4008789.9667969s-.1420898.7089844-.4003906.9667969l-2.3769531 2.3769531c-.9252929.9248047-.9252929 2.4306641.0000001 3.3554688z\"></path><path d=\"m6.7250977 28.398632c-2.0097656 0-3.6445312 1.6347656-3.6445312 3.6445312v11.5488281c0 .265625.1054688.5195312.2929688.7070312l11.5913086 11.5917969v5.109375c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-11.6396483c0-1.0507812-.4091797-2.0380859-1.1523438-2.7822266l-9.3173828-9.3173828c-1.3125-1.3125-3.4487305-1.3125-4.762207 0-.6357422.6367188-.9858398 1.4814453-.9858398 2.3808594 0 .9003906.3505859 1.7451172.9863281 2.3808594l2.3769531 2.3769531c.1455078.1455078.1455078.3818359 0 .5273438s-.3823242.1435547-.527832 0l-4.2260742-4.2255859v-8.6582031c-.0000002-2.0097657-1.6352541-3.6445314-3.6450197-3.6445314zm6.4570312 17.9423829c.925293.9267578 2.4316406.9257812 3.355957 0 .925293-.9248047.925293-2.4306641 0-3.3554688l-2.3769531-2.3769531c-.2583008-.2578125-.4003906-.6015625-.4003906-.9667969s.1425781-.7080078.4003906-.9667969c.5332031-.5332031 1.4003906-.5332031 1.9335938 0l9.3168945 9.3173828c.3657227.3652344.5668945.8515625.5668945 1.3681641v10.6396484h-9.0136719v-4.5234375c0-.265625-.1054688-.5195312-.2929688-.7070312l-11.5913085-11.5917969v-11.1347656c0-.9072266.737793-1.6445312 1.6445312-1.6445312.9072266 0 1.6450195.7373047 1.6450195 1.6445312v9.0722656c0 .265625.1054688.5195312.2929688.7070312z\"></path><path d=\"m32 2.0998046c-10.0986328 0-18.3144531 8.2158203-18.3144531 18.3144531s8.2158203 18.3144525 18.3144531 18.3144525 18.3144531-8.2158203 18.3144531-18.3144531-8.2158203-18.3144525-18.3144531-18.3144525zm0 2.0000003c7.614502 0 14.0088501 5.2510376 15.798584 12.3173819-3.1233521-2.2542105-8.8903809-3.70996-15.798584-3.70996s-12.6752319 1.4557495-15.798584 3.70996c1.7897339-7.0663443 8.184082-12.3173819 15.798584-12.3173819zm16.3144531 16.3144521c0 2.6992188-6.7001953 5.7070312-16.3144531 5.7070312s-16.3144531-3.0078125-16.3144531-5.7070312 6.7001953-5.7070302 16.3144531-5.7070302 16.3144531 3.0078115 16.3144531 5.7070302zm-16.3144531 16.3144532c-7.614502 0-14.0088501-5.2510376-15.798584-12.3173828 3.1233521 2.2542114 8.8903809 3.7099609 15.798584 3.7099609s12.6752319-1.4557495 15.798584-3.7099609c-1.7897339 7.0663452-8.184082 12.3173828-15.798584 12.3173828z\"></path></svg>							\n												<h5>\n													Safe Space												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Emotional Support												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Self-Exploration												</h5>\n											<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Coping Strategies												</h5>\n											<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Goal Setting												</h5>\n											<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Relationship Improvement												</h5>\n											<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Skill Development												</h5>\n											<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Tailored Approaches												</h5>\n											<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.</p>										\n		Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:26:11', '2026-06-17 10:26:11', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=511', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(512, 1, '2026-06-17 10:26:11', '2026-06-17 10:26:11', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />																<h2>Psychotherapy</h2>		<ul style=\"margin-left: 18px;\">\n 	<li>Individual therapy</li>\n 	<li>Couples/marriage therapy</li>\n 	<li>Family therapy</li>\n 	<li>Child/teen therapy</li>\n 	<li>Online therapy</li>\n 	<li>COMMON SPECIALTIES &amp; approaches</li>\n 	<li>Anxiety therapy</li>\n 	<li>Cognitive behavioral therapy (CBT)</li>\n 	<li>Depression counseling</li>\n 	<li>Dialectical behavior therapy (DBT)</li>\n 	<li>Grief &amp; loss counseling</li>\n 	<li>Relational therapy</li>\n</ul>			<h3>Therapy can be highly beneficial for mental health for several reasons:</h3>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 64 64.1999969\" width=\"512\"><path d=\"m51.2529297 42.0226555c.6357422-.6357422.9863281-1.4804688.9863281-2.3808594 0-.8994141-.3500977-1.7441406-.9863281-2.3808594-1.3125-1.3125-3.4492188-1.3125-4.7617188 0l-9.3178711 9.3173828c-.7426758.7441406-1.1518555 1.7314453-1.1518555 2.7822266v11.6396484c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-5.109375l11.5913086-11.5917969c.1875-.1875.2929688-.4414062.2929688-.7070312v-11.5488281c0-2.0097656-1.6347656-3.6445312-3.6445312-3.6445312s-3.6450195 1.6347656-3.6450195 3.6445312v8.6582031l-4.2260742 4.2255859c-.1459961.1455078-.3828125.1435547-.527832 0-.1455078-.1455078-.1455078-.3818359 0-.5273438zm-3.7910156 4.3183594c.9243164.9248047 2.4306641.9267578 3.355957 0l4.519043-4.5185547c.1875-.1875.2929688-.4414062.2929688-.7070312v-9.0722656c0-.9072266.737793-1.6445312 1.6450195-1.6445312.9067383 0 1.6445312.7373047 1.6445312 1.6445312v11.1347656l-11.5913086 11.5917968c-.1875.1875-.2929688.4414062-.2929688.7070312v4.5234375h-9.0136719v-10.6396484c0-.5166016.2011719-1.0029297.5664062-1.3681641l9.3173828-9.3173828c.5332031-.5332031 1.4008789-.5332031 1.9331055 0 .2583008.2587891.4008789.6015625.4008789.9667969s-.1420898.7089844-.4003906.9667969l-2.3769531 2.3769531c-.9252929.9248047-.9252929 2.4306641.0000001 3.3554688z\"></path><path d=\"m6.7250977 28.398632c-2.0097656 0-3.6445312 1.6347656-3.6445312 3.6445312v11.5488281c0 .265625.1054688.5195312.2929688.7070312l11.5913086 11.5917969v5.109375c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-11.6396483c0-1.0507812-.4091797-2.0380859-1.1523438-2.7822266l-9.3173828-9.3173828c-1.3125-1.3125-3.4487305-1.3125-4.762207 0-.6357422.6367188-.9858398 1.4814453-.9858398 2.3808594 0 .9003906.3505859 1.7451172.9863281 2.3808594l2.3769531 2.3769531c.1455078.1455078.1455078.3818359 0 .5273438s-.3823242.1435547-.527832 0l-4.2260742-4.2255859v-8.6582031c-.0000002-2.0097657-1.6352541-3.6445314-3.6450197-3.6445314zm6.4570312 17.9423829c.925293.9267578 2.4316406.9257812 3.355957 0 .925293-.9248047.925293-2.4306641 0-3.3554688l-2.3769531-2.3769531c-.2583008-.2578125-.4003906-.6015625-.4003906-.9667969s.1425781-.7080078.4003906-.9667969c.5332031-.5332031 1.4003906-.5332031 1.9335938 0l9.3168945 9.3173828c.3657227.3652344.5668945.8515625.5668945 1.3681641v10.6396484h-9.0136719v-4.5234375c0-.265625-.1054688-.5195312-.2929688-.7070312l-11.5913085-11.5917969v-11.1347656c0-.9072266.737793-1.6445312 1.6445312-1.6445312.9072266 0 1.6450195.7373047 1.6450195 1.6445312v9.0722656c0 .265625.1054688.5195312.2929688.7070312z\"></path><path d=\"m32 2.0998046c-10.0986328 0-18.3144531 8.2158203-18.3144531 18.3144531s8.2158203 18.3144525 18.3144531 18.3144525 18.3144531-8.2158203 18.3144531-18.3144531-8.2158203-18.3144525-18.3144531-18.3144525zm0 2.0000003c7.614502 0 14.0088501 5.2510376 15.798584 12.3173819-3.1233521-2.2542105-8.8903809-3.70996-15.798584-3.70996s-12.6752319 1.4557495-15.798584 3.70996c1.7897339-7.0663443 8.184082-12.3173819 15.798584-12.3173819zm16.3144531 16.3144521c0 2.6992188-6.7001953 5.7070312-16.3144531 5.7070312s-16.3144531-3.0078125-16.3144531-5.7070312 6.7001953-5.7070302 16.3144531-5.7070302 16.3144531 3.0078115 16.3144531 5.7070302zm-16.3144531 16.3144532c-7.614502 0-14.0088501-5.2510376-15.798584-12.3173828 3.1233521 2.2542114 8.8903809 3.7099609 15.798584 3.7099609s12.6752319-1.4557495 15.798584-3.7099609c-1.7897339 7.0663452-8.184082 12.3173828-15.798584 12.3173828z\"></path></svg>							\n												<h5>\n													Safe Space												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"friendship-work\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><circle cx=\"72\" cy=\"102\" r=\"4\"></circle><circle cx=\"64\" cy=\"50\" r=\"4\"></circle><path d=\"m228 98h4v4c0 2.211 1.789 4 4 4s4-1.789 4-4v-4h4c2.211 0 4-1.789 4-4s-1.789-4-4-4h-4v-4c0-2.211-1.789-4-4-4s-4 1.789-4 4v4h-4c-2.211 0-4 1.789-4 4s1.789 4 4 4z\"></path><path d=\"m132 218h-16v-5.977c0-13.759-8.223-25.608-20-30.964v-35.059c0-.031-.017-.057-.018-.088 4.839-3.653 8.018-9.396 8.018-15.912 0-2.211-1.789-4-4-4h-30.707c-7.328 0-13.293 5.965-13.293 13.293v25.953c0 5.361 2.096 10.206 5.444 13.892-14.614 3.818-25.444 17.092-25.444 32.885v49.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-49.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v9.977c0 2.211 1.789 4 4 4h8v8h-20v-17.582c0-2.211-1.789-4-4-4s-4 1.789-4 4v21.582 24c0 2.211 1.789 4 4 4s4-1.789 4-4v-20h32c6.617 0 12-5.383 12-12s-5.383-12-12-12zm-68-78.707c0-2.918 2.375-5.293 5.293-5.293h26.023c-1.652 4.656-6.102 8-11.316 8h-20zm12.754 38.707c-7.031 0-12.754-5.723-12.754-12.754v-15.246h24v28zm55.246 56h-4v-8h4c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m56 210c-2.211 0-4 1.789-4 4v48c0 2.211 1.789 4 4 4s4-1.789 4-4v-48c0-2.211-1.789-4-4-4z\"></path><path d=\"m238.009 178.998c3.704-3.95 5.991-9.243 5.991-15.072v-9.926c0-11.027-8.973-20-20-20s-20 8.973-20 20v27.06c-11.777 5.355-20 17.205-20 30.964v45.976c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v45.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-15.99-11.1-29.402-25.991-33.025zm-26.009-.998v-24c0-6.617 5.383-12 12-12s12 5.383 12 12v9.926c0 7.762-6.312 14.074-14.074 14.074z\"></path><path d=\"m204 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m244 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m185.41 118.613c.102-.242.203-.488.301-.734 5.809-.832 10.289-5.844 10.289-11.879 0-1.206-.223-2.353-.555-3.452 10.229-11.777 15.466-22.512 15.466-31.899-.001-20.208-15.274-36.649-34.048-36.649-7.633 0-14.91 2.711-20.863 7.707-5.953-4.996-13.23-7.707-20.863-7.707-18.773 0-34.047 16.441-34.047 36.648 0 9.39 5.238 20.125 15.465 31.903-.333 1.098-.555 2.244-.555 3.449 0 6.035 4.48 11.047 10.289 11.879.098.246.199.488.301.73-3.516 4.699-3.141 11.406 1.125 15.672 4.27 4.27 10.98 4.633 15.672 1.129.242.102.488.203.734.301.832 5.809 5.844 10.289 11.879 10.289s11.047-4.48 11.879-10.289c.246-.098.492-.199.734-.301 4.688 3.504 11.398 3.141 15.672-1.129 4.262-4.261 4.641-10.965 1.125-15.668zm-50.273-76.613c6.707 0 13.09 2.82 17.965 7.945 1.516 1.586 4.281 1.586 5.797 0 4.874-5.125 11.257-7.945 17.964-7.945 14.363 0 26.047 12.852 26.047 28.648 0 6.991-4.298 15.714-12.379 25.343-1.433-.939-3.052-1.616-4.82-1.87-.098-.246-.199-.488-.301-.73 3.516-4.699 3.141-11.406-1.125-15.672-4.273-4.27-10.984-4.637-15.672-1.129-.242-.102-.488-.203-.734-.301-.832-5.809-5.844-10.289-11.879-10.289s-11.047 4.48-11.879 10.289c-.246.098-.492.199-.734.301-4.691-3.508-11.402-3.141-15.672 1.129-4.262 4.262-4.641 10.965-1.125 15.668-.102.242-.203.488-.301.734-1.769.253-3.387.931-4.821 1.87-8.079-9.625-12.378-18.35-12.378-25.343 0-15.796 11.683-28.648 26.047-28.648zm47.687 68c-1.77 0-3.328 1.16-3.832 2.855-.488 1.629-1.117 3.16-1.875 4.555-.848 1.562-.562 3.492.695 4.746l.812.812c1.562 1.559 1.562 4.098.004 5.656-1.562 1.566-4.098 1.559-5.66 0l-.82-.82c-1.254-1.254-3.18-1.535-4.73-.691-1.426.773-2.957 1.402-4.555 1.875-1.699.504-2.863 2.062-2.863 3.836v1.176c0 2.207-1.793 4-4 4s-4-1.793-4-4v-1.176c0-1.773-1.164-3.332-2.863-3.836-1.598-.473-3.129-1.102-4.555-1.875-.598-.324-1.254-.48-1.902-.48-1.035 0-2.059.402-2.828 1.172l-.82.82c-1.559 1.559-4.094 1.566-5.66 0-1.559-1.559-1.559-4.098-.008-5.648l.824-.82c1.258-1.254 1.543-3.184.695-4.746-.758-1.395-1.387-2.926-1.875-4.555-.504-1.695-2.062-2.855-3.832-2.855h-1.176c-2.207 0-4-1.793-4-4s1.793-4 4-4h1.176c1.77 0 3.328-1.16 3.832-2.855.488-1.629 1.117-3.16 1.875-4.555.848-1.562.562-3.492-.695-4.746l-.812-.812c-1.562-1.559-1.562-4.098-.004-5.656 1.57-1.562 4.105-1.559 5.66 0l.82.82c1.25 1.25 3.18 1.531 4.73.691 1.426-.773 2.957-1.402 4.555-1.875 1.699-.504 2.863-2.062 2.863-3.836v-1.177c0-2.207 1.793-4 4-4s4 1.793 4 4v1.176c0 1.773 1.164 3.332 2.863 3.836 1.598.473 3.129 1.102 4.555 1.875 1.555.844 3.48.562 4.73-.691l.82-.82c1.562-1.559 4.098-1.566 5.66 0 1.559 1.559 1.559 4.098.008 5.648l-.824.82c-1.258 1.254-1.543 3.184-.695 4.746.758 1.395 1.387 2.926 1.875 4.555.504 1.695 2.062 2.855 3.832 2.855h1.176c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m156 90c-8.824 0-16 7.176-16 16s7.176 16 16 16 16-7.176 16-16-7.176-16-16-16zm0 24c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path></g></svg>							\n												<h5>\n													Emotional Support												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Self-Exploration												</h5>\n											<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Coping Strategies												</h5>\n											<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Goal Setting												</h5>\n											<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Relationship Improvement												</h5>\n											<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Skill Development												</h5>\n											<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Tailored Approaches												</h5>\n											<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.</p>										\n		Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:26:11', '2026-06-17 10:26:11', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=512', 0, 'revision', '', 0),
(513, 1, '2026-06-17 10:26:46', '2026-06-17 10:26:46', '', 'medical_12751971', '', 'inherit', 'closed', 'closed', '', 'medical_12751971', '', '', '2026-06-17 10:26:46', '2026-06-17 10:26:46', '', 14, 'https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/medical_12751971.svg', 0, 'attachment', 'image/svg+xml', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(514, 1, '2026-06-17 10:26:52', '2026-06-17 10:26:52', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />																<h2>Psychotherapy</h2>		<ul style=\"margin-left: 18px;\">\n 	<li>Individual therapy</li>\n 	<li>Couples/marriage therapy</li>\n 	<li>Family therapy</li>\n 	<li>Child/teen therapy</li>\n 	<li>Online therapy</li>\n 	<li>COMMON SPECIALTIES &amp; approaches</li>\n 	<li>Anxiety therapy</li>\n 	<li>Cognitive behavioral therapy (CBT)</li>\n 	<li>Depression counseling</li>\n 	<li>Dialectical behavior therapy (DBT)</li>\n 	<li>Grief &amp; loss counseling</li>\n 	<li>Relational therapy</li>\n</ul>			<h3>Therapy can be highly beneficial for mental health for several reasons:</h3>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 64 64.1999969\" width=\"512\"><path d=\"m51.2529297 42.0226555c.6357422-.6357422.9863281-1.4804688.9863281-2.3808594 0-.8994141-.3500977-1.7441406-.9863281-2.3808594-1.3125-1.3125-3.4492188-1.3125-4.7617188 0l-9.3178711 9.3173828c-.7426758.7441406-1.1518555 1.7314453-1.1518555 2.7822266v11.6396484c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-5.109375l11.5913086-11.5917969c.1875-.1875.2929688-.4414062.2929688-.7070312v-11.5488281c0-2.0097656-1.6347656-3.6445312-3.6445312-3.6445312s-3.6450195 1.6347656-3.6450195 3.6445312v8.6582031l-4.2260742 4.2255859c-.1459961.1455078-.3828125.1435547-.527832 0-.1455078-.1455078-.1455078-.3818359 0-.5273438zm-3.7910156 4.3183594c.9243164.9248047 2.4306641.9267578 3.355957 0l4.519043-4.5185547c.1875-.1875.2929688-.4414062.2929688-.7070312v-9.0722656c0-.9072266.737793-1.6445312 1.6450195-1.6445312.9067383 0 1.6445312.7373047 1.6445312 1.6445312v11.1347656l-11.5913086 11.5917968c-.1875.1875-.2929688.4414062-.2929688.7070312v4.5234375h-9.0136719v-10.6396484c0-.5166016.2011719-1.0029297.5664062-1.3681641l9.3173828-9.3173828c.5332031-.5332031 1.4008789-.5332031 1.9331055 0 .2583008.2587891.4008789.6015625.4008789.9667969s-.1420898.7089844-.4003906.9667969l-2.3769531 2.3769531c-.9252929.9248047-.9252929 2.4306641.0000001 3.3554688z\"></path><path d=\"m6.7250977 28.398632c-2.0097656 0-3.6445312 1.6347656-3.6445312 3.6445312v11.5488281c0 .265625.1054688.5195312.2929688.7070312l11.5913086 11.5917969v5.109375c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-11.6396483c0-1.0507812-.4091797-2.0380859-1.1523438-2.7822266l-9.3173828-9.3173828c-1.3125-1.3125-3.4487305-1.3125-4.762207 0-.6357422.6367188-.9858398 1.4814453-.9858398 2.3808594 0 .9003906.3505859 1.7451172.9863281 2.3808594l2.3769531 2.3769531c.1455078.1455078.1455078.3818359 0 .5273438s-.3823242.1435547-.527832 0l-4.2260742-4.2255859v-8.6582031c-.0000002-2.0097657-1.6352541-3.6445314-3.6450197-3.6445314zm6.4570312 17.9423829c.925293.9267578 2.4316406.9257812 3.355957 0 .925293-.9248047.925293-2.4306641 0-3.3554688l-2.3769531-2.3769531c-.2583008-.2578125-.4003906-.6015625-.4003906-.9667969s.1425781-.7080078.4003906-.9667969c.5332031-.5332031 1.4003906-.5332031 1.9335938 0l9.3168945 9.3173828c.3657227.3652344.5668945.8515625.5668945 1.3681641v10.6396484h-9.0136719v-4.5234375c0-.265625-.1054688-.5195312-.2929688-.7070312l-11.5913085-11.5917969v-11.1347656c0-.9072266.737793-1.6445312 1.6445312-1.6445312.9072266 0 1.6450195.7373047 1.6450195 1.6445312v9.0722656c0 .265625.1054688.5195312.2929688.7070312z\"></path><path d=\"m32 2.0998046c-10.0986328 0-18.3144531 8.2158203-18.3144531 18.3144531s8.2158203 18.3144525 18.3144531 18.3144525 18.3144531-8.2158203 18.3144531-18.3144531-8.2158203-18.3144525-18.3144531-18.3144525zm0 2.0000003c7.614502 0 14.0088501 5.2510376 15.798584 12.3173819-3.1233521-2.2542105-8.8903809-3.70996-15.798584-3.70996s-12.6752319 1.4557495-15.798584 3.70996c1.7897339-7.0663443 8.184082-12.3173819 15.798584-12.3173819zm16.3144531 16.3144521c0 2.6992188-6.7001953 5.7070312-16.3144531 5.7070312s-16.3144531-3.0078125-16.3144531-5.7070312 6.7001953-5.7070302 16.3144531-5.7070302 16.3144531 3.0078115 16.3144531 5.7070302zm-16.3144531 16.3144532c-7.614502 0-14.0088501-5.2510376-15.798584-12.3173828 3.1233521 2.2542114 8.8903809 3.7099609 15.798584 3.7099609s12.6752319-1.4557495 15.798584-3.7099609c-1.7897339 7.0663452-8.184082 12.3173828-15.798584 12.3173828z\"></path></svg>							\n												<h5>\n													Safe Space												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"friendship-work\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><circle cx=\"72\" cy=\"102\" r=\"4\"></circle><circle cx=\"64\" cy=\"50\" r=\"4\"></circle><path d=\"m228 98h4v4c0 2.211 1.789 4 4 4s4-1.789 4-4v-4h4c2.211 0 4-1.789 4-4s-1.789-4-4-4h-4v-4c0-2.211-1.789-4-4-4s-4 1.789-4 4v4h-4c-2.211 0-4 1.789-4 4s1.789 4 4 4z\"></path><path d=\"m132 218h-16v-5.977c0-13.759-8.223-25.608-20-30.964v-35.059c0-.031-.017-.057-.018-.088 4.839-3.653 8.018-9.396 8.018-15.912 0-2.211-1.789-4-4-4h-30.707c-7.328 0-13.293 5.965-13.293 13.293v25.953c0 5.361 2.096 10.206 5.444 13.892-14.614 3.818-25.444 17.092-25.444 32.885v49.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-49.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v9.977c0 2.211 1.789 4 4 4h8v8h-20v-17.582c0-2.211-1.789-4-4-4s-4 1.789-4 4v21.582 24c0 2.211 1.789 4 4 4s4-1.789 4-4v-20h32c6.617 0 12-5.383 12-12s-5.383-12-12-12zm-68-78.707c0-2.918 2.375-5.293 5.293-5.293h26.023c-1.652 4.656-6.102 8-11.316 8h-20zm12.754 38.707c-7.031 0-12.754-5.723-12.754-12.754v-15.246h24v28zm55.246 56h-4v-8h4c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m56 210c-2.211 0-4 1.789-4 4v48c0 2.211 1.789 4 4 4s4-1.789 4-4v-48c0-2.211-1.789-4-4-4z\"></path><path d=\"m238.009 178.998c3.704-3.95 5.991-9.243 5.991-15.072v-9.926c0-11.027-8.973-20-20-20s-20 8.973-20 20v27.06c-11.777 5.355-20 17.205-20 30.964v45.976c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v45.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-15.99-11.1-29.402-25.991-33.025zm-26.009-.998v-24c0-6.617 5.383-12 12-12s12 5.383 12 12v9.926c0 7.762-6.312 14.074-14.074 14.074z\"></path><path d=\"m204 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m244 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m185.41 118.613c.102-.242.203-.488.301-.734 5.809-.832 10.289-5.844 10.289-11.879 0-1.206-.223-2.353-.555-3.452 10.229-11.777 15.466-22.512 15.466-31.899-.001-20.208-15.274-36.649-34.048-36.649-7.633 0-14.91 2.711-20.863 7.707-5.953-4.996-13.23-7.707-20.863-7.707-18.773 0-34.047 16.441-34.047 36.648 0 9.39 5.238 20.125 15.465 31.903-.333 1.098-.555 2.244-.555 3.449 0 6.035 4.48 11.047 10.289 11.879.098.246.199.488.301.73-3.516 4.699-3.141 11.406 1.125 15.672 4.27 4.27 10.98 4.633 15.672 1.129.242.102.488.203.734.301.832 5.809 5.844 10.289 11.879 10.289s11.047-4.48 11.879-10.289c.246-.098.492-.199.734-.301 4.688 3.504 11.398 3.141 15.672-1.129 4.262-4.261 4.641-10.965 1.125-15.668zm-50.273-76.613c6.707 0 13.09 2.82 17.965 7.945 1.516 1.586 4.281 1.586 5.797 0 4.874-5.125 11.257-7.945 17.964-7.945 14.363 0 26.047 12.852 26.047 28.648 0 6.991-4.298 15.714-12.379 25.343-1.433-.939-3.052-1.616-4.82-1.87-.098-.246-.199-.488-.301-.73 3.516-4.699 3.141-11.406-1.125-15.672-4.273-4.27-10.984-4.637-15.672-1.129-.242-.102-.488-.203-.734-.301-.832-5.809-5.844-10.289-11.879-10.289s-11.047 4.48-11.879 10.289c-.246.098-.492.199-.734.301-4.691-3.508-11.402-3.141-15.672 1.129-4.262 4.262-4.641 10.965-1.125 15.668-.102.242-.203.488-.301.734-1.769.253-3.387.931-4.821 1.87-8.079-9.625-12.378-18.35-12.378-25.343 0-15.796 11.683-28.648 26.047-28.648zm47.687 68c-1.77 0-3.328 1.16-3.832 2.855-.488 1.629-1.117 3.16-1.875 4.555-.848 1.562-.562 3.492.695 4.746l.812.812c1.562 1.559 1.562 4.098.004 5.656-1.562 1.566-4.098 1.559-5.66 0l-.82-.82c-1.254-1.254-3.18-1.535-4.73-.691-1.426.773-2.957 1.402-4.555 1.875-1.699.504-2.863 2.062-2.863 3.836v1.176c0 2.207-1.793 4-4 4s-4-1.793-4-4v-1.176c0-1.773-1.164-3.332-2.863-3.836-1.598-.473-3.129-1.102-4.555-1.875-.598-.324-1.254-.48-1.902-.48-1.035 0-2.059.402-2.828 1.172l-.82.82c-1.559 1.559-4.094 1.566-5.66 0-1.559-1.559-1.559-4.098-.008-5.648l.824-.82c1.258-1.254 1.543-3.184.695-4.746-.758-1.395-1.387-2.926-1.875-4.555-.504-1.695-2.062-2.855-3.832-2.855h-1.176c-2.207 0-4-1.793-4-4s1.793-4 4-4h1.176c1.77 0 3.328-1.16 3.832-2.855.488-1.629 1.117-3.16 1.875-4.555.848-1.562.562-3.492-.695-4.746l-.812-.812c-1.562-1.559-1.562-4.098-.004-5.656 1.57-1.562 4.105-1.559 5.66 0l.82.82c1.25 1.25 3.18 1.531 4.73.691 1.426-.773 2.957-1.402 4.555-1.875 1.699-.504 2.863-2.062 2.863-3.836v-1.177c0-2.207 1.793-4 4-4s4 1.793 4 4v1.176c0 1.773 1.164 3.332 2.863 3.836 1.598.473 3.129 1.102 4.555 1.875 1.555.844 3.48.562 4.73-.691l.82-.82c1.562-1.559 4.098-1.566 5.66 0 1.559 1.559 1.559 4.098.008 5.648l-.824.82c-1.258 1.254-1.543 3.184-.695 4.746.758 1.395 1.387 2.926 1.875 4.555.504 1.695 2.062 2.855 3.832 2.855h1.176c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m156 90c-8.824 0-16 7.176-16 16s7.176 16 16 16 16-7.176 16-16-7.176-16-16-16zm0 24c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path></g></svg>							\n												<h5>\n													Emotional Support												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Self-Exploration												</h5>\n											<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Coping Strategies												</h5>\n											<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Goal Setting												</h5>\n											<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Relationship Improvement												</h5>\n											<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Skill Development												</h5>\n											<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Tailored Approaches												</h5>\n											<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.</p>										\n		Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:26:52', '2026-06-17 10:26:52', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=514', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-06-17 10:26:52', '2026-06-17 10:26:52', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />																<h2>Psychotherapy</h2>		<ul style=\"margin-left: 18px;\">\n 	<li>Individual therapy</li>\n 	<li>Couples/marriage therapy</li>\n 	<li>Family therapy</li>\n 	<li>Child/teen therapy</li>\n 	<li>Online therapy</li>\n 	<li>COMMON SPECIALTIES &amp; approaches</li>\n 	<li>Anxiety therapy</li>\n 	<li>Cognitive behavioral therapy (CBT)</li>\n 	<li>Depression counseling</li>\n 	<li>Dialectical behavior therapy (DBT)</li>\n 	<li>Grief &amp; loss counseling</li>\n 	<li>Relational therapy</li>\n</ul>			<h3>Therapy can be highly beneficial for mental health for several reasons:</h3>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 64 64.1999969\" width=\"512\"><path d=\"m51.2529297 42.0226555c.6357422-.6357422.9863281-1.4804688.9863281-2.3808594 0-.8994141-.3500977-1.7441406-.9863281-2.3808594-1.3125-1.3125-3.4492188-1.3125-4.7617188 0l-9.3178711 9.3173828c-.7426758.7441406-1.1518555 1.7314453-1.1518555 2.7822266v11.6396484c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-5.109375l11.5913086-11.5917969c.1875-.1875.2929688-.4414062.2929688-.7070312v-11.5488281c0-2.0097656-1.6347656-3.6445312-3.6445312-3.6445312s-3.6450195 1.6347656-3.6450195 3.6445312v8.6582031l-4.2260742 4.2255859c-.1459961.1455078-.3828125.1435547-.527832 0-.1455078-.1455078-.1455078-.3818359 0-.5273438zm-3.7910156 4.3183594c.9243164.9248047 2.4306641.9267578 3.355957 0l4.519043-4.5185547c.1875-.1875.2929688-.4414062.2929688-.7070312v-9.0722656c0-.9072266.737793-1.6445312 1.6450195-1.6445312.9067383 0 1.6445312.7373047 1.6445312 1.6445312v11.1347656l-11.5913086 11.5917968c-.1875.1875-.2929688.4414062-.2929688.7070312v4.5234375h-9.0136719v-10.6396484c0-.5166016.2011719-1.0029297.5664062-1.3681641l9.3173828-9.3173828c.5332031-.5332031 1.4008789-.5332031 1.9331055 0 .2583008.2587891.4008789.6015625.4008789.9667969s-.1420898.7089844-.4003906.9667969l-2.3769531 2.3769531c-.9252929.9248047-.9252929 2.4306641.0000001 3.3554688z\"></path><path d=\"m6.7250977 28.398632c-2.0097656 0-3.6445312 1.6347656-3.6445312 3.6445312v11.5488281c0 .265625.1054688.5195312.2929688.7070312l11.5913086 11.5917969v5.109375c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-11.6396483c0-1.0507812-.4091797-2.0380859-1.1523438-2.7822266l-9.3173828-9.3173828c-1.3125-1.3125-3.4487305-1.3125-4.762207 0-.6357422.6367188-.9858398 1.4814453-.9858398 2.3808594 0 .9003906.3505859 1.7451172.9863281 2.3808594l2.3769531 2.3769531c.1455078.1455078.1455078.3818359 0 .5273438s-.3823242.1435547-.527832 0l-4.2260742-4.2255859v-8.6582031c-.0000002-2.0097657-1.6352541-3.6445314-3.6450197-3.6445314zm6.4570312 17.9423829c.925293.9267578 2.4316406.9257812 3.355957 0 .925293-.9248047.925293-2.4306641 0-3.3554688l-2.3769531-2.3769531c-.2583008-.2578125-.4003906-.6015625-.4003906-.9667969s.1425781-.7080078.4003906-.9667969c.5332031-.5332031 1.4003906-.5332031 1.9335938 0l9.3168945 9.3173828c.3657227.3652344.5668945.8515625.5668945 1.3681641v10.6396484h-9.0136719v-4.5234375c0-.265625-.1054688-.5195312-.2929688-.7070312l-11.5913085-11.5917969v-11.1347656c0-.9072266.737793-1.6445312 1.6445312-1.6445312.9072266 0 1.6450195.7373047 1.6450195 1.6445312v9.0722656c0 .265625.1054688.5195312.2929688.7070312z\"></path><path d=\"m32 2.0998046c-10.0986328 0-18.3144531 8.2158203-18.3144531 18.3144531s8.2158203 18.3144525 18.3144531 18.3144525 18.3144531-8.2158203 18.3144531-18.3144531-8.2158203-18.3144525-18.3144531-18.3144525zm0 2.0000003c7.614502 0 14.0088501 5.2510376 15.798584 12.3173819-3.1233521-2.2542105-8.8903809-3.70996-15.798584-3.70996s-12.6752319 1.4557495-15.798584 3.70996c1.7897339-7.0663443 8.184082-12.3173819 15.798584-12.3173819zm16.3144531 16.3144521c0 2.6992188-6.7001953 5.7070312-16.3144531 5.7070312s-16.3144531-3.0078125-16.3144531-5.7070312 6.7001953-5.7070302 16.3144531-5.7070302 16.3144531 3.0078115 16.3144531 5.7070302zm-16.3144531 16.3144532c-7.614502 0-14.0088501-5.2510376-15.798584-12.3173828 3.1233521 2.2542114 8.8903809 3.7099609 15.798584 3.7099609s12.6752319-1.4557495 15.798584-3.7099609c-1.7897339 7.0663452-8.184082 12.3173828-15.798584 12.3173828z\"></path></svg>							\n												<h5>\n													Safe Space												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"friendship-work\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><circle cx=\"72\" cy=\"102\" r=\"4\"></circle><circle cx=\"64\" cy=\"50\" r=\"4\"></circle><path d=\"m228 98h4v4c0 2.211 1.789 4 4 4s4-1.789 4-4v-4h4c2.211 0 4-1.789 4-4s-1.789-4-4-4h-4v-4c0-2.211-1.789-4-4-4s-4 1.789-4 4v4h-4c-2.211 0-4 1.789-4 4s1.789 4 4 4z\"></path><path d=\"m132 218h-16v-5.977c0-13.759-8.223-25.608-20-30.964v-35.059c0-.031-.017-.057-.018-.088 4.839-3.653 8.018-9.396 8.018-15.912 0-2.211-1.789-4-4-4h-30.707c-7.328 0-13.293 5.965-13.293 13.293v25.953c0 5.361 2.096 10.206 5.444 13.892-14.614 3.818-25.444 17.092-25.444 32.885v49.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-49.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v9.977c0 2.211 1.789 4 4 4h8v8h-20v-17.582c0-2.211-1.789-4-4-4s-4 1.789-4 4v21.582 24c0 2.211 1.789 4 4 4s4-1.789 4-4v-20h32c6.617 0 12-5.383 12-12s-5.383-12-12-12zm-68-78.707c0-2.918 2.375-5.293 5.293-5.293h26.023c-1.652 4.656-6.102 8-11.316 8h-20zm12.754 38.707c-7.031 0-12.754-5.723-12.754-12.754v-15.246h24v28zm55.246 56h-4v-8h4c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m56 210c-2.211 0-4 1.789-4 4v48c0 2.211 1.789 4 4 4s4-1.789 4-4v-48c0-2.211-1.789-4-4-4z\"></path><path d=\"m238.009 178.998c3.704-3.95 5.991-9.243 5.991-15.072v-9.926c0-11.027-8.973-20-20-20s-20 8.973-20 20v27.06c-11.777 5.355-20 17.205-20 30.964v45.976c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v45.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-15.99-11.1-29.402-25.991-33.025zm-26.009-.998v-24c0-6.617 5.383-12 12-12s12 5.383 12 12v9.926c0 7.762-6.312 14.074-14.074 14.074z\"></path><path d=\"m204 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m244 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m185.41 118.613c.102-.242.203-.488.301-.734 5.809-.832 10.289-5.844 10.289-11.879 0-1.206-.223-2.353-.555-3.452 10.229-11.777 15.466-22.512 15.466-31.899-.001-20.208-15.274-36.649-34.048-36.649-7.633 0-14.91 2.711-20.863 7.707-5.953-4.996-13.23-7.707-20.863-7.707-18.773 0-34.047 16.441-34.047 36.648 0 9.39 5.238 20.125 15.465 31.903-.333 1.098-.555 2.244-.555 3.449 0 6.035 4.48 11.047 10.289 11.879.098.246.199.488.301.73-3.516 4.699-3.141 11.406 1.125 15.672 4.27 4.27 10.98 4.633 15.672 1.129.242.102.488.203.734.301.832 5.809 5.844 10.289 11.879 10.289s11.047-4.48 11.879-10.289c.246-.098.492-.199.734-.301 4.688 3.504 11.398 3.141 15.672-1.129 4.262-4.261 4.641-10.965 1.125-15.668zm-50.273-76.613c6.707 0 13.09 2.82 17.965 7.945 1.516 1.586 4.281 1.586 5.797 0 4.874-5.125 11.257-7.945 17.964-7.945 14.363 0 26.047 12.852 26.047 28.648 0 6.991-4.298 15.714-12.379 25.343-1.433-.939-3.052-1.616-4.82-1.87-.098-.246-.199-.488-.301-.73 3.516-4.699 3.141-11.406-1.125-15.672-4.273-4.27-10.984-4.637-15.672-1.129-.242-.102-.488-.203-.734-.301-.832-5.809-5.844-10.289-11.879-10.289s-11.047 4.48-11.879 10.289c-.246.098-.492.199-.734.301-4.691-3.508-11.402-3.141-15.672 1.129-4.262 4.262-4.641 10.965-1.125 15.668-.102.242-.203.488-.301.734-1.769.253-3.387.931-4.821 1.87-8.079-9.625-12.378-18.35-12.378-25.343 0-15.796 11.683-28.648 26.047-28.648zm47.687 68c-1.77 0-3.328 1.16-3.832 2.855-.488 1.629-1.117 3.16-1.875 4.555-.848 1.562-.562 3.492.695 4.746l.812.812c1.562 1.559 1.562 4.098.004 5.656-1.562 1.566-4.098 1.559-5.66 0l-.82-.82c-1.254-1.254-3.18-1.535-4.73-.691-1.426.773-2.957 1.402-4.555 1.875-1.699.504-2.863 2.062-2.863 3.836v1.176c0 2.207-1.793 4-4 4s-4-1.793-4-4v-1.176c0-1.773-1.164-3.332-2.863-3.836-1.598-.473-3.129-1.102-4.555-1.875-.598-.324-1.254-.48-1.902-.48-1.035 0-2.059.402-2.828 1.172l-.82.82c-1.559 1.559-4.094 1.566-5.66 0-1.559-1.559-1.559-4.098-.008-5.648l.824-.82c1.258-1.254 1.543-3.184.695-4.746-.758-1.395-1.387-2.926-1.875-4.555-.504-1.695-2.062-2.855-3.832-2.855h-1.176c-2.207 0-4-1.793-4-4s1.793-4 4-4h1.176c1.77 0 3.328-1.16 3.832-2.855.488-1.629 1.117-3.16 1.875-4.555.848-1.562.562-3.492-.695-4.746l-.812-.812c-1.562-1.559-1.562-4.098-.004-5.656 1.57-1.562 4.105-1.559 5.66 0l.82.82c1.25 1.25 3.18 1.531 4.73.691 1.426-.773 2.957-1.402 4.555-1.875 1.699-.504 2.863-2.062 2.863-3.836v-1.177c0-2.207 1.793-4 4-4s4 1.793 4 4v1.176c0 1.773 1.164 3.332 2.863 3.836 1.598.473 3.129 1.102 4.555 1.875 1.555.844 3.48.562 4.73-.691l.82-.82c1.562-1.559 4.098-1.566 5.66 0 1.559 1.559 1.559 4.098.008 5.648l-.824.82c-1.258 1.254-1.543 3.184-.695 4.746.758 1.395 1.387 2.926 1.875 4.555.504 1.695 2.062 2.855 3.832 2.855h1.176c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m156 90c-8.824 0-16 7.176-16 16s7.176 16 16 16 16-7.176 16-16-7.176-16-16-16zm0 24c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path></g></svg>							\n												<h5>\n													Emotional Support												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Self-Exploration												</h5>\n											<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Coping Strategies												</h5>\n											<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Goal Setting												</h5>\n											<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Relationship Improvement												</h5>\n											<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Skill Development												</h5>\n											<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Tailored Approaches												</h5>\n											<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.</p>										\n		Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:26:52', '2026-06-17 10:26:52', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=515', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(516, 1, '2026-06-17 10:26:53', '2026-06-17 10:26:53', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />																<h2>Psychotherapy</h2>		<ul style=\"margin-left: 18px;\">\n 	<li>Individual therapy</li>\n 	<li>Couples/marriage therapy</li>\n 	<li>Family therapy</li>\n 	<li>Child/teen therapy</li>\n 	<li>Online therapy</li>\n 	<li>COMMON SPECIALTIES &amp; approaches</li>\n 	<li>Anxiety therapy</li>\n 	<li>Cognitive behavioral therapy (CBT)</li>\n 	<li>Depression counseling</li>\n 	<li>Dialectical behavior therapy (DBT)</li>\n 	<li>Grief &amp; loss counseling</li>\n 	<li>Relational therapy</li>\n</ul>			<h3>Therapy can be highly beneficial for mental health for several reasons:</h3>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 64 64.1999969\" width=\"512\"><path d=\"m51.2529297 42.0226555c.6357422-.6357422.9863281-1.4804688.9863281-2.3808594 0-.8994141-.3500977-1.7441406-.9863281-2.3808594-1.3125-1.3125-3.4492188-1.3125-4.7617188 0l-9.3178711 9.3173828c-.7426758.7441406-1.1518555 1.7314453-1.1518555 2.7822266v11.6396484c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-5.109375l11.5913086-11.5917969c.1875-.1875.2929688-.4414062.2929688-.7070312v-11.5488281c0-2.0097656-1.6347656-3.6445312-3.6445312-3.6445312s-3.6450195 1.6347656-3.6450195 3.6445312v8.6582031l-4.2260742 4.2255859c-.1459961.1455078-.3828125.1435547-.527832 0-.1455078-.1455078-.1455078-.3818359 0-.5273438zm-3.7910156 4.3183594c.9243164.9248047 2.4306641.9267578 3.355957 0l4.519043-4.5185547c.1875-.1875.2929688-.4414062.2929688-.7070312v-9.0722656c0-.9072266.737793-1.6445312 1.6450195-1.6445312.9067383 0 1.6445312.7373047 1.6445312 1.6445312v11.1347656l-11.5913086 11.5917968c-.1875.1875-.2929688.4414062-.2929688.7070312v4.5234375h-9.0136719v-10.6396484c0-.5166016.2011719-1.0029297.5664062-1.3681641l9.3173828-9.3173828c.5332031-.5332031 1.4008789-.5332031 1.9331055 0 .2583008.2587891.4008789.6015625.4008789.9667969s-.1420898.7089844-.4003906.9667969l-2.3769531 2.3769531c-.9252929.9248047-.9252929 2.4306641.0000001 3.3554688z\"></path><path d=\"m6.7250977 28.398632c-2.0097656 0-3.6445312 1.6347656-3.6445312 3.6445312v11.5488281c0 .265625.1054688.5195312.2929688.7070312l11.5913086 11.5917969v5.109375c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-11.6396483c0-1.0507812-.4091797-2.0380859-1.1523438-2.7822266l-9.3173828-9.3173828c-1.3125-1.3125-3.4487305-1.3125-4.762207 0-.6357422.6367188-.9858398 1.4814453-.9858398 2.3808594 0 .9003906.3505859 1.7451172.9863281 2.3808594l2.3769531 2.3769531c.1455078.1455078.1455078.3818359 0 .5273438s-.3823242.1435547-.527832 0l-4.2260742-4.2255859v-8.6582031c-.0000002-2.0097657-1.6352541-3.6445314-3.6450197-3.6445314zm6.4570312 17.9423829c.925293.9267578 2.4316406.9257812 3.355957 0 .925293-.9248047.925293-2.4306641 0-3.3554688l-2.3769531-2.3769531c-.2583008-.2578125-.4003906-.6015625-.4003906-.9667969s.1425781-.7080078.4003906-.9667969c.5332031-.5332031 1.4003906-.5332031 1.9335938 0l9.3168945 9.3173828c.3657227.3652344.5668945.8515625.5668945 1.3681641v10.6396484h-9.0136719v-4.5234375c0-.265625-.1054688-.5195312-.2929688-.7070312l-11.5913085-11.5917969v-11.1347656c0-.9072266.737793-1.6445312 1.6445312-1.6445312.9072266 0 1.6450195.7373047 1.6450195 1.6445312v9.0722656c0 .265625.1054688.5195312.2929688.7070312z\"></path><path d=\"m32 2.0998046c-10.0986328 0-18.3144531 8.2158203-18.3144531 18.3144531s8.2158203 18.3144525 18.3144531 18.3144525 18.3144531-8.2158203 18.3144531-18.3144531-8.2158203-18.3144525-18.3144531-18.3144525zm0 2.0000003c7.614502 0 14.0088501 5.2510376 15.798584 12.3173819-3.1233521-2.2542105-8.8903809-3.70996-15.798584-3.70996s-12.6752319 1.4557495-15.798584 3.70996c1.7897339-7.0663443 8.184082-12.3173819 15.798584-12.3173819zm16.3144531 16.3144521c0 2.6992188-6.7001953 5.7070312-16.3144531 5.7070312s-16.3144531-3.0078125-16.3144531-5.7070312 6.7001953-5.7070302 16.3144531-5.7070302 16.3144531 3.0078115 16.3144531 5.7070302zm-16.3144531 16.3144532c-7.614502 0-14.0088501-5.2510376-15.798584-12.3173828 3.1233521 2.2542114 8.8903809 3.7099609 15.798584 3.7099609s12.6752319-1.4557495 15.798584-3.7099609c-1.7897339 7.0663452-8.184082 12.3173828-15.798584 12.3173828z\"></path></svg>							\n												<h5>\n													Safe Space												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"friendship-work\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><circle cx=\"72\" cy=\"102\" r=\"4\"></circle><circle cx=\"64\" cy=\"50\" r=\"4\"></circle><path d=\"m228 98h4v4c0 2.211 1.789 4 4 4s4-1.789 4-4v-4h4c2.211 0 4-1.789 4-4s-1.789-4-4-4h-4v-4c0-2.211-1.789-4-4-4s-4 1.789-4 4v4h-4c-2.211 0-4 1.789-4 4s1.789 4 4 4z\"></path><path d=\"m132 218h-16v-5.977c0-13.759-8.223-25.608-20-30.964v-35.059c0-.031-.017-.057-.018-.088 4.839-3.653 8.018-9.396 8.018-15.912 0-2.211-1.789-4-4-4h-30.707c-7.328 0-13.293 5.965-13.293 13.293v25.953c0 5.361 2.096 10.206 5.444 13.892-14.614 3.818-25.444 17.092-25.444 32.885v49.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-49.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v9.977c0 2.211 1.789 4 4 4h8v8h-20v-17.582c0-2.211-1.789-4-4-4s-4 1.789-4 4v21.582 24c0 2.211 1.789 4 4 4s4-1.789 4-4v-20h32c6.617 0 12-5.383 12-12s-5.383-12-12-12zm-68-78.707c0-2.918 2.375-5.293 5.293-5.293h26.023c-1.652 4.656-6.102 8-11.316 8h-20zm12.754 38.707c-7.031 0-12.754-5.723-12.754-12.754v-15.246h24v28zm55.246 56h-4v-8h4c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m56 210c-2.211 0-4 1.789-4 4v48c0 2.211 1.789 4 4 4s4-1.789 4-4v-48c0-2.211-1.789-4-4-4z\"></path><path d=\"m238.009 178.998c3.704-3.95 5.991-9.243 5.991-15.072v-9.926c0-11.027-8.973-20-20-20s-20 8.973-20 20v27.06c-11.777 5.355-20 17.205-20 30.964v45.976c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v45.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-15.99-11.1-29.402-25.991-33.025zm-26.009-.998v-24c0-6.617 5.383-12 12-12s12 5.383 12 12v9.926c0 7.762-6.312 14.074-14.074 14.074z\"></path><path d=\"m204 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m244 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m185.41 118.613c.102-.242.203-.488.301-.734 5.809-.832 10.289-5.844 10.289-11.879 0-1.206-.223-2.353-.555-3.452 10.229-11.777 15.466-22.512 15.466-31.899-.001-20.208-15.274-36.649-34.048-36.649-7.633 0-14.91 2.711-20.863 7.707-5.953-4.996-13.23-7.707-20.863-7.707-18.773 0-34.047 16.441-34.047 36.648 0 9.39 5.238 20.125 15.465 31.903-.333 1.098-.555 2.244-.555 3.449 0 6.035 4.48 11.047 10.289 11.879.098.246.199.488.301.73-3.516 4.699-3.141 11.406 1.125 15.672 4.27 4.27 10.98 4.633 15.672 1.129.242.102.488.203.734.301.832 5.809 5.844 10.289 11.879 10.289s11.047-4.48 11.879-10.289c.246-.098.492-.199.734-.301 4.688 3.504 11.398 3.141 15.672-1.129 4.262-4.261 4.641-10.965 1.125-15.668zm-50.273-76.613c6.707 0 13.09 2.82 17.965 7.945 1.516 1.586 4.281 1.586 5.797 0 4.874-5.125 11.257-7.945 17.964-7.945 14.363 0 26.047 12.852 26.047 28.648 0 6.991-4.298 15.714-12.379 25.343-1.433-.939-3.052-1.616-4.82-1.87-.098-.246-.199-.488-.301-.73 3.516-4.699 3.141-11.406-1.125-15.672-4.273-4.27-10.984-4.637-15.672-1.129-.242-.102-.488-.203-.734-.301-.832-5.809-5.844-10.289-11.879-10.289s-11.047 4.48-11.879 10.289c-.246.098-.492.199-.734.301-4.691-3.508-11.402-3.141-15.672 1.129-4.262 4.262-4.641 10.965-1.125 15.668-.102.242-.203.488-.301.734-1.769.253-3.387.931-4.821 1.87-8.079-9.625-12.378-18.35-12.378-25.343 0-15.796 11.683-28.648 26.047-28.648zm47.687 68c-1.77 0-3.328 1.16-3.832 2.855-.488 1.629-1.117 3.16-1.875 4.555-.848 1.562-.562 3.492.695 4.746l.812.812c1.562 1.559 1.562 4.098.004 5.656-1.562 1.566-4.098 1.559-5.66 0l-.82-.82c-1.254-1.254-3.18-1.535-4.73-.691-1.426.773-2.957 1.402-4.555 1.875-1.699.504-2.863 2.062-2.863 3.836v1.176c0 2.207-1.793 4-4 4s-4-1.793-4-4v-1.176c0-1.773-1.164-3.332-2.863-3.836-1.598-.473-3.129-1.102-4.555-1.875-.598-.324-1.254-.48-1.902-.48-1.035 0-2.059.402-2.828 1.172l-.82.82c-1.559 1.559-4.094 1.566-5.66 0-1.559-1.559-1.559-4.098-.008-5.648l.824-.82c1.258-1.254 1.543-3.184.695-4.746-.758-1.395-1.387-2.926-1.875-4.555-.504-1.695-2.062-2.855-3.832-2.855h-1.176c-2.207 0-4-1.793-4-4s1.793-4 4-4h1.176c1.77 0 3.328-1.16 3.832-2.855.488-1.629 1.117-3.16 1.875-4.555.848-1.562.562-3.492-.695-4.746l-.812-.812c-1.562-1.559-1.562-4.098-.004-5.656 1.57-1.562 4.105-1.559 5.66 0l.82.82c1.25 1.25 3.18 1.531 4.73.691 1.426-.773 2.957-1.402 4.555-1.875 1.699-.504 2.863-2.062 2.863-3.836v-1.177c0-2.207 1.793-4 4-4s4 1.793 4 4v1.176c0 1.773 1.164 3.332 2.863 3.836 1.598.473 3.129 1.102 4.555 1.875 1.555.844 3.48.562 4.73-.691l.82-.82c1.562-1.559 4.098-1.566 5.66 0 1.559 1.559 1.559 4.098.008 5.648l-.824.82c-1.258 1.254-1.543 3.184-.695 4.746.758 1.395 1.387 2.926 1.875 4.555.504 1.695 2.062 2.855 3.832 2.855h1.176c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m156 90c-8.824 0-16 7.176-16 16s7.176 16 16 16 16-7.176 16-16-7.176-16-16-16zm0 24c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path></g></svg>							\n												<h5>\n													Emotional Support												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m206.102 400.162c-46.373 0-92.751-17.652-128.056-52.957-34.207-34.208-53.046-79.687-53.046-128.061s18.839-93.853 53.046-128.06c70.615-70.615 185.512-70.605 256.117 0 70.614 70.614 70.614 185.507 0 256.121-35.305 35.305-81.683 52.957-128.061 52.957zm0-346.791c-42.47 0-84.94 16.167-117.271 48.498-64.665 64.666-64.665 169.885 0 234.551 64.666 64.666 169.891 64.661 234.547 0 31.328-31.328 48.578-72.978 48.578-117.276 0-44.297-17.25-85.947-48.578-117.275-32.33-32.331-74.801-48.498-117.276-48.498z\"></path><path d=\"m206.102 357.901c-37.063 0-71.905-14.435-98.109-40.643-54.098-54.1-54.098-142.128 0-196.227 54.1-54.1 142.124-54.09 196.223 0 54.1 54.099 54.1 142.128 0 196.227-26.208 26.208-61.051 40.643-98.114 40.643zm0-262.194c-31.626 0-63.25 12.036-87.324 36.109-48.151 48.156-48.151 126.502 0 174.657 23.323 23.328 54.338 36.174 87.324 36.174s64.001-12.845 87.329-36.174c48.151-48.156 48.151-126.502 0-174.657-24.078-24.073-55.703-36.109-87.329-36.109z\"></path><path d=\"m297.428 421.907c-8.813 0-17.618-3.352-24.326-10.061-2.978-2.978-2.978-7.805 0-10.785 2.98-2.98 7.806-2.98 10.786 0 7.468 7.468 19.619 7.468 27.087 0l77.045-77.05c3.615-3.62 5.606-8.427 5.606-13.54 0-5.115-1.991-9.921-5.606-13.541-2.979-2.98-2.979-7.805 0-10.785 2.98-2.979 7.806-2.979 10.785 0 13.412 13.412 13.412 35.241 0 48.652l-77.045 77.05c-6.709 6.707-15.523 10.06-24.332 10.06z\"></path><path d=\"m402.881 461.874c-12.275 0-23.809-4.783-32.489-13.462l-47.992-47.991c-2.979-2.98-2.979-7.805 0-10.785l54.194-54.193c2.979-2.979 7.805-2.979 10.785 0l47.992 47.991c8.679 8.68 13.461 20.215 13.461 32.49s-4.782 23.809-13.461 32.489c-8.68 8.679-20.216 13.461-32.49 13.461zm-64.303-66.846 42.599 42.599c11.967 11.967 31.442 11.967 43.408 0 11.968-11.968 11.968-31.442 0-43.408l-42.599-42.6z\"></path><path d=\"m467.373 461.874h-355.566c-4.211 0-7.627-3.417-7.627-7.628s3.416-7.627 7.627-7.627h355.566c4.211 0 7.627 3.416 7.627 7.627s-3.416 7.628-7.627 7.628z\"></path><path d=\"m401.258 421.926c-1.951 0-3.904-.744-5.392-2.234l-21.675-21.679c-2.98-2.979-2.98-7.806 0-10.786 2.979-2.979 7.805-2.979 10.785 0l21.675 21.68c2.98 2.979 2.98 7.805 0 10.785-1.491 1.489-3.442 2.234-5.393 2.234z\"></path><path d=\"m206.102 305.102c-.814 0-1.628-.129-2.413-.392-3.814-1.272-41.556-24.446-49.383-62.342-6.668-32.305 9.048-65.739 46.716-99.385 2.89-2.583 7.269-2.583 10.16 0 37.668 33.641 53.384 67.079 46.715 99.38-7.826 37.897-45.569 61.076-49.383 62.347-.783.263-1.598.392-2.412.392zm0-146.07c-27.603 26.133-40.27 51.358-37.674 75.049 3.138 28.626 28.11 47.967 37.674 54.392 9.564-6.426 34.541-25.762 37.679-54.392 2.597-23.691-10.075-48.916-37.679-75.049z\"></path><path d=\"m212.691 305.102c-3.48 0-5.675-.164-6.082-.198-2.652-.224-5.001-1.813-6.192-4.192-.029-.06-.243-.501-.268-.561-1.658-3.541-.373-7.757 2.979-9.768 10.835-6.515 63.212-41.869 30.112-98.402-1.073-1.832-1.331-4.027-.715-6.062.615-2.031 2.045-3.715 3.957-4.648 14.42-7.027 32.256-12.021 53.007-14.842 3.889-.571 7.478 1.927 8.427 5.685 11.51 45.499 7.364 80.353-12.324 103.586-22.525 26.577-58.58 29.402-72.901 29.402zm37.744-113.333c22.007 44.953-.696 78.336-19.848 96.52 13.933-2.384 31.348-8.268 43.364-22.45 15.403-18.178 19.019-46.169 10.775-83.267-12.915 2.146-24.4 5.225-34.291 9.197z\"></path><path d=\"m199.553 305.102c-14.291 0-50.42-2.82-72.944-29.416-19.678-23.233-23.824-58.082-12.314-103.571.948-3.758 4.509-6.256 8.422-5.685 20.756 2.821 38.592 7.816 53.012 14.842 1.912.933 3.342 2.617 3.958 4.648.615 2.035.358 4.23-.715 6.062-33.1 56.533 19.276 91.887 30.111 98.402 3.392 2.036 4.662 6.332 2.925 9.887-1.182 2.413-3.734 4.409-6.411 4.633-.408.035-2.589.198-6.044.198zm-72.07-122.529c-8.243 37.088-4.633 65.079 10.765 83.257 12.007 14.177 29.426 20.066 43.364 22.45-19.147-18.184-41.849-51.562-19.837-96.51-9.892-3.973-21.371-7.052-34.292-9.197z\"></path><path d=\"m205.154 304.547c-4.211 0-7.627-3.417-7.627-7.628v-71.533c0-4.211 3.416-7.627 7.627-7.627s7.628 3.416 7.628 7.627v71.533c-.001 4.211-3.417 7.628-7.628 7.628z\"></path></g></svg>							\n												<h5>\n													Self-Exploration												</h5>\n											<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Coping Strategies												</h5>\n											<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Goal Setting												</h5>\n											<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Relationship Improvement												</h5>\n											<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Skill Development												</h5>\n											<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Tailored Approaches												</h5>\n											<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.</p>										\n		Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:26:53', '2026-06-17 10:26:53', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=516', 0, 'revision', '', 0),
(517, 1, '2026-06-17 10:27:22', '2026-06-17 10:27:22', '', 'advisory-services_12963796', '', 'inherit', 'closed', 'closed', '', 'advisory-services_12963796', '', '', '2026-06-17 10:27:22', '2026-06-17 10:27:22', '', 14, 'https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/advisory-services_12963796.svg', 0, 'attachment', 'image/svg+xml', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(518, 1, '2026-06-17 10:27:29', '2026-06-17 10:27:29', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />																<h2>Psychotherapy</h2>		<ul style=\"margin-left: 18px;\">\n 	<li>Individual therapy</li>\n 	<li>Couples/marriage therapy</li>\n 	<li>Family therapy</li>\n 	<li>Child/teen therapy</li>\n 	<li>Online therapy</li>\n 	<li>COMMON SPECIALTIES &amp; approaches</li>\n 	<li>Anxiety therapy</li>\n 	<li>Cognitive behavioral therapy (CBT)</li>\n 	<li>Depression counseling</li>\n 	<li>Dialectical behavior therapy (DBT)</li>\n 	<li>Grief &amp; loss counseling</li>\n 	<li>Relational therapy</li>\n</ul>			<h3>Therapy can be highly beneficial for mental health for several reasons:</h3>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 64 64.1999969\" width=\"512\"><path d=\"m51.2529297 42.0226555c.6357422-.6357422.9863281-1.4804688.9863281-2.3808594 0-.8994141-.3500977-1.7441406-.9863281-2.3808594-1.3125-1.3125-3.4492188-1.3125-4.7617188 0l-9.3178711 9.3173828c-.7426758.7441406-1.1518555 1.7314453-1.1518555 2.7822266v11.6396484c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-5.109375l11.5913086-11.5917969c.1875-.1875.2929688-.4414062.2929688-.7070312v-11.5488281c0-2.0097656-1.6347656-3.6445312-3.6445312-3.6445312s-3.6450195 1.6347656-3.6450195 3.6445312v8.6582031l-4.2260742 4.2255859c-.1459961.1455078-.3828125.1435547-.527832 0-.1455078-.1455078-.1455078-.3818359 0-.5273438zm-3.7910156 4.3183594c.9243164.9248047 2.4306641.9267578 3.355957 0l4.519043-4.5185547c.1875-.1875.2929688-.4414062.2929688-.7070312v-9.0722656c0-.9072266.737793-1.6445312 1.6450195-1.6445312.9067383 0 1.6445312.7373047 1.6445312 1.6445312v11.1347656l-11.5913086 11.5917968c-.1875.1875-.2929688.4414062-.2929688.7070312v4.5234375h-9.0136719v-10.6396484c0-.5166016.2011719-1.0029297.5664062-1.3681641l9.3173828-9.3173828c.5332031-.5332031 1.4008789-.5332031 1.9331055 0 .2583008.2587891.4008789.6015625.4008789.9667969s-.1420898.7089844-.4003906.9667969l-2.3769531 2.3769531c-.9252929.9248047-.9252929 2.4306641.0000001 3.3554688z\"></path><path d=\"m6.7250977 28.398632c-2.0097656 0-3.6445312 1.6347656-3.6445312 3.6445312v11.5488281c0 .265625.1054688.5195312.2929688.7070312l11.5913086 11.5917969v5.109375c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-11.6396483c0-1.0507812-.4091797-2.0380859-1.1523438-2.7822266l-9.3173828-9.3173828c-1.3125-1.3125-3.4487305-1.3125-4.762207 0-.6357422.6367188-.9858398 1.4814453-.9858398 2.3808594 0 .9003906.3505859 1.7451172.9863281 2.3808594l2.3769531 2.3769531c.1455078.1455078.1455078.3818359 0 .5273438s-.3823242.1435547-.527832 0l-4.2260742-4.2255859v-8.6582031c-.0000002-2.0097657-1.6352541-3.6445314-3.6450197-3.6445314zm6.4570312 17.9423829c.925293.9267578 2.4316406.9257812 3.355957 0 .925293-.9248047.925293-2.4306641 0-3.3554688l-2.3769531-2.3769531c-.2583008-.2578125-.4003906-.6015625-.4003906-.9667969s.1425781-.7080078.4003906-.9667969c.5332031-.5332031 1.4003906-.5332031 1.9335938 0l9.3168945 9.3173828c.3657227.3652344.5668945.8515625.5668945 1.3681641v10.6396484h-9.0136719v-4.5234375c0-.265625-.1054688-.5195312-.2929688-.7070312l-11.5913085-11.5917969v-11.1347656c0-.9072266.737793-1.6445312 1.6445312-1.6445312.9072266 0 1.6450195.7373047 1.6450195 1.6445312v9.0722656c0 .265625.1054688.5195312.2929688.7070312z\"></path><path d=\"m32 2.0998046c-10.0986328 0-18.3144531 8.2158203-18.3144531 18.3144531s8.2158203 18.3144525 18.3144531 18.3144525 18.3144531-8.2158203 18.3144531-18.3144531-8.2158203-18.3144525-18.3144531-18.3144525zm0 2.0000003c7.614502 0 14.0088501 5.2510376 15.798584 12.3173819-3.1233521-2.2542105-8.8903809-3.70996-15.798584-3.70996s-12.6752319 1.4557495-15.798584 3.70996c1.7897339-7.0663443 8.184082-12.3173819 15.798584-12.3173819zm16.3144531 16.3144521c0 2.6992188-6.7001953 5.7070312-16.3144531 5.7070312s-16.3144531-3.0078125-16.3144531-5.7070312 6.7001953-5.7070302 16.3144531-5.7070302 16.3144531 3.0078115 16.3144531 5.7070302zm-16.3144531 16.3144532c-7.614502 0-14.0088501-5.2510376-15.798584-12.3173828 3.1233521 2.2542114 8.8903809 3.7099609 15.798584 3.7099609s12.6752319-1.4557495 15.798584-3.7099609c-1.7897339 7.0663452-8.184082 12.3173828-15.798584 12.3173828z\"></path></svg>							\n												<h5>\n													Safe Space												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"friendship-work\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><circle cx=\"72\" cy=\"102\" r=\"4\"></circle><circle cx=\"64\" cy=\"50\" r=\"4\"></circle><path d=\"m228 98h4v4c0 2.211 1.789 4 4 4s4-1.789 4-4v-4h4c2.211 0 4-1.789 4-4s-1.789-4-4-4h-4v-4c0-2.211-1.789-4-4-4s-4 1.789-4 4v4h-4c-2.211 0-4 1.789-4 4s1.789 4 4 4z\"></path><path d=\"m132 218h-16v-5.977c0-13.759-8.223-25.608-20-30.964v-35.059c0-.031-.017-.057-.018-.088 4.839-3.653 8.018-9.396 8.018-15.912 0-2.211-1.789-4-4-4h-30.707c-7.328 0-13.293 5.965-13.293 13.293v25.953c0 5.361 2.096 10.206 5.444 13.892-14.614 3.818-25.444 17.092-25.444 32.885v49.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-49.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v9.977c0 2.211 1.789 4 4 4h8v8h-20v-17.582c0-2.211-1.789-4-4-4s-4 1.789-4 4v21.582 24c0 2.211 1.789 4 4 4s4-1.789 4-4v-20h32c6.617 0 12-5.383 12-12s-5.383-12-12-12zm-68-78.707c0-2.918 2.375-5.293 5.293-5.293h26.023c-1.652 4.656-6.102 8-11.316 8h-20zm12.754 38.707c-7.031 0-12.754-5.723-12.754-12.754v-15.246h24v28zm55.246 56h-4v-8h4c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m56 210c-2.211 0-4 1.789-4 4v48c0 2.211 1.789 4 4 4s4-1.789 4-4v-48c0-2.211-1.789-4-4-4z\"></path><path d=\"m238.009 178.998c3.704-3.95 5.991-9.243 5.991-15.072v-9.926c0-11.027-8.973-20-20-20s-20 8.973-20 20v27.06c-11.777 5.355-20 17.205-20 30.964v45.976c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v45.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-15.99-11.1-29.402-25.991-33.025zm-26.009-.998v-24c0-6.617 5.383-12 12-12s12 5.383 12 12v9.926c0 7.762-6.312 14.074-14.074 14.074z\"></path><path d=\"m204 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m244 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m185.41 118.613c.102-.242.203-.488.301-.734 5.809-.832 10.289-5.844 10.289-11.879 0-1.206-.223-2.353-.555-3.452 10.229-11.777 15.466-22.512 15.466-31.899-.001-20.208-15.274-36.649-34.048-36.649-7.633 0-14.91 2.711-20.863 7.707-5.953-4.996-13.23-7.707-20.863-7.707-18.773 0-34.047 16.441-34.047 36.648 0 9.39 5.238 20.125 15.465 31.903-.333 1.098-.555 2.244-.555 3.449 0 6.035 4.48 11.047 10.289 11.879.098.246.199.488.301.73-3.516 4.699-3.141 11.406 1.125 15.672 4.27 4.27 10.98 4.633 15.672 1.129.242.102.488.203.734.301.832 5.809 5.844 10.289 11.879 10.289s11.047-4.48 11.879-10.289c.246-.098.492-.199.734-.301 4.688 3.504 11.398 3.141 15.672-1.129 4.262-4.261 4.641-10.965 1.125-15.668zm-50.273-76.613c6.707 0 13.09 2.82 17.965 7.945 1.516 1.586 4.281 1.586 5.797 0 4.874-5.125 11.257-7.945 17.964-7.945 14.363 0 26.047 12.852 26.047 28.648 0 6.991-4.298 15.714-12.379 25.343-1.433-.939-3.052-1.616-4.82-1.87-.098-.246-.199-.488-.301-.73 3.516-4.699 3.141-11.406-1.125-15.672-4.273-4.27-10.984-4.637-15.672-1.129-.242-.102-.488-.203-.734-.301-.832-5.809-5.844-10.289-11.879-10.289s-11.047 4.48-11.879 10.289c-.246.098-.492.199-.734.301-4.691-3.508-11.402-3.141-15.672 1.129-4.262 4.262-4.641 10.965-1.125 15.668-.102.242-.203.488-.301.734-1.769.253-3.387.931-4.821 1.87-8.079-9.625-12.378-18.35-12.378-25.343 0-15.796 11.683-28.648 26.047-28.648zm47.687 68c-1.77 0-3.328 1.16-3.832 2.855-.488 1.629-1.117 3.16-1.875 4.555-.848 1.562-.562 3.492.695 4.746l.812.812c1.562 1.559 1.562 4.098.004 5.656-1.562 1.566-4.098 1.559-5.66 0l-.82-.82c-1.254-1.254-3.18-1.535-4.73-.691-1.426.773-2.957 1.402-4.555 1.875-1.699.504-2.863 2.062-2.863 3.836v1.176c0 2.207-1.793 4-4 4s-4-1.793-4-4v-1.176c0-1.773-1.164-3.332-2.863-3.836-1.598-.473-3.129-1.102-4.555-1.875-.598-.324-1.254-.48-1.902-.48-1.035 0-2.059.402-2.828 1.172l-.82.82c-1.559 1.559-4.094 1.566-5.66 0-1.559-1.559-1.559-4.098-.008-5.648l.824-.82c1.258-1.254 1.543-3.184.695-4.746-.758-1.395-1.387-2.926-1.875-4.555-.504-1.695-2.062-2.855-3.832-2.855h-1.176c-2.207 0-4-1.793-4-4s1.793-4 4-4h1.176c1.77 0 3.328-1.16 3.832-2.855.488-1.629 1.117-3.16 1.875-4.555.848-1.562.562-3.492-.695-4.746l-.812-.812c-1.562-1.559-1.562-4.098-.004-5.656 1.57-1.562 4.105-1.559 5.66 0l.82.82c1.25 1.25 3.18 1.531 4.73.691 1.426-.773 2.957-1.402 4.555-1.875 1.699-.504 2.863-2.062 2.863-3.836v-1.177c0-2.207 1.793-4 4-4s4 1.793 4 4v1.176c0 1.773 1.164 3.332 2.863 3.836 1.598.473 3.129 1.102 4.555 1.875 1.555.844 3.48.562 4.73-.691l.82-.82c1.562-1.559 4.098-1.566 5.66 0 1.559 1.559 1.559 4.098.008 5.648l-.824.82c-1.258 1.254-1.543 3.184-.695 4.746.758 1.395 1.387 2.926 1.875 4.555.504 1.695 2.062 2.855 3.832 2.855h1.176c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m156 90c-8.824 0-16 7.176-16 16s7.176 16 16 16 16-7.176 16-16-7.176-16-16-16zm0 24c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path></g></svg>							\n												<h5>\n													Emotional Support												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m206.102 400.162c-46.373 0-92.751-17.652-128.056-52.957-34.207-34.208-53.046-79.687-53.046-128.061s18.839-93.853 53.046-128.06c70.615-70.615 185.512-70.605 256.117 0 70.614 70.614 70.614 185.507 0 256.121-35.305 35.305-81.683 52.957-128.061 52.957zm0-346.791c-42.47 0-84.94 16.167-117.271 48.498-64.665 64.666-64.665 169.885 0 234.551 64.666 64.666 169.891 64.661 234.547 0 31.328-31.328 48.578-72.978 48.578-117.276 0-44.297-17.25-85.947-48.578-117.275-32.33-32.331-74.801-48.498-117.276-48.498z\"></path><path d=\"m206.102 357.901c-37.063 0-71.905-14.435-98.109-40.643-54.098-54.1-54.098-142.128 0-196.227 54.1-54.1 142.124-54.09 196.223 0 54.1 54.099 54.1 142.128 0 196.227-26.208 26.208-61.051 40.643-98.114 40.643zm0-262.194c-31.626 0-63.25 12.036-87.324 36.109-48.151 48.156-48.151 126.502 0 174.657 23.323 23.328 54.338 36.174 87.324 36.174s64.001-12.845 87.329-36.174c48.151-48.156 48.151-126.502 0-174.657-24.078-24.073-55.703-36.109-87.329-36.109z\"></path><path d=\"m297.428 421.907c-8.813 0-17.618-3.352-24.326-10.061-2.978-2.978-2.978-7.805 0-10.785 2.98-2.98 7.806-2.98 10.786 0 7.468 7.468 19.619 7.468 27.087 0l77.045-77.05c3.615-3.62 5.606-8.427 5.606-13.54 0-5.115-1.991-9.921-5.606-13.541-2.979-2.98-2.979-7.805 0-10.785 2.98-2.979 7.806-2.979 10.785 0 13.412 13.412 13.412 35.241 0 48.652l-77.045 77.05c-6.709 6.707-15.523 10.06-24.332 10.06z\"></path><path d=\"m402.881 461.874c-12.275 0-23.809-4.783-32.489-13.462l-47.992-47.991c-2.979-2.98-2.979-7.805 0-10.785l54.194-54.193c2.979-2.979 7.805-2.979 10.785 0l47.992 47.991c8.679 8.68 13.461 20.215 13.461 32.49s-4.782 23.809-13.461 32.489c-8.68 8.679-20.216 13.461-32.49 13.461zm-64.303-66.846 42.599 42.599c11.967 11.967 31.442 11.967 43.408 0 11.968-11.968 11.968-31.442 0-43.408l-42.599-42.6z\"></path><path d=\"m467.373 461.874h-355.566c-4.211 0-7.627-3.417-7.627-7.628s3.416-7.627 7.627-7.627h355.566c4.211 0 7.627 3.416 7.627 7.627s-3.416 7.628-7.627 7.628z\"></path><path d=\"m401.258 421.926c-1.951 0-3.904-.744-5.392-2.234l-21.675-21.679c-2.98-2.979-2.98-7.806 0-10.786 2.979-2.979 7.805-2.979 10.785 0l21.675 21.68c2.98 2.979 2.98 7.805 0 10.785-1.491 1.489-3.442 2.234-5.393 2.234z\"></path><path d=\"m206.102 305.102c-.814 0-1.628-.129-2.413-.392-3.814-1.272-41.556-24.446-49.383-62.342-6.668-32.305 9.048-65.739 46.716-99.385 2.89-2.583 7.269-2.583 10.16 0 37.668 33.641 53.384 67.079 46.715 99.38-7.826 37.897-45.569 61.076-49.383 62.347-.783.263-1.598.392-2.412.392zm0-146.07c-27.603 26.133-40.27 51.358-37.674 75.049 3.138 28.626 28.11 47.967 37.674 54.392 9.564-6.426 34.541-25.762 37.679-54.392 2.597-23.691-10.075-48.916-37.679-75.049z\"></path><path d=\"m212.691 305.102c-3.48 0-5.675-.164-6.082-.198-2.652-.224-5.001-1.813-6.192-4.192-.029-.06-.243-.501-.268-.561-1.658-3.541-.373-7.757 2.979-9.768 10.835-6.515 63.212-41.869 30.112-98.402-1.073-1.832-1.331-4.027-.715-6.062.615-2.031 2.045-3.715 3.957-4.648 14.42-7.027 32.256-12.021 53.007-14.842 3.889-.571 7.478 1.927 8.427 5.685 11.51 45.499 7.364 80.353-12.324 103.586-22.525 26.577-58.58 29.402-72.901 29.402zm37.744-113.333c22.007 44.953-.696 78.336-19.848 96.52 13.933-2.384 31.348-8.268 43.364-22.45 15.403-18.178 19.019-46.169 10.775-83.267-12.915 2.146-24.4 5.225-34.291 9.197z\"></path><path d=\"m199.553 305.102c-14.291 0-50.42-2.82-72.944-29.416-19.678-23.233-23.824-58.082-12.314-103.571.948-3.758 4.509-6.256 8.422-5.685 20.756 2.821 38.592 7.816 53.012 14.842 1.912.933 3.342 2.617 3.958 4.648.615 2.035.358 4.23-.715 6.062-33.1 56.533 19.276 91.887 30.111 98.402 3.392 2.036 4.662 6.332 2.925 9.887-1.182 2.413-3.734 4.409-6.411 4.633-.408.035-2.589.198-6.044.198zm-72.07-122.529c-8.243 37.088-4.633 65.079 10.765 83.257 12.007 14.177 29.426 20.066 43.364 22.45-19.147-18.184-41.849-51.562-19.837-96.51-9.892-3.973-21.371-7.052-34.292-9.197z\"></path><path d=\"m205.154 304.547c-4.211 0-7.627-3.417-7.627-7.628v-71.533c0-4.211 3.416-7.627 7.627-7.627s7.628 3.416 7.628 7.627v71.533c-.001 4.211-3.417 7.628-7.628 7.628z\"></path></g></svg>							\n												<h5>\n													Self-Exploration												</h5>\n											<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Coping Strategies												</h5>\n											<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Goal Setting												</h5>\n											<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Relationship Improvement												</h5>\n											<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Skill Development												</h5>\n											<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Tailored Approaches												</h5>\n											<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.</p>										\n		Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:27:29', '2026-06-17 10:27:29', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=518', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(519, 1, '2026-06-17 10:27:29', '2026-06-17 10:27:29', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />																<h2>Psychotherapy</h2>		<ul style=\"margin-left: 18px;\">\n 	<li>Individual therapy</li>\n 	<li>Couples/marriage therapy</li>\n 	<li>Family therapy</li>\n 	<li>Child/teen therapy</li>\n 	<li>Online therapy</li>\n 	<li>COMMON SPECIALTIES &amp; approaches</li>\n 	<li>Anxiety therapy</li>\n 	<li>Cognitive behavioral therapy (CBT)</li>\n 	<li>Depression counseling</li>\n 	<li>Dialectical behavior therapy (DBT)</li>\n 	<li>Grief &amp; loss counseling</li>\n 	<li>Relational therapy</li>\n</ul>			<h3>Therapy can be highly beneficial for mental health for several reasons:</h3>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 64 64.1999969\" width=\"512\"><path d=\"m51.2529297 42.0226555c.6357422-.6357422.9863281-1.4804688.9863281-2.3808594 0-.8994141-.3500977-1.7441406-.9863281-2.3808594-1.3125-1.3125-3.4492188-1.3125-4.7617188 0l-9.3178711 9.3173828c-.7426758.7441406-1.1518555 1.7314453-1.1518555 2.7822266v11.6396484c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-5.109375l11.5913086-11.5917969c.1875-.1875.2929688-.4414062.2929688-.7070312v-11.5488281c0-2.0097656-1.6347656-3.6445312-3.6445312-3.6445312s-3.6450195 1.6347656-3.6450195 3.6445312v8.6582031l-4.2260742 4.2255859c-.1459961.1455078-.3828125.1435547-.527832 0-.1455078-.1455078-.1455078-.3818359 0-.5273438zm-3.7910156 4.3183594c.9243164.9248047 2.4306641.9267578 3.355957 0l4.519043-4.5185547c.1875-.1875.2929688-.4414062.2929688-.7070312v-9.0722656c0-.9072266.737793-1.6445312 1.6450195-1.6445312.9067383 0 1.6445312.7373047 1.6445312 1.6445312v11.1347656l-11.5913086 11.5917968c-.1875.1875-.2929688.4414062-.2929688.7070312v4.5234375h-9.0136719v-10.6396484c0-.5166016.2011719-1.0029297.5664062-1.3681641l9.3173828-9.3173828c.5332031-.5332031 1.4008789-.5332031 1.9331055 0 .2583008.2587891.4008789.6015625.4008789.9667969s-.1420898.7089844-.4003906.9667969l-2.3769531 2.3769531c-.9252929.9248047-.9252929 2.4306641.0000001 3.3554688z\"></path><path d=\"m6.7250977 28.398632c-2.0097656 0-3.6445312 1.6347656-3.6445312 3.6445312v11.5488281c0 .265625.1054688.5195312.2929688.7070312l11.5913086 11.5917969v5.109375c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-11.6396483c0-1.0507812-.4091797-2.0380859-1.1523438-2.7822266l-9.3173828-9.3173828c-1.3125-1.3125-3.4487305-1.3125-4.762207 0-.6357422.6367188-.9858398 1.4814453-.9858398 2.3808594 0 .9003906.3505859 1.7451172.9863281 2.3808594l2.3769531 2.3769531c.1455078.1455078.1455078.3818359 0 .5273438s-.3823242.1435547-.527832 0l-4.2260742-4.2255859v-8.6582031c-.0000002-2.0097657-1.6352541-3.6445314-3.6450197-3.6445314zm6.4570312 17.9423829c.925293.9267578 2.4316406.9257812 3.355957 0 .925293-.9248047.925293-2.4306641 0-3.3554688l-2.3769531-2.3769531c-.2583008-.2578125-.4003906-.6015625-.4003906-.9667969s.1425781-.7080078.4003906-.9667969c.5332031-.5332031 1.4003906-.5332031 1.9335938 0l9.3168945 9.3173828c.3657227.3652344.5668945.8515625.5668945 1.3681641v10.6396484h-9.0136719v-4.5234375c0-.265625-.1054688-.5195312-.2929688-.7070312l-11.5913085-11.5917969v-11.1347656c0-.9072266.737793-1.6445312 1.6445312-1.6445312.9072266 0 1.6450195.7373047 1.6450195 1.6445312v9.0722656c0 .265625.1054688.5195312.2929688.7070312z\"></path><path d=\"m32 2.0998046c-10.0986328 0-18.3144531 8.2158203-18.3144531 18.3144531s8.2158203 18.3144525 18.3144531 18.3144525 18.3144531-8.2158203 18.3144531-18.3144531-8.2158203-18.3144525-18.3144531-18.3144525zm0 2.0000003c7.614502 0 14.0088501 5.2510376 15.798584 12.3173819-3.1233521-2.2542105-8.8903809-3.70996-15.798584-3.70996s-12.6752319 1.4557495-15.798584 3.70996c1.7897339-7.0663443 8.184082-12.3173819 15.798584-12.3173819zm16.3144531 16.3144521c0 2.6992188-6.7001953 5.7070312-16.3144531 5.7070312s-16.3144531-3.0078125-16.3144531-5.7070312 6.7001953-5.7070302 16.3144531-5.7070302 16.3144531 3.0078115 16.3144531 5.7070302zm-16.3144531 16.3144532c-7.614502 0-14.0088501-5.2510376-15.798584-12.3173828 3.1233521 2.2542114 8.8903809 3.7099609 15.798584 3.7099609s12.6752319-1.4557495 15.798584-3.7099609c-1.7897339 7.0663452-8.184082 12.3173828-15.798584 12.3173828z\"></path></svg>							\n												<h5>\n													Safe Space												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"friendship-work\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><circle cx=\"72\" cy=\"102\" r=\"4\"></circle><circle cx=\"64\" cy=\"50\" r=\"4\"></circle><path d=\"m228 98h4v4c0 2.211 1.789 4 4 4s4-1.789 4-4v-4h4c2.211 0 4-1.789 4-4s-1.789-4-4-4h-4v-4c0-2.211-1.789-4-4-4s-4 1.789-4 4v4h-4c-2.211 0-4 1.789-4 4s1.789 4 4 4z\"></path><path d=\"m132 218h-16v-5.977c0-13.759-8.223-25.608-20-30.964v-35.059c0-.031-.017-.057-.018-.088 4.839-3.653 8.018-9.396 8.018-15.912 0-2.211-1.789-4-4-4h-30.707c-7.328 0-13.293 5.965-13.293 13.293v25.953c0 5.361 2.096 10.206 5.444 13.892-14.614 3.818-25.444 17.092-25.444 32.885v49.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-49.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v9.977c0 2.211 1.789 4 4 4h8v8h-20v-17.582c0-2.211-1.789-4-4-4s-4 1.789-4 4v21.582 24c0 2.211 1.789 4 4 4s4-1.789 4-4v-20h32c6.617 0 12-5.383 12-12s-5.383-12-12-12zm-68-78.707c0-2.918 2.375-5.293 5.293-5.293h26.023c-1.652 4.656-6.102 8-11.316 8h-20zm12.754 38.707c-7.031 0-12.754-5.723-12.754-12.754v-15.246h24v28zm55.246 56h-4v-8h4c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m56 210c-2.211 0-4 1.789-4 4v48c0 2.211 1.789 4 4 4s4-1.789 4-4v-48c0-2.211-1.789-4-4-4z\"></path><path d=\"m238.009 178.998c3.704-3.95 5.991-9.243 5.991-15.072v-9.926c0-11.027-8.973-20-20-20s-20 8.973-20 20v27.06c-11.777 5.355-20 17.205-20 30.964v45.976c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v45.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-15.99-11.1-29.402-25.991-33.025zm-26.009-.998v-24c0-6.617 5.383-12 12-12s12 5.383 12 12v9.926c0 7.762-6.312 14.074-14.074 14.074z\"></path><path d=\"m204 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m244 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m185.41 118.613c.102-.242.203-.488.301-.734 5.809-.832 10.289-5.844 10.289-11.879 0-1.206-.223-2.353-.555-3.452 10.229-11.777 15.466-22.512 15.466-31.899-.001-20.208-15.274-36.649-34.048-36.649-7.633 0-14.91 2.711-20.863 7.707-5.953-4.996-13.23-7.707-20.863-7.707-18.773 0-34.047 16.441-34.047 36.648 0 9.39 5.238 20.125 15.465 31.903-.333 1.098-.555 2.244-.555 3.449 0 6.035 4.48 11.047 10.289 11.879.098.246.199.488.301.73-3.516 4.699-3.141 11.406 1.125 15.672 4.27 4.27 10.98 4.633 15.672 1.129.242.102.488.203.734.301.832 5.809 5.844 10.289 11.879 10.289s11.047-4.48 11.879-10.289c.246-.098.492-.199.734-.301 4.688 3.504 11.398 3.141 15.672-1.129 4.262-4.261 4.641-10.965 1.125-15.668zm-50.273-76.613c6.707 0 13.09 2.82 17.965 7.945 1.516 1.586 4.281 1.586 5.797 0 4.874-5.125 11.257-7.945 17.964-7.945 14.363 0 26.047 12.852 26.047 28.648 0 6.991-4.298 15.714-12.379 25.343-1.433-.939-3.052-1.616-4.82-1.87-.098-.246-.199-.488-.301-.73 3.516-4.699 3.141-11.406-1.125-15.672-4.273-4.27-10.984-4.637-15.672-1.129-.242-.102-.488-.203-.734-.301-.832-5.809-5.844-10.289-11.879-10.289s-11.047 4.48-11.879 10.289c-.246.098-.492.199-.734.301-4.691-3.508-11.402-3.141-15.672 1.129-4.262 4.262-4.641 10.965-1.125 15.668-.102.242-.203.488-.301.734-1.769.253-3.387.931-4.821 1.87-8.079-9.625-12.378-18.35-12.378-25.343 0-15.796 11.683-28.648 26.047-28.648zm47.687 68c-1.77 0-3.328 1.16-3.832 2.855-.488 1.629-1.117 3.16-1.875 4.555-.848 1.562-.562 3.492.695 4.746l.812.812c1.562 1.559 1.562 4.098.004 5.656-1.562 1.566-4.098 1.559-5.66 0l-.82-.82c-1.254-1.254-3.18-1.535-4.73-.691-1.426.773-2.957 1.402-4.555 1.875-1.699.504-2.863 2.062-2.863 3.836v1.176c0 2.207-1.793 4-4 4s-4-1.793-4-4v-1.176c0-1.773-1.164-3.332-2.863-3.836-1.598-.473-3.129-1.102-4.555-1.875-.598-.324-1.254-.48-1.902-.48-1.035 0-2.059.402-2.828 1.172l-.82.82c-1.559 1.559-4.094 1.566-5.66 0-1.559-1.559-1.559-4.098-.008-5.648l.824-.82c1.258-1.254 1.543-3.184.695-4.746-.758-1.395-1.387-2.926-1.875-4.555-.504-1.695-2.062-2.855-3.832-2.855h-1.176c-2.207 0-4-1.793-4-4s1.793-4 4-4h1.176c1.77 0 3.328-1.16 3.832-2.855.488-1.629 1.117-3.16 1.875-4.555.848-1.562.562-3.492-.695-4.746l-.812-.812c-1.562-1.559-1.562-4.098-.004-5.656 1.57-1.562 4.105-1.559 5.66 0l.82.82c1.25 1.25 3.18 1.531 4.73.691 1.426-.773 2.957-1.402 4.555-1.875 1.699-.504 2.863-2.062 2.863-3.836v-1.177c0-2.207 1.793-4 4-4s4 1.793 4 4v1.176c0 1.773 1.164 3.332 2.863 3.836 1.598.473 3.129 1.102 4.555 1.875 1.555.844 3.48.562 4.73-.691l.82-.82c1.562-1.559 4.098-1.566 5.66 0 1.559 1.559 1.559 4.098.008 5.648l-.824.82c-1.258 1.254-1.543 3.184-.695 4.746.758 1.395 1.387 2.926 1.875 4.555.504 1.695 2.062 2.855 3.832 2.855h1.176c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m156 90c-8.824 0-16 7.176-16 16s7.176 16 16 16 16-7.176 16-16-7.176-16-16-16zm0 24c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path></g></svg>							\n												<h5>\n													Emotional Support												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m206.102 400.162c-46.373 0-92.751-17.652-128.056-52.957-34.207-34.208-53.046-79.687-53.046-128.061s18.839-93.853 53.046-128.06c70.615-70.615 185.512-70.605 256.117 0 70.614 70.614 70.614 185.507 0 256.121-35.305 35.305-81.683 52.957-128.061 52.957zm0-346.791c-42.47 0-84.94 16.167-117.271 48.498-64.665 64.666-64.665 169.885 0 234.551 64.666 64.666 169.891 64.661 234.547 0 31.328-31.328 48.578-72.978 48.578-117.276 0-44.297-17.25-85.947-48.578-117.275-32.33-32.331-74.801-48.498-117.276-48.498z\"></path><path d=\"m206.102 357.901c-37.063 0-71.905-14.435-98.109-40.643-54.098-54.1-54.098-142.128 0-196.227 54.1-54.1 142.124-54.09 196.223 0 54.1 54.099 54.1 142.128 0 196.227-26.208 26.208-61.051 40.643-98.114 40.643zm0-262.194c-31.626 0-63.25 12.036-87.324 36.109-48.151 48.156-48.151 126.502 0 174.657 23.323 23.328 54.338 36.174 87.324 36.174s64.001-12.845 87.329-36.174c48.151-48.156 48.151-126.502 0-174.657-24.078-24.073-55.703-36.109-87.329-36.109z\"></path><path d=\"m297.428 421.907c-8.813 0-17.618-3.352-24.326-10.061-2.978-2.978-2.978-7.805 0-10.785 2.98-2.98 7.806-2.98 10.786 0 7.468 7.468 19.619 7.468 27.087 0l77.045-77.05c3.615-3.62 5.606-8.427 5.606-13.54 0-5.115-1.991-9.921-5.606-13.541-2.979-2.98-2.979-7.805 0-10.785 2.98-2.979 7.806-2.979 10.785 0 13.412 13.412 13.412 35.241 0 48.652l-77.045 77.05c-6.709 6.707-15.523 10.06-24.332 10.06z\"></path><path d=\"m402.881 461.874c-12.275 0-23.809-4.783-32.489-13.462l-47.992-47.991c-2.979-2.98-2.979-7.805 0-10.785l54.194-54.193c2.979-2.979 7.805-2.979 10.785 0l47.992 47.991c8.679 8.68 13.461 20.215 13.461 32.49s-4.782 23.809-13.461 32.489c-8.68 8.679-20.216 13.461-32.49 13.461zm-64.303-66.846 42.599 42.599c11.967 11.967 31.442 11.967 43.408 0 11.968-11.968 11.968-31.442 0-43.408l-42.599-42.6z\"></path><path d=\"m467.373 461.874h-355.566c-4.211 0-7.627-3.417-7.627-7.628s3.416-7.627 7.627-7.627h355.566c4.211 0 7.627 3.416 7.627 7.627s-3.416 7.628-7.627 7.628z\"></path><path d=\"m401.258 421.926c-1.951 0-3.904-.744-5.392-2.234l-21.675-21.679c-2.98-2.979-2.98-7.806 0-10.786 2.979-2.979 7.805-2.979 10.785 0l21.675 21.68c2.98 2.979 2.98 7.805 0 10.785-1.491 1.489-3.442 2.234-5.393 2.234z\"></path><path d=\"m206.102 305.102c-.814 0-1.628-.129-2.413-.392-3.814-1.272-41.556-24.446-49.383-62.342-6.668-32.305 9.048-65.739 46.716-99.385 2.89-2.583 7.269-2.583 10.16 0 37.668 33.641 53.384 67.079 46.715 99.38-7.826 37.897-45.569 61.076-49.383 62.347-.783.263-1.598.392-2.412.392zm0-146.07c-27.603 26.133-40.27 51.358-37.674 75.049 3.138 28.626 28.11 47.967 37.674 54.392 9.564-6.426 34.541-25.762 37.679-54.392 2.597-23.691-10.075-48.916-37.679-75.049z\"></path><path d=\"m212.691 305.102c-3.48 0-5.675-.164-6.082-.198-2.652-.224-5.001-1.813-6.192-4.192-.029-.06-.243-.501-.268-.561-1.658-3.541-.373-7.757 2.979-9.768 10.835-6.515 63.212-41.869 30.112-98.402-1.073-1.832-1.331-4.027-.715-6.062.615-2.031 2.045-3.715 3.957-4.648 14.42-7.027 32.256-12.021 53.007-14.842 3.889-.571 7.478 1.927 8.427 5.685 11.51 45.499 7.364 80.353-12.324 103.586-22.525 26.577-58.58 29.402-72.901 29.402zm37.744-113.333c22.007 44.953-.696 78.336-19.848 96.52 13.933-2.384 31.348-8.268 43.364-22.45 15.403-18.178 19.019-46.169 10.775-83.267-12.915 2.146-24.4 5.225-34.291 9.197z\"></path><path d=\"m199.553 305.102c-14.291 0-50.42-2.82-72.944-29.416-19.678-23.233-23.824-58.082-12.314-103.571.948-3.758 4.509-6.256 8.422-5.685 20.756 2.821 38.592 7.816 53.012 14.842 1.912.933 3.342 2.617 3.958 4.648.615 2.035.358 4.23-.715 6.062-33.1 56.533 19.276 91.887 30.111 98.402 3.392 2.036 4.662 6.332 2.925 9.887-1.182 2.413-3.734 4.409-6.411 4.633-.408.035-2.589.198-6.044.198zm-72.07-122.529c-8.243 37.088-4.633 65.079 10.765 83.257 12.007 14.177 29.426 20.066 43.364 22.45-19.147-18.184-41.849-51.562-19.837-96.51-9.892-3.973-21.371-7.052-34.292-9.197z\"></path><path d=\"m205.154 304.547c-4.211 0-7.627-3.417-7.627-7.628v-71.533c0-4.211 3.416-7.627 7.627-7.627s7.628 3.416 7.628 7.627v71.533c-.001 4.211-3.417 7.628-7.628 7.628z\"></path></g></svg>							\n												<h5>\n													Self-Exploration												</h5>\n											<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Coping Strategies												</h5>\n											<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Goal Setting												</h5>\n											<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Relationship Improvement												</h5>\n											<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Skill Development												</h5>\n											<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Tailored Approaches												</h5>\n											<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.</p>										\n		Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:27:29', '2026-06-17 10:27:29', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=519', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(520, 1, '2026-06-17 10:27:29', '2026-06-17 10:27:29', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />																<h2>Psychotherapy</h2>		<ul style=\"margin-left: 18px;\">\n 	<li>Individual therapy</li>\n 	<li>Couples/marriage therapy</li>\n 	<li>Family therapy</li>\n 	<li>Child/teen therapy</li>\n 	<li>Online therapy</li>\n 	<li>COMMON SPECIALTIES &amp; approaches</li>\n 	<li>Anxiety therapy</li>\n 	<li>Cognitive behavioral therapy (CBT)</li>\n 	<li>Depression counseling</li>\n 	<li>Dialectical behavior therapy (DBT)</li>\n 	<li>Grief &amp; loss counseling</li>\n 	<li>Relational therapy</li>\n</ul>			<h3>Therapy can be highly beneficial for mental health for several reasons:</h3>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 64 64.1999969\" width=\"512\"><path d=\"m51.2529297 42.0226555c.6357422-.6357422.9863281-1.4804688.9863281-2.3808594 0-.8994141-.3500977-1.7441406-.9863281-2.3808594-1.3125-1.3125-3.4492188-1.3125-4.7617188 0l-9.3178711 9.3173828c-.7426758.7441406-1.1518555 1.7314453-1.1518555 2.7822266v11.6396484c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-5.109375l11.5913086-11.5917969c.1875-.1875.2929688-.4414062.2929688-.7070312v-11.5488281c0-2.0097656-1.6347656-3.6445312-3.6445312-3.6445312s-3.6450195 1.6347656-3.6450195 3.6445312v8.6582031l-4.2260742 4.2255859c-.1459961.1455078-.3828125.1435547-.527832 0-.1455078-.1455078-.1455078-.3818359 0-.5273438zm-3.7910156 4.3183594c.9243164.9248047 2.4306641.9267578 3.355957 0l4.519043-4.5185547c.1875-.1875.2929688-.4414062.2929688-.7070312v-9.0722656c0-.9072266.737793-1.6445312 1.6450195-1.6445312.9067383 0 1.6445312.7373047 1.6445312 1.6445312v11.1347656l-11.5913086 11.5917968c-.1875.1875-.2929688.4414062-.2929688.7070312v4.5234375h-9.0136719v-10.6396484c0-.5166016.2011719-1.0029297.5664062-1.3681641l9.3173828-9.3173828c.5332031-.5332031 1.4008789-.5332031 1.9331055 0 .2583008.2587891.4008789.6015625.4008789.9667969s-.1420898.7089844-.4003906.9667969l-2.3769531 2.3769531c-.9252929.9248047-.9252929 2.4306641.0000001 3.3554688z\"></path><path d=\"m6.7250977 28.398632c-2.0097656 0-3.6445312 1.6347656-3.6445312 3.6445312v11.5488281c0 .265625.1054688.5195312.2929688.7070312l11.5913086 11.5917969v5.109375c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-11.6396483c0-1.0507812-.4091797-2.0380859-1.1523438-2.7822266l-9.3173828-9.3173828c-1.3125-1.3125-3.4487305-1.3125-4.762207 0-.6357422.6367188-.9858398 1.4814453-.9858398 2.3808594 0 .9003906.3505859 1.7451172.9863281 2.3808594l2.3769531 2.3769531c.1455078.1455078.1455078.3818359 0 .5273438s-.3823242.1435547-.527832 0l-4.2260742-4.2255859v-8.6582031c-.0000002-2.0097657-1.6352541-3.6445314-3.6450197-3.6445314zm6.4570312 17.9423829c.925293.9267578 2.4316406.9257812 3.355957 0 .925293-.9248047.925293-2.4306641 0-3.3554688l-2.3769531-2.3769531c-.2583008-.2578125-.4003906-.6015625-.4003906-.9667969s.1425781-.7080078.4003906-.9667969c.5332031-.5332031 1.4003906-.5332031 1.9335938 0l9.3168945 9.3173828c.3657227.3652344.5668945.8515625.5668945 1.3681641v10.6396484h-9.0136719v-4.5234375c0-.265625-.1054688-.5195312-.2929688-.7070312l-11.5913085-11.5917969v-11.1347656c0-.9072266.737793-1.6445312 1.6445312-1.6445312.9072266 0 1.6450195.7373047 1.6450195 1.6445312v9.0722656c0 .265625.1054688.5195312.2929688.7070312z\"></path><path d=\"m32 2.0998046c-10.0986328 0-18.3144531 8.2158203-18.3144531 18.3144531s8.2158203 18.3144525 18.3144531 18.3144525 18.3144531-8.2158203 18.3144531-18.3144531-8.2158203-18.3144525-18.3144531-18.3144525zm0 2.0000003c7.614502 0 14.0088501 5.2510376 15.798584 12.3173819-3.1233521-2.2542105-8.8903809-3.70996-15.798584-3.70996s-12.6752319 1.4557495-15.798584 3.70996c1.7897339-7.0663443 8.184082-12.3173819 15.798584-12.3173819zm16.3144531 16.3144521c0 2.6992188-6.7001953 5.7070312-16.3144531 5.7070312s-16.3144531-3.0078125-16.3144531-5.7070312 6.7001953-5.7070302 16.3144531-5.7070302 16.3144531 3.0078115 16.3144531 5.7070302zm-16.3144531 16.3144532c-7.614502 0-14.0088501-5.2510376-15.798584-12.3173828 3.1233521 2.2542114 8.8903809 3.7099609 15.798584 3.7099609s12.6752319-1.4557495 15.798584-3.7099609c-1.7897339 7.0663452-8.184082 12.3173828-15.798584 12.3173828z\"></path></svg>							\n												<h5>\n													Safe Space												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"friendship-work\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><circle cx=\"72\" cy=\"102\" r=\"4\"></circle><circle cx=\"64\" cy=\"50\" r=\"4\"></circle><path d=\"m228 98h4v4c0 2.211 1.789 4 4 4s4-1.789 4-4v-4h4c2.211 0 4-1.789 4-4s-1.789-4-4-4h-4v-4c0-2.211-1.789-4-4-4s-4 1.789-4 4v4h-4c-2.211 0-4 1.789-4 4s1.789 4 4 4z\"></path><path d=\"m132 218h-16v-5.977c0-13.759-8.223-25.608-20-30.964v-35.059c0-.031-.017-.057-.018-.088 4.839-3.653 8.018-9.396 8.018-15.912 0-2.211-1.789-4-4-4h-30.707c-7.328 0-13.293 5.965-13.293 13.293v25.953c0 5.361 2.096 10.206 5.444 13.892-14.614 3.818-25.444 17.092-25.444 32.885v49.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-49.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v9.977c0 2.211 1.789 4 4 4h8v8h-20v-17.582c0-2.211-1.789-4-4-4s-4 1.789-4 4v21.582 24c0 2.211 1.789 4 4 4s4-1.789 4-4v-20h32c6.617 0 12-5.383 12-12s-5.383-12-12-12zm-68-78.707c0-2.918 2.375-5.293 5.293-5.293h26.023c-1.652 4.656-6.102 8-11.316 8h-20zm12.754 38.707c-7.031 0-12.754-5.723-12.754-12.754v-15.246h24v28zm55.246 56h-4v-8h4c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m56 210c-2.211 0-4 1.789-4 4v48c0 2.211 1.789 4 4 4s4-1.789 4-4v-48c0-2.211-1.789-4-4-4z\"></path><path d=\"m238.009 178.998c3.704-3.95 5.991-9.243 5.991-15.072v-9.926c0-11.027-8.973-20-20-20s-20 8.973-20 20v27.06c-11.777 5.355-20 17.205-20 30.964v45.976c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v45.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-15.99-11.1-29.402-25.991-33.025zm-26.009-.998v-24c0-6.617 5.383-12 12-12s12 5.383 12 12v9.926c0 7.762-6.312 14.074-14.074 14.074z\"></path><path d=\"m204 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m244 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m185.41 118.613c.102-.242.203-.488.301-.734 5.809-.832 10.289-5.844 10.289-11.879 0-1.206-.223-2.353-.555-3.452 10.229-11.777 15.466-22.512 15.466-31.899-.001-20.208-15.274-36.649-34.048-36.649-7.633 0-14.91 2.711-20.863 7.707-5.953-4.996-13.23-7.707-20.863-7.707-18.773 0-34.047 16.441-34.047 36.648 0 9.39 5.238 20.125 15.465 31.903-.333 1.098-.555 2.244-.555 3.449 0 6.035 4.48 11.047 10.289 11.879.098.246.199.488.301.73-3.516 4.699-3.141 11.406 1.125 15.672 4.27 4.27 10.98 4.633 15.672 1.129.242.102.488.203.734.301.832 5.809 5.844 10.289 11.879 10.289s11.047-4.48 11.879-10.289c.246-.098.492-.199.734-.301 4.688 3.504 11.398 3.141 15.672-1.129 4.262-4.261 4.641-10.965 1.125-15.668zm-50.273-76.613c6.707 0 13.09 2.82 17.965 7.945 1.516 1.586 4.281 1.586 5.797 0 4.874-5.125 11.257-7.945 17.964-7.945 14.363 0 26.047 12.852 26.047 28.648 0 6.991-4.298 15.714-12.379 25.343-1.433-.939-3.052-1.616-4.82-1.87-.098-.246-.199-.488-.301-.73 3.516-4.699 3.141-11.406-1.125-15.672-4.273-4.27-10.984-4.637-15.672-1.129-.242-.102-.488-.203-.734-.301-.832-5.809-5.844-10.289-11.879-10.289s-11.047 4.48-11.879 10.289c-.246.098-.492.199-.734.301-4.691-3.508-11.402-3.141-15.672 1.129-4.262 4.262-4.641 10.965-1.125 15.668-.102.242-.203.488-.301.734-1.769.253-3.387.931-4.821 1.87-8.079-9.625-12.378-18.35-12.378-25.343 0-15.796 11.683-28.648 26.047-28.648zm47.687 68c-1.77 0-3.328 1.16-3.832 2.855-.488 1.629-1.117 3.16-1.875 4.555-.848 1.562-.562 3.492.695 4.746l.812.812c1.562 1.559 1.562 4.098.004 5.656-1.562 1.566-4.098 1.559-5.66 0l-.82-.82c-1.254-1.254-3.18-1.535-4.73-.691-1.426.773-2.957 1.402-4.555 1.875-1.699.504-2.863 2.062-2.863 3.836v1.176c0 2.207-1.793 4-4 4s-4-1.793-4-4v-1.176c0-1.773-1.164-3.332-2.863-3.836-1.598-.473-3.129-1.102-4.555-1.875-.598-.324-1.254-.48-1.902-.48-1.035 0-2.059.402-2.828 1.172l-.82.82c-1.559 1.559-4.094 1.566-5.66 0-1.559-1.559-1.559-4.098-.008-5.648l.824-.82c1.258-1.254 1.543-3.184.695-4.746-.758-1.395-1.387-2.926-1.875-4.555-.504-1.695-2.062-2.855-3.832-2.855h-1.176c-2.207 0-4-1.793-4-4s1.793-4 4-4h1.176c1.77 0 3.328-1.16 3.832-2.855.488-1.629 1.117-3.16 1.875-4.555.848-1.562.562-3.492-.695-4.746l-.812-.812c-1.562-1.559-1.562-4.098-.004-5.656 1.57-1.562 4.105-1.559 5.66 0l.82.82c1.25 1.25 3.18 1.531 4.73.691 1.426-.773 2.957-1.402 4.555-1.875 1.699-.504 2.863-2.062 2.863-3.836v-1.177c0-2.207 1.793-4 4-4s4 1.793 4 4v1.176c0 1.773 1.164 3.332 2.863 3.836 1.598.473 3.129 1.102 4.555 1.875 1.555.844 3.48.562 4.73-.691l.82-.82c1.562-1.559 4.098-1.566 5.66 0 1.559 1.559 1.559 4.098.008 5.648l-.824.82c-1.258 1.254-1.543 3.184-.695 4.746.758 1.395 1.387 2.926 1.875 4.555.504 1.695 2.062 2.855 3.832 2.855h1.176c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m156 90c-8.824 0-16 7.176-16 16s7.176 16 16 16 16-7.176 16-16-7.176-16-16-16zm0 24c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path></g></svg>							\n												<h5>\n													Emotional Support												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m206.102 400.162c-46.373 0-92.751-17.652-128.056-52.957-34.207-34.208-53.046-79.687-53.046-128.061s18.839-93.853 53.046-128.06c70.615-70.615 185.512-70.605 256.117 0 70.614 70.614 70.614 185.507 0 256.121-35.305 35.305-81.683 52.957-128.061 52.957zm0-346.791c-42.47 0-84.94 16.167-117.271 48.498-64.665 64.666-64.665 169.885 0 234.551 64.666 64.666 169.891 64.661 234.547 0 31.328-31.328 48.578-72.978 48.578-117.276 0-44.297-17.25-85.947-48.578-117.275-32.33-32.331-74.801-48.498-117.276-48.498z\"></path><path d=\"m206.102 357.901c-37.063 0-71.905-14.435-98.109-40.643-54.098-54.1-54.098-142.128 0-196.227 54.1-54.1 142.124-54.09 196.223 0 54.1 54.099 54.1 142.128 0 196.227-26.208 26.208-61.051 40.643-98.114 40.643zm0-262.194c-31.626 0-63.25 12.036-87.324 36.109-48.151 48.156-48.151 126.502 0 174.657 23.323 23.328 54.338 36.174 87.324 36.174s64.001-12.845 87.329-36.174c48.151-48.156 48.151-126.502 0-174.657-24.078-24.073-55.703-36.109-87.329-36.109z\"></path><path d=\"m297.428 421.907c-8.813 0-17.618-3.352-24.326-10.061-2.978-2.978-2.978-7.805 0-10.785 2.98-2.98 7.806-2.98 10.786 0 7.468 7.468 19.619 7.468 27.087 0l77.045-77.05c3.615-3.62 5.606-8.427 5.606-13.54 0-5.115-1.991-9.921-5.606-13.541-2.979-2.98-2.979-7.805 0-10.785 2.98-2.979 7.806-2.979 10.785 0 13.412 13.412 13.412 35.241 0 48.652l-77.045 77.05c-6.709 6.707-15.523 10.06-24.332 10.06z\"></path><path d=\"m402.881 461.874c-12.275 0-23.809-4.783-32.489-13.462l-47.992-47.991c-2.979-2.98-2.979-7.805 0-10.785l54.194-54.193c2.979-2.979 7.805-2.979 10.785 0l47.992 47.991c8.679 8.68 13.461 20.215 13.461 32.49s-4.782 23.809-13.461 32.489c-8.68 8.679-20.216 13.461-32.49 13.461zm-64.303-66.846 42.599 42.599c11.967 11.967 31.442 11.967 43.408 0 11.968-11.968 11.968-31.442 0-43.408l-42.599-42.6z\"></path><path d=\"m467.373 461.874h-355.566c-4.211 0-7.627-3.417-7.627-7.628s3.416-7.627 7.627-7.627h355.566c4.211 0 7.627 3.416 7.627 7.627s-3.416 7.628-7.627 7.628z\"></path><path d=\"m401.258 421.926c-1.951 0-3.904-.744-5.392-2.234l-21.675-21.679c-2.98-2.979-2.98-7.806 0-10.786 2.979-2.979 7.805-2.979 10.785 0l21.675 21.68c2.98 2.979 2.98 7.805 0 10.785-1.491 1.489-3.442 2.234-5.393 2.234z\"></path><path d=\"m206.102 305.102c-.814 0-1.628-.129-2.413-.392-3.814-1.272-41.556-24.446-49.383-62.342-6.668-32.305 9.048-65.739 46.716-99.385 2.89-2.583 7.269-2.583 10.16 0 37.668 33.641 53.384 67.079 46.715 99.38-7.826 37.897-45.569 61.076-49.383 62.347-.783.263-1.598.392-2.412.392zm0-146.07c-27.603 26.133-40.27 51.358-37.674 75.049 3.138 28.626 28.11 47.967 37.674 54.392 9.564-6.426 34.541-25.762 37.679-54.392 2.597-23.691-10.075-48.916-37.679-75.049z\"></path><path d=\"m212.691 305.102c-3.48 0-5.675-.164-6.082-.198-2.652-.224-5.001-1.813-6.192-4.192-.029-.06-.243-.501-.268-.561-1.658-3.541-.373-7.757 2.979-9.768 10.835-6.515 63.212-41.869 30.112-98.402-1.073-1.832-1.331-4.027-.715-6.062.615-2.031 2.045-3.715 3.957-4.648 14.42-7.027 32.256-12.021 53.007-14.842 3.889-.571 7.478 1.927 8.427 5.685 11.51 45.499 7.364 80.353-12.324 103.586-22.525 26.577-58.58 29.402-72.901 29.402zm37.744-113.333c22.007 44.953-.696 78.336-19.848 96.52 13.933-2.384 31.348-8.268 43.364-22.45 15.403-18.178 19.019-46.169 10.775-83.267-12.915 2.146-24.4 5.225-34.291 9.197z\"></path><path d=\"m199.553 305.102c-14.291 0-50.42-2.82-72.944-29.416-19.678-23.233-23.824-58.082-12.314-103.571.948-3.758 4.509-6.256 8.422-5.685 20.756 2.821 38.592 7.816 53.012 14.842 1.912.933 3.342 2.617 3.958 4.648.615 2.035.358 4.23-.715 6.062-33.1 56.533 19.276 91.887 30.111 98.402 3.392 2.036 4.662 6.332 2.925 9.887-1.182 2.413-3.734 4.409-6.411 4.633-.408.035-2.589.198-6.044.198zm-72.07-122.529c-8.243 37.088-4.633 65.079 10.765 83.257 12.007 14.177 29.426 20.066 43.364 22.45-19.147-18.184-41.849-51.562-19.837-96.51-9.892-3.973-21.371-7.052-34.292-9.197z\"></path><path d=\"m205.154 304.547c-4.211 0-7.627-3.417-7.627-7.628v-71.533c0-4.211 3.416-7.627 7.627-7.627s7.628 3.416 7.628 7.627v71.533c-.001 4.211-3.417 7.628-7.628 7.628z\"></path></g></svg>							\n												<h5>\n													Self-Exploration												</h5>\n											<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m295.544 178.256a6.741 6.741 0 0 0 -3.689-3.623 6.718 6.718 0 0 0 -8.727 3.475c-.058.16-.123.319-.193.475a6.715 6.715 0 0 0 3.572 8.482q.238.087.473.192a6.789 6.789 0 0 0 8.569-9zm4.657-15.648a21.3 21.3 0 0 1 -18.927 38.018l-.027-.012a21.345 21.345 0 0 1 -11.856-27.305 7.1 7.1 0 0 1 .358-.879 21.238 21.238 0 0 1 11.277-11.14 21.465 21.465 0 0 1 4.89-1.409 108.471 108.471 0 0 1 110.169-79.395l-7.5-9.84a7.256 7.256 0 0 1 11.533-8.807l18.139 23.785a7.255 7.255 0 0 1 -1.364 10.17l-23.793 18.138a7.256 7.256 0 0 1 -8.8-11.532l9.821-7.488a94.123 94.123 0 0 0 -93.917 67.7zm-136.607 130.062c-1.181-.462-2.53-.937-4.2-1.439-1.749-.526-3.761-1.034-5.893-1.571-2.249-.568-4.622-1.167-6.887-1.817a81.221 81.221 0 0 1 -7.736-2.626 52.681 52.681 0 0 1 -7.96-3.915 57.093 57.093 0 0 1 -5.122-3.558 19.314 19.314 0 0 1 -2.1 3.175 29.979 29.979 0 0 1 -4.78 4.617c-1.583 1.254-3.581 2.64-5.787 4.091-1.069.7-2 1.305-2.835 1.842v15.331a30.06 30.06 0 0 0 7.975 20.595 25.087 25.087 0 0 0 37.345 0 30.056 30.056 0 0 0 7.976-20.595v-14.13zm-3.794 117.75q-.863.314-1.737.606a66.691 66.691 0 0 1 -42.171 0q-.874-.292-1.736-.606 8.1 16.046 22.822 31.483 14.722-15.438 22.822-31.483zm-44.516-66.689-1.446 6.36a26.013 26.013 0 0 1 -8.247 14.073q-.63.554-1.295 1.069a86.352 86.352 0 0 0 2.3 24.838 49.4 49.4 0 0 0 13.842 7.2 53.4 53.4 0 0 0 33.079 0 49.4 49.4 0 0 0 13.842-7.2 86.282 86.282 0 0 0 2.3-24.786q-.7-.539-1.362-1.121a26.01 26.01 0 0 1 -8.247-14.073l-1.446-6.36a39.133 39.133 0 0 1 -43.323 0zm102.131 19.247c21.553 5.007 34.482 13.526 35.172 45.641v.142h.028v79.966a7.273 7.273 0 0 1 -7.272 7.273h-216.795a7.273 7.273 0 0 1 -7.273-7.273v-79.966a7.309 7.309 0 0 1 .049-.842c.911-33.257 15.2-40.822 38.733-45.728.5-7.586 1.773-17.265 3.2-28.09 2.421-18.4 5.3-40.261 5.3-60.319a67.9 67.9 0 0 1 19.627-47.875 66.563 66.563 0 0 1 94.957 0 67.889 67.889 0 0 1 19.627 47.875c0 22.494 5.342 45.587 9.591 63.955 2.279 9.851 4.261 18.419 5.062 25.241zm-46.7-31.379a44.85 44.85 0 0 0 7.42-24.8v-18.92a7.275 7.275 0 0 0 -4.889-6.873c-1.2-.525-2.455-1.065-4.1-1.717-1.832-.726-3.692-1.4-5.606-1.978-2.014-.606-4.2-1.158-6.517-1.742-2.01-.507-4.13-1.042-6.433-1.7-2.252-.647-4.44-1.344-6.372-2.113a37.981 37.981 0 0 1 -5.745-2.837 66.527 66.527 0 0 1 -8.659-6.687c-.68-.593-.82-.722-1.072-.939l.012-.014a14.573 14.573 0 0 0 -4.812-3.1c-6.5-2.195-9.224.041-10.259 6.5a21.51 21.51 0 0 0 -.208 2.607 14.785 14.785 0 0 1 -.37 3.3 3.848 3.848 0 0 1 -.715 1.241 16.145 16.145 0 0 1 -2.507 2.344c-1.423 1.129-3.022 2.244-4.707 3.353-1.127.741-3.346 2.131-5.627 3.557a7.274 7.274 0 0 0 -3.8 6.392v19.327a44.847 44.847 0 0 0 7.42 24.8l-3.479 15.309a11.711 11.711 0 0 1 -3.7 6.345 18.2 18.2 0 0 1 -8.506 3.875c-3.592.726-8.189 1.542-12.649 2.326.575-6.608 1.632-14.641 2.8-23.479 2.5-19 5.467-41.557 5.467-62.194a53.45 53.45 0 0 1 15.423-37.7 52.155 52.155 0 0 1 74.275 0 53.45 53.45 0 0 1 15.423 37.7c0 24.013 5.564 48.064 9.989 67.193 1.675 7.243 3.177 13.738 4.1 19.051l-2.054-.362c-4.821-.846-9.929-1.744-13.842-2.535a18.2 18.2 0 0 1 -8.506-3.875 11.711 11.711 0 0 1 -3.7-6.345l-3.482-15.31zm-41.01 149.856h-45.614a7.289 7.289 0 0 0 -.715-1.2 26.958 26.958 0 0 1 -5.261-16.38q0-9.969 5.972-22.523a7.256 7.256 0 0 0 -13.125-6.193q-7.392 15.54-7.393 28.716a41.569 41.569 0 0 0 3.738 17.583h-31.487v-72.697c0-.137 0-.274-.012-.41.791-27.416 16-30.094 40.333-34.368 3.862-.679 7.947-1.4 13.53-2.518a102.527 102.527 0 0 0 9.229 40.627q10.013 22.326 30.808 43.123v26.24zm14.545-26.241q20.795-20.795 30.808-43.121a102.527 102.527 0 0 0 9.226-40.616c5.55 1.115 9.617 1.83 13.466 2.506 24.453 4.3 39.695 6.976 40.344 34.778h-.024v72.694h-31.422a41.554 41.554 0 0 0 3.738-17.583q0-13.176-7.392-28.716a7.256 7.256 0 1 0 -13.125 6.193q5.971 12.554 5.972 22.523a26.959 26.959 0 0 1 -5.262 16.38 7.359 7.359 0 0 0 -.715 1.2h-45.614zm314.57-424.669a17.825 17.825 0 0 1 12.368 4.889 15.841 15.841 0 0 1 4.992 11.445v162.839a15.841 15.841 0 0 1 -4.992 11.445 17.821 17.821 0 0 1 -12.368 4.889h-92.395a7.234 7.234 0 0 0 -3.9 1.136l-22.385 12.384q-.276.151-.532.323l-36.3 20.086v-26.656a7.273 7.273 0 0 0 -7.273-7.273h-55.544a17.824 17.824 0 0 1 -12.368-4.889 15.844 15.844 0 0 1 -4.991-11.445v-162.839a15.842 15.842 0 0 1 4.991-11.445 17.829 17.829 0 0 1 12.368-4.889zm-218.329-14.545h218.329a32.378 32.378 0 0 1 22.425 8.979 30.272 30.272 0 0 1 9.48 21.9v162.839a30.268 30.268 0 0 1 -9.48 21.9 32.375 32.375 0 0 1 -22.425 8.98h-90.544l-21.149 11.7q-.257.141-.518.259l-47.084 26.051a7.236 7.236 0 0 1 -10.73-6.335h-.037v-31.673h-48.267a32.378 32.378 0 0 1 -22.425-8.98 30.272 30.272 0 0 1 -9.48-21.9v-162.841a30.268 30.268 0 0 1 9.48-21.9 32.378 32.378 0 0 1 22.425-8.979zm53.254 72.778-10.193-10.192 10.193-10.193a7.272 7.272 0 0 0 -10.285-10.284l-10.192 10.191-10.192-10.19a7.272 7.272 0 0 0 -10.284 10.284l10.192 10.192-10.192 10.191a7.272 7.272 0 0 0 10.284 10.284l10.192-10.191 10.192 10.192a7.272 7.272 0 0 0 10.285-10.284zm123.469 89.042-10.192-10.192 10.192-10.193a7.272 7.272 0 0 0 -10.284-10.284l-10.192 10.192-10.192-10.191a7.272 7.272 0 1 0 -10.284 10.284l10.192 10.192-10.192 10.191a7.272 7.272 0 1 0 10.284 10.281l10.192-10.191 10.192 10.191a7.272 7.272 0 0 0 10.284-10.284z\" fill-rule=\"evenodd\"></path></svg>							\n												<h5>\n													Coping Strategies												</h5>\n											<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Goal Setting												</h5>\n											<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Relationship Improvement												</h5>\n											<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Skill Development												</h5>\n											<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Tailored Approaches												</h5>\n											<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.</p>										\n		Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:27:29', '2026-06-17 10:27:29', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=520', 0, 'revision', '', 0),
(521, 1, '2026-06-17 10:28:18', '2026-06-17 10:28:18', '', 'setup_917115', '', 'inherit', 'closed', 'closed', '', 'setup_917115', '', '', '2026-06-17 10:28:18', '2026-06-17 10:28:18', '', 14, 'https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/setup_917115.svg', 0, 'attachment', 'image/svg+xml', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(522, 1, '2026-06-17 10:28:22', '2026-06-17 10:28:22', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />																<h2>Psychotherapy</h2>		<ul style=\"margin-left: 18px;\">\n 	<li>Individual therapy</li>\n 	<li>Couples/marriage therapy</li>\n 	<li>Family therapy</li>\n 	<li>Child/teen therapy</li>\n 	<li>Online therapy</li>\n 	<li>COMMON SPECIALTIES &amp; approaches</li>\n 	<li>Anxiety therapy</li>\n 	<li>Cognitive behavioral therapy (CBT)</li>\n 	<li>Depression counseling</li>\n 	<li>Dialectical behavior therapy (DBT)</li>\n 	<li>Grief &amp; loss counseling</li>\n 	<li>Relational therapy</li>\n</ul>			<h3>Therapy can be highly beneficial for mental health for several reasons:</h3>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 64 64.1999969\" width=\"512\"><path d=\"m51.2529297 42.0226555c.6357422-.6357422.9863281-1.4804688.9863281-2.3808594 0-.8994141-.3500977-1.7441406-.9863281-2.3808594-1.3125-1.3125-3.4492188-1.3125-4.7617188 0l-9.3178711 9.3173828c-.7426758.7441406-1.1518555 1.7314453-1.1518555 2.7822266v11.6396484c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-5.109375l11.5913086-11.5917969c.1875-.1875.2929688-.4414062.2929688-.7070312v-11.5488281c0-2.0097656-1.6347656-3.6445312-3.6445312-3.6445312s-3.6450195 1.6347656-3.6450195 3.6445312v8.6582031l-4.2260742 4.2255859c-.1459961.1455078-.3828125.1435547-.527832 0-.1455078-.1455078-.1455078-.3818359 0-.5273438zm-3.7910156 4.3183594c.9243164.9248047 2.4306641.9267578 3.355957 0l4.519043-4.5185547c.1875-.1875.2929688-.4414062.2929688-.7070312v-9.0722656c0-.9072266.737793-1.6445312 1.6450195-1.6445312.9067383 0 1.6445312.7373047 1.6445312 1.6445312v11.1347656l-11.5913086 11.5917968c-.1875.1875-.2929688.4414062-.2929688.7070312v4.5234375h-9.0136719v-10.6396484c0-.5166016.2011719-1.0029297.5664062-1.3681641l9.3173828-9.3173828c.5332031-.5332031 1.4008789-.5332031 1.9331055 0 .2583008.2587891.4008789.6015625.4008789.9667969s-.1420898.7089844-.4003906.9667969l-2.3769531 2.3769531c-.9252929.9248047-.9252929 2.4306641.0000001 3.3554688z\"></path><path d=\"m6.7250977 28.398632c-2.0097656 0-3.6445312 1.6347656-3.6445312 3.6445312v11.5488281c0 .265625.1054688.5195312.2929688.7070312l11.5913086 11.5917969v5.109375c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-11.6396483c0-1.0507812-.4091797-2.0380859-1.1523438-2.7822266l-9.3173828-9.3173828c-1.3125-1.3125-3.4487305-1.3125-4.762207 0-.6357422.6367188-.9858398 1.4814453-.9858398 2.3808594 0 .9003906.3505859 1.7451172.9863281 2.3808594l2.3769531 2.3769531c.1455078.1455078.1455078.3818359 0 .5273438s-.3823242.1435547-.527832 0l-4.2260742-4.2255859v-8.6582031c-.0000002-2.0097657-1.6352541-3.6445314-3.6450197-3.6445314zm6.4570312 17.9423829c.925293.9267578 2.4316406.9257812 3.355957 0 .925293-.9248047.925293-2.4306641 0-3.3554688l-2.3769531-2.3769531c-.2583008-.2578125-.4003906-.6015625-.4003906-.9667969s.1425781-.7080078.4003906-.9667969c.5332031-.5332031 1.4003906-.5332031 1.9335938 0l9.3168945 9.3173828c.3657227.3652344.5668945.8515625.5668945 1.3681641v10.6396484h-9.0136719v-4.5234375c0-.265625-.1054688-.5195312-.2929688-.7070312l-11.5913085-11.5917969v-11.1347656c0-.9072266.737793-1.6445312 1.6445312-1.6445312.9072266 0 1.6450195.7373047 1.6450195 1.6445312v9.0722656c0 .265625.1054688.5195312.2929688.7070312z\"></path><path d=\"m32 2.0998046c-10.0986328 0-18.3144531 8.2158203-18.3144531 18.3144531s8.2158203 18.3144525 18.3144531 18.3144525 18.3144531-8.2158203 18.3144531-18.3144531-8.2158203-18.3144525-18.3144531-18.3144525zm0 2.0000003c7.614502 0 14.0088501 5.2510376 15.798584 12.3173819-3.1233521-2.2542105-8.8903809-3.70996-15.798584-3.70996s-12.6752319 1.4557495-15.798584 3.70996c1.7897339-7.0663443 8.184082-12.3173819 15.798584-12.3173819zm16.3144531 16.3144521c0 2.6992188-6.7001953 5.7070312-16.3144531 5.7070312s-16.3144531-3.0078125-16.3144531-5.7070312 6.7001953-5.7070302 16.3144531-5.7070302 16.3144531 3.0078115 16.3144531 5.7070302zm-16.3144531 16.3144532c-7.614502 0-14.0088501-5.2510376-15.798584-12.3173828 3.1233521 2.2542114 8.8903809 3.7099609 15.798584 3.7099609s12.6752319-1.4557495 15.798584-3.7099609c-1.7897339 7.0663452-8.184082 12.3173828-15.798584 12.3173828z\"></path></svg>							\n												<h5>\n													Safe Space												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"friendship-work\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><circle cx=\"72\" cy=\"102\" r=\"4\"></circle><circle cx=\"64\" cy=\"50\" r=\"4\"></circle><path d=\"m228 98h4v4c0 2.211 1.789 4 4 4s4-1.789 4-4v-4h4c2.211 0 4-1.789 4-4s-1.789-4-4-4h-4v-4c0-2.211-1.789-4-4-4s-4 1.789-4 4v4h-4c-2.211 0-4 1.789-4 4s1.789 4 4 4z\"></path><path d=\"m132 218h-16v-5.977c0-13.759-8.223-25.608-20-30.964v-35.059c0-.031-.017-.057-.018-.088 4.839-3.653 8.018-9.396 8.018-15.912 0-2.211-1.789-4-4-4h-30.707c-7.328 0-13.293 5.965-13.293 13.293v25.953c0 5.361 2.096 10.206 5.444 13.892-14.614 3.818-25.444 17.092-25.444 32.885v49.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-49.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v9.977c0 2.211 1.789 4 4 4h8v8h-20v-17.582c0-2.211-1.789-4-4-4s-4 1.789-4 4v21.582 24c0 2.211 1.789 4 4 4s4-1.789 4-4v-20h32c6.617 0 12-5.383 12-12s-5.383-12-12-12zm-68-78.707c0-2.918 2.375-5.293 5.293-5.293h26.023c-1.652 4.656-6.102 8-11.316 8h-20zm12.754 38.707c-7.031 0-12.754-5.723-12.754-12.754v-15.246h24v28zm55.246 56h-4v-8h4c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m56 210c-2.211 0-4 1.789-4 4v48c0 2.211 1.789 4 4 4s4-1.789 4-4v-48c0-2.211-1.789-4-4-4z\"></path><path d=\"m238.009 178.998c3.704-3.95 5.991-9.243 5.991-15.072v-9.926c0-11.027-8.973-20-20-20s-20 8.973-20 20v27.06c-11.777 5.355-20 17.205-20 30.964v45.976c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v45.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-15.99-11.1-29.402-25.991-33.025zm-26.009-.998v-24c0-6.617 5.383-12 12-12s12 5.383 12 12v9.926c0 7.762-6.312 14.074-14.074 14.074z\"></path><path d=\"m204 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m244 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m185.41 118.613c.102-.242.203-.488.301-.734 5.809-.832 10.289-5.844 10.289-11.879 0-1.206-.223-2.353-.555-3.452 10.229-11.777 15.466-22.512 15.466-31.899-.001-20.208-15.274-36.649-34.048-36.649-7.633 0-14.91 2.711-20.863 7.707-5.953-4.996-13.23-7.707-20.863-7.707-18.773 0-34.047 16.441-34.047 36.648 0 9.39 5.238 20.125 15.465 31.903-.333 1.098-.555 2.244-.555 3.449 0 6.035 4.48 11.047 10.289 11.879.098.246.199.488.301.73-3.516 4.699-3.141 11.406 1.125 15.672 4.27 4.27 10.98 4.633 15.672 1.129.242.102.488.203.734.301.832 5.809 5.844 10.289 11.879 10.289s11.047-4.48 11.879-10.289c.246-.098.492-.199.734-.301 4.688 3.504 11.398 3.141 15.672-1.129 4.262-4.261 4.641-10.965 1.125-15.668zm-50.273-76.613c6.707 0 13.09 2.82 17.965 7.945 1.516 1.586 4.281 1.586 5.797 0 4.874-5.125 11.257-7.945 17.964-7.945 14.363 0 26.047 12.852 26.047 28.648 0 6.991-4.298 15.714-12.379 25.343-1.433-.939-3.052-1.616-4.82-1.87-.098-.246-.199-.488-.301-.73 3.516-4.699 3.141-11.406-1.125-15.672-4.273-4.27-10.984-4.637-15.672-1.129-.242-.102-.488-.203-.734-.301-.832-5.809-5.844-10.289-11.879-10.289s-11.047 4.48-11.879 10.289c-.246.098-.492.199-.734.301-4.691-3.508-11.402-3.141-15.672 1.129-4.262 4.262-4.641 10.965-1.125 15.668-.102.242-.203.488-.301.734-1.769.253-3.387.931-4.821 1.87-8.079-9.625-12.378-18.35-12.378-25.343 0-15.796 11.683-28.648 26.047-28.648zm47.687 68c-1.77 0-3.328 1.16-3.832 2.855-.488 1.629-1.117 3.16-1.875 4.555-.848 1.562-.562 3.492.695 4.746l.812.812c1.562 1.559 1.562 4.098.004 5.656-1.562 1.566-4.098 1.559-5.66 0l-.82-.82c-1.254-1.254-3.18-1.535-4.73-.691-1.426.773-2.957 1.402-4.555 1.875-1.699.504-2.863 2.062-2.863 3.836v1.176c0 2.207-1.793 4-4 4s-4-1.793-4-4v-1.176c0-1.773-1.164-3.332-2.863-3.836-1.598-.473-3.129-1.102-4.555-1.875-.598-.324-1.254-.48-1.902-.48-1.035 0-2.059.402-2.828 1.172l-.82.82c-1.559 1.559-4.094 1.566-5.66 0-1.559-1.559-1.559-4.098-.008-5.648l.824-.82c1.258-1.254 1.543-3.184.695-4.746-.758-1.395-1.387-2.926-1.875-4.555-.504-1.695-2.062-2.855-3.832-2.855h-1.176c-2.207 0-4-1.793-4-4s1.793-4 4-4h1.176c1.77 0 3.328-1.16 3.832-2.855.488-1.629 1.117-3.16 1.875-4.555.848-1.562.562-3.492-.695-4.746l-.812-.812c-1.562-1.559-1.562-4.098-.004-5.656 1.57-1.562 4.105-1.559 5.66 0l.82.82c1.25 1.25 3.18 1.531 4.73.691 1.426-.773 2.957-1.402 4.555-1.875 1.699-.504 2.863-2.062 2.863-3.836v-1.177c0-2.207 1.793-4 4-4s4 1.793 4 4v1.176c0 1.773 1.164 3.332 2.863 3.836 1.598.473 3.129 1.102 4.555 1.875 1.555.844 3.48.562 4.73-.691l.82-.82c1.562-1.559 4.098-1.566 5.66 0 1.559 1.559 1.559 4.098.008 5.648l-.824.82c-1.258 1.254-1.543 3.184-.695 4.746.758 1.395 1.387 2.926 1.875 4.555.504 1.695 2.062 2.855 3.832 2.855h1.176c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m156 90c-8.824 0-16 7.176-16 16s7.176 16 16 16 16-7.176 16-16-7.176-16-16-16zm0 24c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path></g></svg>							\n												<h5>\n													Emotional Support												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m206.102 400.162c-46.373 0-92.751-17.652-128.056-52.957-34.207-34.208-53.046-79.687-53.046-128.061s18.839-93.853 53.046-128.06c70.615-70.615 185.512-70.605 256.117 0 70.614 70.614 70.614 185.507 0 256.121-35.305 35.305-81.683 52.957-128.061 52.957zm0-346.791c-42.47 0-84.94 16.167-117.271 48.498-64.665 64.666-64.665 169.885 0 234.551 64.666 64.666 169.891 64.661 234.547 0 31.328-31.328 48.578-72.978 48.578-117.276 0-44.297-17.25-85.947-48.578-117.275-32.33-32.331-74.801-48.498-117.276-48.498z\"></path><path d=\"m206.102 357.901c-37.063 0-71.905-14.435-98.109-40.643-54.098-54.1-54.098-142.128 0-196.227 54.1-54.1 142.124-54.09 196.223 0 54.1 54.099 54.1 142.128 0 196.227-26.208 26.208-61.051 40.643-98.114 40.643zm0-262.194c-31.626 0-63.25 12.036-87.324 36.109-48.151 48.156-48.151 126.502 0 174.657 23.323 23.328 54.338 36.174 87.324 36.174s64.001-12.845 87.329-36.174c48.151-48.156 48.151-126.502 0-174.657-24.078-24.073-55.703-36.109-87.329-36.109z\"></path><path d=\"m297.428 421.907c-8.813 0-17.618-3.352-24.326-10.061-2.978-2.978-2.978-7.805 0-10.785 2.98-2.98 7.806-2.98 10.786 0 7.468 7.468 19.619 7.468 27.087 0l77.045-77.05c3.615-3.62 5.606-8.427 5.606-13.54 0-5.115-1.991-9.921-5.606-13.541-2.979-2.98-2.979-7.805 0-10.785 2.98-2.979 7.806-2.979 10.785 0 13.412 13.412 13.412 35.241 0 48.652l-77.045 77.05c-6.709 6.707-15.523 10.06-24.332 10.06z\"></path><path d=\"m402.881 461.874c-12.275 0-23.809-4.783-32.489-13.462l-47.992-47.991c-2.979-2.98-2.979-7.805 0-10.785l54.194-54.193c2.979-2.979 7.805-2.979 10.785 0l47.992 47.991c8.679 8.68 13.461 20.215 13.461 32.49s-4.782 23.809-13.461 32.489c-8.68 8.679-20.216 13.461-32.49 13.461zm-64.303-66.846 42.599 42.599c11.967 11.967 31.442 11.967 43.408 0 11.968-11.968 11.968-31.442 0-43.408l-42.599-42.6z\"></path><path d=\"m467.373 461.874h-355.566c-4.211 0-7.627-3.417-7.627-7.628s3.416-7.627 7.627-7.627h355.566c4.211 0 7.627 3.416 7.627 7.627s-3.416 7.628-7.627 7.628z\"></path><path d=\"m401.258 421.926c-1.951 0-3.904-.744-5.392-2.234l-21.675-21.679c-2.98-2.979-2.98-7.806 0-10.786 2.979-2.979 7.805-2.979 10.785 0l21.675 21.68c2.98 2.979 2.98 7.805 0 10.785-1.491 1.489-3.442 2.234-5.393 2.234z\"></path><path d=\"m206.102 305.102c-.814 0-1.628-.129-2.413-.392-3.814-1.272-41.556-24.446-49.383-62.342-6.668-32.305 9.048-65.739 46.716-99.385 2.89-2.583 7.269-2.583 10.16 0 37.668 33.641 53.384 67.079 46.715 99.38-7.826 37.897-45.569 61.076-49.383 62.347-.783.263-1.598.392-2.412.392zm0-146.07c-27.603 26.133-40.27 51.358-37.674 75.049 3.138 28.626 28.11 47.967 37.674 54.392 9.564-6.426 34.541-25.762 37.679-54.392 2.597-23.691-10.075-48.916-37.679-75.049z\"></path><path d=\"m212.691 305.102c-3.48 0-5.675-.164-6.082-.198-2.652-.224-5.001-1.813-6.192-4.192-.029-.06-.243-.501-.268-.561-1.658-3.541-.373-7.757 2.979-9.768 10.835-6.515 63.212-41.869 30.112-98.402-1.073-1.832-1.331-4.027-.715-6.062.615-2.031 2.045-3.715 3.957-4.648 14.42-7.027 32.256-12.021 53.007-14.842 3.889-.571 7.478 1.927 8.427 5.685 11.51 45.499 7.364 80.353-12.324 103.586-22.525 26.577-58.58 29.402-72.901 29.402zm37.744-113.333c22.007 44.953-.696 78.336-19.848 96.52 13.933-2.384 31.348-8.268 43.364-22.45 15.403-18.178 19.019-46.169 10.775-83.267-12.915 2.146-24.4 5.225-34.291 9.197z\"></path><path d=\"m199.553 305.102c-14.291 0-50.42-2.82-72.944-29.416-19.678-23.233-23.824-58.082-12.314-103.571.948-3.758 4.509-6.256 8.422-5.685 20.756 2.821 38.592 7.816 53.012 14.842 1.912.933 3.342 2.617 3.958 4.648.615 2.035.358 4.23-.715 6.062-33.1 56.533 19.276 91.887 30.111 98.402 3.392 2.036 4.662 6.332 2.925 9.887-1.182 2.413-3.734 4.409-6.411 4.633-.408.035-2.589.198-6.044.198zm-72.07-122.529c-8.243 37.088-4.633 65.079 10.765 83.257 12.007 14.177 29.426 20.066 43.364 22.45-19.147-18.184-41.849-51.562-19.837-96.51-9.892-3.973-21.371-7.052-34.292-9.197z\"></path><path d=\"m205.154 304.547c-4.211 0-7.627-3.417-7.627-7.628v-71.533c0-4.211 3.416-7.627 7.627-7.627s7.628 3.416 7.628 7.627v71.533c-.001 4.211-3.417 7.628-7.628 7.628z\"></path></g></svg>							\n												<h5>\n													Self-Exploration												</h5>\n											<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m295.544 178.256a6.741 6.741 0 0 0 -3.689-3.623 6.718 6.718 0 0 0 -8.727 3.475c-.058.16-.123.319-.193.475a6.715 6.715 0 0 0 3.572 8.482q.238.087.473.192a6.789 6.789 0 0 0 8.569-9zm4.657-15.648a21.3 21.3 0 0 1 -18.927 38.018l-.027-.012a21.345 21.345 0 0 1 -11.856-27.305 7.1 7.1 0 0 1 .358-.879 21.238 21.238 0 0 1 11.277-11.14 21.465 21.465 0 0 1 4.89-1.409 108.471 108.471 0 0 1 110.169-79.395l-7.5-9.84a7.256 7.256 0 0 1 11.533-8.807l18.139 23.785a7.255 7.255 0 0 1 -1.364 10.17l-23.793 18.138a7.256 7.256 0 0 1 -8.8-11.532l9.821-7.488a94.123 94.123 0 0 0 -93.917 67.7zm-136.607 130.062c-1.181-.462-2.53-.937-4.2-1.439-1.749-.526-3.761-1.034-5.893-1.571-2.249-.568-4.622-1.167-6.887-1.817a81.221 81.221 0 0 1 -7.736-2.626 52.681 52.681 0 0 1 -7.96-3.915 57.093 57.093 0 0 1 -5.122-3.558 19.314 19.314 0 0 1 -2.1 3.175 29.979 29.979 0 0 1 -4.78 4.617c-1.583 1.254-3.581 2.64-5.787 4.091-1.069.7-2 1.305-2.835 1.842v15.331a30.06 30.06 0 0 0 7.975 20.595 25.087 25.087 0 0 0 37.345 0 30.056 30.056 0 0 0 7.976-20.595v-14.13zm-3.794 117.75q-.863.314-1.737.606a66.691 66.691 0 0 1 -42.171 0q-.874-.292-1.736-.606 8.1 16.046 22.822 31.483 14.722-15.438 22.822-31.483zm-44.516-66.689-1.446 6.36a26.013 26.013 0 0 1 -8.247 14.073q-.63.554-1.295 1.069a86.352 86.352 0 0 0 2.3 24.838 49.4 49.4 0 0 0 13.842 7.2 53.4 53.4 0 0 0 33.079 0 49.4 49.4 0 0 0 13.842-7.2 86.282 86.282 0 0 0 2.3-24.786q-.7-.539-1.362-1.121a26.01 26.01 0 0 1 -8.247-14.073l-1.446-6.36a39.133 39.133 0 0 1 -43.323 0zm102.131 19.247c21.553 5.007 34.482 13.526 35.172 45.641v.142h.028v79.966a7.273 7.273 0 0 1 -7.272 7.273h-216.795a7.273 7.273 0 0 1 -7.273-7.273v-79.966a7.309 7.309 0 0 1 .049-.842c.911-33.257 15.2-40.822 38.733-45.728.5-7.586 1.773-17.265 3.2-28.09 2.421-18.4 5.3-40.261 5.3-60.319a67.9 67.9 0 0 1 19.627-47.875 66.563 66.563 0 0 1 94.957 0 67.889 67.889 0 0 1 19.627 47.875c0 22.494 5.342 45.587 9.591 63.955 2.279 9.851 4.261 18.419 5.062 25.241zm-46.7-31.379a44.85 44.85 0 0 0 7.42-24.8v-18.92a7.275 7.275 0 0 0 -4.889-6.873c-1.2-.525-2.455-1.065-4.1-1.717-1.832-.726-3.692-1.4-5.606-1.978-2.014-.606-4.2-1.158-6.517-1.742-2.01-.507-4.13-1.042-6.433-1.7-2.252-.647-4.44-1.344-6.372-2.113a37.981 37.981 0 0 1 -5.745-2.837 66.527 66.527 0 0 1 -8.659-6.687c-.68-.593-.82-.722-1.072-.939l.012-.014a14.573 14.573 0 0 0 -4.812-3.1c-6.5-2.195-9.224.041-10.259 6.5a21.51 21.51 0 0 0 -.208 2.607 14.785 14.785 0 0 1 -.37 3.3 3.848 3.848 0 0 1 -.715 1.241 16.145 16.145 0 0 1 -2.507 2.344c-1.423 1.129-3.022 2.244-4.707 3.353-1.127.741-3.346 2.131-5.627 3.557a7.274 7.274 0 0 0 -3.8 6.392v19.327a44.847 44.847 0 0 0 7.42 24.8l-3.479 15.309a11.711 11.711 0 0 1 -3.7 6.345 18.2 18.2 0 0 1 -8.506 3.875c-3.592.726-8.189 1.542-12.649 2.326.575-6.608 1.632-14.641 2.8-23.479 2.5-19 5.467-41.557 5.467-62.194a53.45 53.45 0 0 1 15.423-37.7 52.155 52.155 0 0 1 74.275 0 53.45 53.45 0 0 1 15.423 37.7c0 24.013 5.564 48.064 9.989 67.193 1.675 7.243 3.177 13.738 4.1 19.051l-2.054-.362c-4.821-.846-9.929-1.744-13.842-2.535a18.2 18.2 0 0 1 -8.506-3.875 11.711 11.711 0 0 1 -3.7-6.345l-3.482-15.31zm-41.01 149.856h-45.614a7.289 7.289 0 0 0 -.715-1.2 26.958 26.958 0 0 1 -5.261-16.38q0-9.969 5.972-22.523a7.256 7.256 0 0 0 -13.125-6.193q-7.392 15.54-7.393 28.716a41.569 41.569 0 0 0 3.738 17.583h-31.487v-72.697c0-.137 0-.274-.012-.41.791-27.416 16-30.094 40.333-34.368 3.862-.679 7.947-1.4 13.53-2.518a102.527 102.527 0 0 0 9.229 40.627q10.013 22.326 30.808 43.123v26.24zm14.545-26.241q20.795-20.795 30.808-43.121a102.527 102.527 0 0 0 9.226-40.616c5.55 1.115 9.617 1.83 13.466 2.506 24.453 4.3 39.695 6.976 40.344 34.778h-.024v72.694h-31.422a41.554 41.554 0 0 0 3.738-17.583q0-13.176-7.392-28.716a7.256 7.256 0 1 0 -13.125 6.193q5.971 12.554 5.972 22.523a26.959 26.959 0 0 1 -5.262 16.38 7.359 7.359 0 0 0 -.715 1.2h-45.614zm314.57-424.669a17.825 17.825 0 0 1 12.368 4.889 15.841 15.841 0 0 1 4.992 11.445v162.839a15.841 15.841 0 0 1 -4.992 11.445 17.821 17.821 0 0 1 -12.368 4.889h-92.395a7.234 7.234 0 0 0 -3.9 1.136l-22.385 12.384q-.276.151-.532.323l-36.3 20.086v-26.656a7.273 7.273 0 0 0 -7.273-7.273h-55.544a17.824 17.824 0 0 1 -12.368-4.889 15.844 15.844 0 0 1 -4.991-11.445v-162.839a15.842 15.842 0 0 1 4.991-11.445 17.829 17.829 0 0 1 12.368-4.889zm-218.329-14.545h218.329a32.378 32.378 0 0 1 22.425 8.979 30.272 30.272 0 0 1 9.48 21.9v162.839a30.268 30.268 0 0 1 -9.48 21.9 32.375 32.375 0 0 1 -22.425 8.98h-90.544l-21.149 11.7q-.257.141-.518.259l-47.084 26.051a7.236 7.236 0 0 1 -10.73-6.335h-.037v-31.673h-48.267a32.378 32.378 0 0 1 -22.425-8.98 30.272 30.272 0 0 1 -9.48-21.9v-162.841a30.268 30.268 0 0 1 9.48-21.9 32.378 32.378 0 0 1 22.425-8.979zm53.254 72.778-10.193-10.192 10.193-10.193a7.272 7.272 0 0 0 -10.285-10.284l-10.192 10.191-10.192-10.19a7.272 7.272 0 0 0 -10.284 10.284l10.192 10.192-10.192 10.191a7.272 7.272 0 0 0 10.284 10.284l10.192-10.191 10.192 10.192a7.272 7.272 0 0 0 10.285-10.284zm123.469 89.042-10.192-10.192 10.192-10.193a7.272 7.272 0 0 0 -10.284-10.284l-10.192 10.192-10.192-10.191a7.272 7.272 0 1 0 -10.284 10.284l10.192 10.192-10.192 10.191a7.272 7.272 0 1 0 10.284 10.281l10.192-10.191 10.192 10.191a7.272 7.272 0 0 0 10.284-10.284z\" fill-rule=\"evenodd\"></path></svg>							\n												<h5>\n													Coping Strategies												</h5>\n											<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Goal Setting												</h5>\n											<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Relationship Improvement												</h5>\n											<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Skill Development												</h5>\n											<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Tailored Approaches												</h5>\n											<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.</p>										\n		Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:28:22', '2026-06-17 10:28:22', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=522', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(523, 1, '2026-06-17 10:28:22', '2026-06-17 10:28:22', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />																<h2>Psychotherapy</h2>		<ul style=\"margin-left: 18px;\">\n 	<li>Individual therapy</li>\n 	<li>Couples/marriage therapy</li>\n 	<li>Family therapy</li>\n 	<li>Child/teen therapy</li>\n 	<li>Online therapy</li>\n 	<li>COMMON SPECIALTIES &amp; approaches</li>\n 	<li>Anxiety therapy</li>\n 	<li>Cognitive behavioral therapy (CBT)</li>\n 	<li>Depression counseling</li>\n 	<li>Dialectical behavior therapy (DBT)</li>\n 	<li>Grief &amp; loss counseling</li>\n 	<li>Relational therapy</li>\n</ul>			<h3>Therapy can be highly beneficial for mental health for several reasons:</h3>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 64 64.1999969\" width=\"512\"><path d=\"m51.2529297 42.0226555c.6357422-.6357422.9863281-1.4804688.9863281-2.3808594 0-.8994141-.3500977-1.7441406-.9863281-2.3808594-1.3125-1.3125-3.4492188-1.3125-4.7617188 0l-9.3178711 9.3173828c-.7426758.7441406-1.1518555 1.7314453-1.1518555 2.7822266v11.6396484c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-5.109375l11.5913086-11.5917969c.1875-.1875.2929688-.4414062.2929688-.7070312v-11.5488281c0-2.0097656-1.6347656-3.6445312-3.6445312-3.6445312s-3.6450195 1.6347656-3.6450195 3.6445312v8.6582031l-4.2260742 4.2255859c-.1459961.1455078-.3828125.1435547-.527832 0-.1455078-.1455078-.1455078-.3818359 0-.5273438zm-3.7910156 4.3183594c.9243164.9248047 2.4306641.9267578 3.355957 0l4.519043-4.5185547c.1875-.1875.2929688-.4414062.2929688-.7070312v-9.0722656c0-.9072266.737793-1.6445312 1.6450195-1.6445312.9067383 0 1.6445312.7373047 1.6445312 1.6445312v11.1347656l-11.5913086 11.5917968c-.1875.1875-.2929688.4414062-.2929688.7070312v4.5234375h-9.0136719v-10.6396484c0-.5166016.2011719-1.0029297.5664062-1.3681641l9.3173828-9.3173828c.5332031-.5332031 1.4008789-.5332031 1.9331055 0 .2583008.2587891.4008789.6015625.4008789.9667969s-.1420898.7089844-.4003906.9667969l-2.3769531 2.3769531c-.9252929.9248047-.9252929 2.4306641.0000001 3.3554688z\"></path><path d=\"m6.7250977 28.398632c-2.0097656 0-3.6445312 1.6347656-3.6445312 3.6445312v11.5488281c0 .265625.1054688.5195312.2929688.7070312l11.5913086 11.5917969v5.109375c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-11.6396483c0-1.0507812-.4091797-2.0380859-1.1523438-2.7822266l-9.3173828-9.3173828c-1.3125-1.3125-3.4487305-1.3125-4.762207 0-.6357422.6367188-.9858398 1.4814453-.9858398 2.3808594 0 .9003906.3505859 1.7451172.9863281 2.3808594l2.3769531 2.3769531c.1455078.1455078.1455078.3818359 0 .5273438s-.3823242.1435547-.527832 0l-4.2260742-4.2255859v-8.6582031c-.0000002-2.0097657-1.6352541-3.6445314-3.6450197-3.6445314zm6.4570312 17.9423829c.925293.9267578 2.4316406.9257812 3.355957 0 .925293-.9248047.925293-2.4306641 0-3.3554688l-2.3769531-2.3769531c-.2583008-.2578125-.4003906-.6015625-.4003906-.9667969s.1425781-.7080078.4003906-.9667969c.5332031-.5332031 1.4003906-.5332031 1.9335938 0l9.3168945 9.3173828c.3657227.3652344.5668945.8515625.5668945 1.3681641v10.6396484h-9.0136719v-4.5234375c0-.265625-.1054688-.5195312-.2929688-.7070312l-11.5913085-11.5917969v-11.1347656c0-.9072266.737793-1.6445312 1.6445312-1.6445312.9072266 0 1.6450195.7373047 1.6450195 1.6445312v9.0722656c0 .265625.1054688.5195312.2929688.7070312z\"></path><path d=\"m32 2.0998046c-10.0986328 0-18.3144531 8.2158203-18.3144531 18.3144531s8.2158203 18.3144525 18.3144531 18.3144525 18.3144531-8.2158203 18.3144531-18.3144531-8.2158203-18.3144525-18.3144531-18.3144525zm0 2.0000003c7.614502 0 14.0088501 5.2510376 15.798584 12.3173819-3.1233521-2.2542105-8.8903809-3.70996-15.798584-3.70996s-12.6752319 1.4557495-15.798584 3.70996c1.7897339-7.0663443 8.184082-12.3173819 15.798584-12.3173819zm16.3144531 16.3144521c0 2.6992188-6.7001953 5.7070312-16.3144531 5.7070312s-16.3144531-3.0078125-16.3144531-5.7070312 6.7001953-5.7070302 16.3144531-5.7070302 16.3144531 3.0078115 16.3144531 5.7070302zm-16.3144531 16.3144532c-7.614502 0-14.0088501-5.2510376-15.798584-12.3173828 3.1233521 2.2542114 8.8903809 3.7099609 15.798584 3.7099609s12.6752319-1.4557495 15.798584-3.7099609c-1.7897339 7.0663452-8.184082 12.3173828-15.798584 12.3173828z\"></path></svg>							\n												<h5>\n													Safe Space												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"friendship-work\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><circle cx=\"72\" cy=\"102\" r=\"4\"></circle><circle cx=\"64\" cy=\"50\" r=\"4\"></circle><path d=\"m228 98h4v4c0 2.211 1.789 4 4 4s4-1.789 4-4v-4h4c2.211 0 4-1.789 4-4s-1.789-4-4-4h-4v-4c0-2.211-1.789-4-4-4s-4 1.789-4 4v4h-4c-2.211 0-4 1.789-4 4s1.789 4 4 4z\"></path><path d=\"m132 218h-16v-5.977c0-13.759-8.223-25.608-20-30.964v-35.059c0-.031-.017-.057-.018-.088 4.839-3.653 8.018-9.396 8.018-15.912 0-2.211-1.789-4-4-4h-30.707c-7.328 0-13.293 5.965-13.293 13.293v25.953c0 5.361 2.096 10.206 5.444 13.892-14.614 3.818-25.444 17.092-25.444 32.885v49.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-49.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v9.977c0 2.211 1.789 4 4 4h8v8h-20v-17.582c0-2.211-1.789-4-4-4s-4 1.789-4 4v21.582 24c0 2.211 1.789 4 4 4s4-1.789 4-4v-20h32c6.617 0 12-5.383 12-12s-5.383-12-12-12zm-68-78.707c0-2.918 2.375-5.293 5.293-5.293h26.023c-1.652 4.656-6.102 8-11.316 8h-20zm12.754 38.707c-7.031 0-12.754-5.723-12.754-12.754v-15.246h24v28zm55.246 56h-4v-8h4c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m56 210c-2.211 0-4 1.789-4 4v48c0 2.211 1.789 4 4 4s4-1.789 4-4v-48c0-2.211-1.789-4-4-4z\"></path><path d=\"m238.009 178.998c3.704-3.95 5.991-9.243 5.991-15.072v-9.926c0-11.027-8.973-20-20-20s-20 8.973-20 20v27.06c-11.777 5.355-20 17.205-20 30.964v45.976c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v45.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-15.99-11.1-29.402-25.991-33.025zm-26.009-.998v-24c0-6.617 5.383-12 12-12s12 5.383 12 12v9.926c0 7.762-6.312 14.074-14.074 14.074z\"></path><path d=\"m204 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m244 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m185.41 118.613c.102-.242.203-.488.301-.734 5.809-.832 10.289-5.844 10.289-11.879 0-1.206-.223-2.353-.555-3.452 10.229-11.777 15.466-22.512 15.466-31.899-.001-20.208-15.274-36.649-34.048-36.649-7.633 0-14.91 2.711-20.863 7.707-5.953-4.996-13.23-7.707-20.863-7.707-18.773 0-34.047 16.441-34.047 36.648 0 9.39 5.238 20.125 15.465 31.903-.333 1.098-.555 2.244-.555 3.449 0 6.035 4.48 11.047 10.289 11.879.098.246.199.488.301.73-3.516 4.699-3.141 11.406 1.125 15.672 4.27 4.27 10.98 4.633 15.672 1.129.242.102.488.203.734.301.832 5.809 5.844 10.289 11.879 10.289s11.047-4.48 11.879-10.289c.246-.098.492-.199.734-.301 4.688 3.504 11.398 3.141 15.672-1.129 4.262-4.261 4.641-10.965 1.125-15.668zm-50.273-76.613c6.707 0 13.09 2.82 17.965 7.945 1.516 1.586 4.281 1.586 5.797 0 4.874-5.125 11.257-7.945 17.964-7.945 14.363 0 26.047 12.852 26.047 28.648 0 6.991-4.298 15.714-12.379 25.343-1.433-.939-3.052-1.616-4.82-1.87-.098-.246-.199-.488-.301-.73 3.516-4.699 3.141-11.406-1.125-15.672-4.273-4.27-10.984-4.637-15.672-1.129-.242-.102-.488-.203-.734-.301-.832-5.809-5.844-10.289-11.879-10.289s-11.047 4.48-11.879 10.289c-.246.098-.492.199-.734.301-4.691-3.508-11.402-3.141-15.672 1.129-4.262 4.262-4.641 10.965-1.125 15.668-.102.242-.203.488-.301.734-1.769.253-3.387.931-4.821 1.87-8.079-9.625-12.378-18.35-12.378-25.343 0-15.796 11.683-28.648 26.047-28.648zm47.687 68c-1.77 0-3.328 1.16-3.832 2.855-.488 1.629-1.117 3.16-1.875 4.555-.848 1.562-.562 3.492.695 4.746l.812.812c1.562 1.559 1.562 4.098.004 5.656-1.562 1.566-4.098 1.559-5.66 0l-.82-.82c-1.254-1.254-3.18-1.535-4.73-.691-1.426.773-2.957 1.402-4.555 1.875-1.699.504-2.863 2.062-2.863 3.836v1.176c0 2.207-1.793 4-4 4s-4-1.793-4-4v-1.176c0-1.773-1.164-3.332-2.863-3.836-1.598-.473-3.129-1.102-4.555-1.875-.598-.324-1.254-.48-1.902-.48-1.035 0-2.059.402-2.828 1.172l-.82.82c-1.559 1.559-4.094 1.566-5.66 0-1.559-1.559-1.559-4.098-.008-5.648l.824-.82c1.258-1.254 1.543-3.184.695-4.746-.758-1.395-1.387-2.926-1.875-4.555-.504-1.695-2.062-2.855-3.832-2.855h-1.176c-2.207 0-4-1.793-4-4s1.793-4 4-4h1.176c1.77 0 3.328-1.16 3.832-2.855.488-1.629 1.117-3.16 1.875-4.555.848-1.562.562-3.492-.695-4.746l-.812-.812c-1.562-1.559-1.562-4.098-.004-5.656 1.57-1.562 4.105-1.559 5.66 0l.82.82c1.25 1.25 3.18 1.531 4.73.691 1.426-.773 2.957-1.402 4.555-1.875 1.699-.504 2.863-2.062 2.863-3.836v-1.177c0-2.207 1.793-4 4-4s4 1.793 4 4v1.176c0 1.773 1.164 3.332 2.863 3.836 1.598.473 3.129 1.102 4.555 1.875 1.555.844 3.48.562 4.73-.691l.82-.82c1.562-1.559 4.098-1.566 5.66 0 1.559 1.559 1.559 4.098.008 5.648l-.824.82c-1.258 1.254-1.543 3.184-.695 4.746.758 1.395 1.387 2.926 1.875 4.555.504 1.695 2.062 2.855 3.832 2.855h1.176c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m156 90c-8.824 0-16 7.176-16 16s7.176 16 16 16 16-7.176 16-16-7.176-16-16-16zm0 24c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path></g></svg>							\n												<h5>\n													Emotional Support												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m206.102 400.162c-46.373 0-92.751-17.652-128.056-52.957-34.207-34.208-53.046-79.687-53.046-128.061s18.839-93.853 53.046-128.06c70.615-70.615 185.512-70.605 256.117 0 70.614 70.614 70.614 185.507 0 256.121-35.305 35.305-81.683 52.957-128.061 52.957zm0-346.791c-42.47 0-84.94 16.167-117.271 48.498-64.665 64.666-64.665 169.885 0 234.551 64.666 64.666 169.891 64.661 234.547 0 31.328-31.328 48.578-72.978 48.578-117.276 0-44.297-17.25-85.947-48.578-117.275-32.33-32.331-74.801-48.498-117.276-48.498z\"></path><path d=\"m206.102 357.901c-37.063 0-71.905-14.435-98.109-40.643-54.098-54.1-54.098-142.128 0-196.227 54.1-54.1 142.124-54.09 196.223 0 54.1 54.099 54.1 142.128 0 196.227-26.208 26.208-61.051 40.643-98.114 40.643zm0-262.194c-31.626 0-63.25 12.036-87.324 36.109-48.151 48.156-48.151 126.502 0 174.657 23.323 23.328 54.338 36.174 87.324 36.174s64.001-12.845 87.329-36.174c48.151-48.156 48.151-126.502 0-174.657-24.078-24.073-55.703-36.109-87.329-36.109z\"></path><path d=\"m297.428 421.907c-8.813 0-17.618-3.352-24.326-10.061-2.978-2.978-2.978-7.805 0-10.785 2.98-2.98 7.806-2.98 10.786 0 7.468 7.468 19.619 7.468 27.087 0l77.045-77.05c3.615-3.62 5.606-8.427 5.606-13.54 0-5.115-1.991-9.921-5.606-13.541-2.979-2.98-2.979-7.805 0-10.785 2.98-2.979 7.806-2.979 10.785 0 13.412 13.412 13.412 35.241 0 48.652l-77.045 77.05c-6.709 6.707-15.523 10.06-24.332 10.06z\"></path><path d=\"m402.881 461.874c-12.275 0-23.809-4.783-32.489-13.462l-47.992-47.991c-2.979-2.98-2.979-7.805 0-10.785l54.194-54.193c2.979-2.979 7.805-2.979 10.785 0l47.992 47.991c8.679 8.68 13.461 20.215 13.461 32.49s-4.782 23.809-13.461 32.489c-8.68 8.679-20.216 13.461-32.49 13.461zm-64.303-66.846 42.599 42.599c11.967 11.967 31.442 11.967 43.408 0 11.968-11.968 11.968-31.442 0-43.408l-42.599-42.6z\"></path><path d=\"m467.373 461.874h-355.566c-4.211 0-7.627-3.417-7.627-7.628s3.416-7.627 7.627-7.627h355.566c4.211 0 7.627 3.416 7.627 7.627s-3.416 7.628-7.627 7.628z\"></path><path d=\"m401.258 421.926c-1.951 0-3.904-.744-5.392-2.234l-21.675-21.679c-2.98-2.979-2.98-7.806 0-10.786 2.979-2.979 7.805-2.979 10.785 0l21.675 21.68c2.98 2.979 2.98 7.805 0 10.785-1.491 1.489-3.442 2.234-5.393 2.234z\"></path><path d=\"m206.102 305.102c-.814 0-1.628-.129-2.413-.392-3.814-1.272-41.556-24.446-49.383-62.342-6.668-32.305 9.048-65.739 46.716-99.385 2.89-2.583 7.269-2.583 10.16 0 37.668 33.641 53.384 67.079 46.715 99.38-7.826 37.897-45.569 61.076-49.383 62.347-.783.263-1.598.392-2.412.392zm0-146.07c-27.603 26.133-40.27 51.358-37.674 75.049 3.138 28.626 28.11 47.967 37.674 54.392 9.564-6.426 34.541-25.762 37.679-54.392 2.597-23.691-10.075-48.916-37.679-75.049z\"></path><path d=\"m212.691 305.102c-3.48 0-5.675-.164-6.082-.198-2.652-.224-5.001-1.813-6.192-4.192-.029-.06-.243-.501-.268-.561-1.658-3.541-.373-7.757 2.979-9.768 10.835-6.515 63.212-41.869 30.112-98.402-1.073-1.832-1.331-4.027-.715-6.062.615-2.031 2.045-3.715 3.957-4.648 14.42-7.027 32.256-12.021 53.007-14.842 3.889-.571 7.478 1.927 8.427 5.685 11.51 45.499 7.364 80.353-12.324 103.586-22.525 26.577-58.58 29.402-72.901 29.402zm37.744-113.333c22.007 44.953-.696 78.336-19.848 96.52 13.933-2.384 31.348-8.268 43.364-22.45 15.403-18.178 19.019-46.169 10.775-83.267-12.915 2.146-24.4 5.225-34.291 9.197z\"></path><path d=\"m199.553 305.102c-14.291 0-50.42-2.82-72.944-29.416-19.678-23.233-23.824-58.082-12.314-103.571.948-3.758 4.509-6.256 8.422-5.685 20.756 2.821 38.592 7.816 53.012 14.842 1.912.933 3.342 2.617 3.958 4.648.615 2.035.358 4.23-.715 6.062-33.1 56.533 19.276 91.887 30.111 98.402 3.392 2.036 4.662 6.332 2.925 9.887-1.182 2.413-3.734 4.409-6.411 4.633-.408.035-2.589.198-6.044.198zm-72.07-122.529c-8.243 37.088-4.633 65.079 10.765 83.257 12.007 14.177 29.426 20.066 43.364 22.45-19.147-18.184-41.849-51.562-19.837-96.51-9.892-3.973-21.371-7.052-34.292-9.197z\"></path><path d=\"m205.154 304.547c-4.211 0-7.627-3.417-7.627-7.628v-71.533c0-4.211 3.416-7.627 7.627-7.627s7.628 3.416 7.628 7.627v71.533c-.001 4.211-3.417 7.628-7.628 7.628z\"></path></g></svg>							\n												<h5>\n													Self-Exploration												</h5>\n											<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m295.544 178.256a6.741 6.741 0 0 0 -3.689-3.623 6.718 6.718 0 0 0 -8.727 3.475c-.058.16-.123.319-.193.475a6.715 6.715 0 0 0 3.572 8.482q.238.087.473.192a6.789 6.789 0 0 0 8.569-9zm4.657-15.648a21.3 21.3 0 0 1 -18.927 38.018l-.027-.012a21.345 21.345 0 0 1 -11.856-27.305 7.1 7.1 0 0 1 .358-.879 21.238 21.238 0 0 1 11.277-11.14 21.465 21.465 0 0 1 4.89-1.409 108.471 108.471 0 0 1 110.169-79.395l-7.5-9.84a7.256 7.256 0 0 1 11.533-8.807l18.139 23.785a7.255 7.255 0 0 1 -1.364 10.17l-23.793 18.138a7.256 7.256 0 0 1 -8.8-11.532l9.821-7.488a94.123 94.123 0 0 0 -93.917 67.7zm-136.607 130.062c-1.181-.462-2.53-.937-4.2-1.439-1.749-.526-3.761-1.034-5.893-1.571-2.249-.568-4.622-1.167-6.887-1.817a81.221 81.221 0 0 1 -7.736-2.626 52.681 52.681 0 0 1 -7.96-3.915 57.093 57.093 0 0 1 -5.122-3.558 19.314 19.314 0 0 1 -2.1 3.175 29.979 29.979 0 0 1 -4.78 4.617c-1.583 1.254-3.581 2.64-5.787 4.091-1.069.7-2 1.305-2.835 1.842v15.331a30.06 30.06 0 0 0 7.975 20.595 25.087 25.087 0 0 0 37.345 0 30.056 30.056 0 0 0 7.976-20.595v-14.13zm-3.794 117.75q-.863.314-1.737.606a66.691 66.691 0 0 1 -42.171 0q-.874-.292-1.736-.606 8.1 16.046 22.822 31.483 14.722-15.438 22.822-31.483zm-44.516-66.689-1.446 6.36a26.013 26.013 0 0 1 -8.247 14.073q-.63.554-1.295 1.069a86.352 86.352 0 0 0 2.3 24.838 49.4 49.4 0 0 0 13.842 7.2 53.4 53.4 0 0 0 33.079 0 49.4 49.4 0 0 0 13.842-7.2 86.282 86.282 0 0 0 2.3-24.786q-.7-.539-1.362-1.121a26.01 26.01 0 0 1 -8.247-14.073l-1.446-6.36a39.133 39.133 0 0 1 -43.323 0zm102.131 19.247c21.553 5.007 34.482 13.526 35.172 45.641v.142h.028v79.966a7.273 7.273 0 0 1 -7.272 7.273h-216.795a7.273 7.273 0 0 1 -7.273-7.273v-79.966a7.309 7.309 0 0 1 .049-.842c.911-33.257 15.2-40.822 38.733-45.728.5-7.586 1.773-17.265 3.2-28.09 2.421-18.4 5.3-40.261 5.3-60.319a67.9 67.9 0 0 1 19.627-47.875 66.563 66.563 0 0 1 94.957 0 67.889 67.889 0 0 1 19.627 47.875c0 22.494 5.342 45.587 9.591 63.955 2.279 9.851 4.261 18.419 5.062 25.241zm-46.7-31.379a44.85 44.85 0 0 0 7.42-24.8v-18.92a7.275 7.275 0 0 0 -4.889-6.873c-1.2-.525-2.455-1.065-4.1-1.717-1.832-.726-3.692-1.4-5.606-1.978-2.014-.606-4.2-1.158-6.517-1.742-2.01-.507-4.13-1.042-6.433-1.7-2.252-.647-4.44-1.344-6.372-2.113a37.981 37.981 0 0 1 -5.745-2.837 66.527 66.527 0 0 1 -8.659-6.687c-.68-.593-.82-.722-1.072-.939l.012-.014a14.573 14.573 0 0 0 -4.812-3.1c-6.5-2.195-9.224.041-10.259 6.5a21.51 21.51 0 0 0 -.208 2.607 14.785 14.785 0 0 1 -.37 3.3 3.848 3.848 0 0 1 -.715 1.241 16.145 16.145 0 0 1 -2.507 2.344c-1.423 1.129-3.022 2.244-4.707 3.353-1.127.741-3.346 2.131-5.627 3.557a7.274 7.274 0 0 0 -3.8 6.392v19.327a44.847 44.847 0 0 0 7.42 24.8l-3.479 15.309a11.711 11.711 0 0 1 -3.7 6.345 18.2 18.2 0 0 1 -8.506 3.875c-3.592.726-8.189 1.542-12.649 2.326.575-6.608 1.632-14.641 2.8-23.479 2.5-19 5.467-41.557 5.467-62.194a53.45 53.45 0 0 1 15.423-37.7 52.155 52.155 0 0 1 74.275 0 53.45 53.45 0 0 1 15.423 37.7c0 24.013 5.564 48.064 9.989 67.193 1.675 7.243 3.177 13.738 4.1 19.051l-2.054-.362c-4.821-.846-9.929-1.744-13.842-2.535a18.2 18.2 0 0 1 -8.506-3.875 11.711 11.711 0 0 1 -3.7-6.345l-3.482-15.31zm-41.01 149.856h-45.614a7.289 7.289 0 0 0 -.715-1.2 26.958 26.958 0 0 1 -5.261-16.38q0-9.969 5.972-22.523a7.256 7.256 0 0 0 -13.125-6.193q-7.392 15.54-7.393 28.716a41.569 41.569 0 0 0 3.738 17.583h-31.487v-72.697c0-.137 0-.274-.012-.41.791-27.416 16-30.094 40.333-34.368 3.862-.679 7.947-1.4 13.53-2.518a102.527 102.527 0 0 0 9.229 40.627q10.013 22.326 30.808 43.123v26.24zm14.545-26.241q20.795-20.795 30.808-43.121a102.527 102.527 0 0 0 9.226-40.616c5.55 1.115 9.617 1.83 13.466 2.506 24.453 4.3 39.695 6.976 40.344 34.778h-.024v72.694h-31.422a41.554 41.554 0 0 0 3.738-17.583q0-13.176-7.392-28.716a7.256 7.256 0 1 0 -13.125 6.193q5.971 12.554 5.972 22.523a26.959 26.959 0 0 1 -5.262 16.38 7.359 7.359 0 0 0 -.715 1.2h-45.614zm314.57-424.669a17.825 17.825 0 0 1 12.368 4.889 15.841 15.841 0 0 1 4.992 11.445v162.839a15.841 15.841 0 0 1 -4.992 11.445 17.821 17.821 0 0 1 -12.368 4.889h-92.395a7.234 7.234 0 0 0 -3.9 1.136l-22.385 12.384q-.276.151-.532.323l-36.3 20.086v-26.656a7.273 7.273 0 0 0 -7.273-7.273h-55.544a17.824 17.824 0 0 1 -12.368-4.889 15.844 15.844 0 0 1 -4.991-11.445v-162.839a15.842 15.842 0 0 1 4.991-11.445 17.829 17.829 0 0 1 12.368-4.889zm-218.329-14.545h218.329a32.378 32.378 0 0 1 22.425 8.979 30.272 30.272 0 0 1 9.48 21.9v162.839a30.268 30.268 0 0 1 -9.48 21.9 32.375 32.375 0 0 1 -22.425 8.98h-90.544l-21.149 11.7q-.257.141-.518.259l-47.084 26.051a7.236 7.236 0 0 1 -10.73-6.335h-.037v-31.673h-48.267a32.378 32.378 0 0 1 -22.425-8.98 30.272 30.272 0 0 1 -9.48-21.9v-162.841a30.268 30.268 0 0 1 9.48-21.9 32.378 32.378 0 0 1 22.425-8.979zm53.254 72.778-10.193-10.192 10.193-10.193a7.272 7.272 0 0 0 -10.285-10.284l-10.192 10.191-10.192-10.19a7.272 7.272 0 0 0 -10.284 10.284l10.192 10.192-10.192 10.191a7.272 7.272 0 0 0 10.284 10.284l10.192-10.191 10.192 10.192a7.272 7.272 0 0 0 10.285-10.284zm123.469 89.042-10.192-10.192 10.192-10.193a7.272 7.272 0 0 0 -10.284-10.284l-10.192 10.192-10.192-10.191a7.272 7.272 0 1 0 -10.284 10.284l10.192 10.192-10.192 10.191a7.272 7.272 0 1 0 10.284 10.281l10.192-10.191 10.192 10.191a7.272 7.272 0 0 0 10.284-10.284z\" fill-rule=\"evenodd\"></path></svg>							\n												<h5>\n													Coping Strategies												</h5>\n											<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Goal Setting												</h5>\n											<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Relationship Improvement												</h5>\n											<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Skill Development												</h5>\n											<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Tailored Approaches												</h5>\n											<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.</p>										\n		Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:28:22', '2026-06-17 10:28:22', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=523', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(524, 1, '2026-06-17 10:28:22', '2026-06-17 10:28:22', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />																<h2>Psychotherapy</h2>		<ul style=\"margin-left: 18px;\">\n 	<li>Individual therapy</li>\n 	<li>Couples/marriage therapy</li>\n 	<li>Family therapy</li>\n 	<li>Child/teen therapy</li>\n 	<li>Online therapy</li>\n 	<li>COMMON SPECIALTIES &amp; approaches</li>\n 	<li>Anxiety therapy</li>\n 	<li>Cognitive behavioral therapy (CBT)</li>\n 	<li>Depression counseling</li>\n 	<li>Dialectical behavior therapy (DBT)</li>\n 	<li>Grief &amp; loss counseling</li>\n 	<li>Relational therapy</li>\n</ul>			<h3>Therapy can be highly beneficial for mental health for several reasons:</h3>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 64 64.1999969\" width=\"512\"><path d=\"m51.2529297 42.0226555c.6357422-.6357422.9863281-1.4804688.9863281-2.3808594 0-.8994141-.3500977-1.7441406-.9863281-2.3808594-1.3125-1.3125-3.4492188-1.3125-4.7617188 0l-9.3178711 9.3173828c-.7426758.7441406-1.1518555 1.7314453-1.1518555 2.7822266v11.6396484c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-5.109375l11.5913086-11.5917969c.1875-.1875.2929688-.4414062.2929688-.7070312v-11.5488281c0-2.0097656-1.6347656-3.6445312-3.6445312-3.6445312s-3.6450195 1.6347656-3.6450195 3.6445312v8.6582031l-4.2260742 4.2255859c-.1459961.1455078-.3828125.1435547-.527832 0-.1455078-.1455078-.1455078-.3818359 0-.5273438zm-3.7910156 4.3183594c.9243164.9248047 2.4306641.9267578 3.355957 0l4.519043-4.5185547c.1875-.1875.2929688-.4414062.2929688-.7070312v-9.0722656c0-.9072266.737793-1.6445312 1.6450195-1.6445312.9067383 0 1.6445312.7373047 1.6445312 1.6445312v11.1347656l-11.5913086 11.5917968c-.1875.1875-.2929688.4414062-.2929688.7070312v4.5234375h-9.0136719v-10.6396484c0-.5166016.2011719-1.0029297.5664062-1.3681641l9.3173828-9.3173828c.5332031-.5332031 1.4008789-.5332031 1.9331055 0 .2583008.2587891.4008789.6015625.4008789.9667969s-.1420898.7089844-.4003906.9667969l-2.3769531 2.3769531c-.9252929.9248047-.9252929 2.4306641.0000001 3.3554688z\"></path><path d=\"m6.7250977 28.398632c-2.0097656 0-3.6445312 1.6347656-3.6445312 3.6445312v11.5488281c0 .265625.1054688.5195312.2929688.7070312l11.5913086 11.5917969v5.109375c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-11.6396483c0-1.0507812-.4091797-2.0380859-1.1523438-2.7822266l-9.3173828-9.3173828c-1.3125-1.3125-3.4487305-1.3125-4.762207 0-.6357422.6367188-.9858398 1.4814453-.9858398 2.3808594 0 .9003906.3505859 1.7451172.9863281 2.3808594l2.3769531 2.3769531c.1455078.1455078.1455078.3818359 0 .5273438s-.3823242.1435547-.527832 0l-4.2260742-4.2255859v-8.6582031c-.0000002-2.0097657-1.6352541-3.6445314-3.6450197-3.6445314zm6.4570312 17.9423829c.925293.9267578 2.4316406.9257812 3.355957 0 .925293-.9248047.925293-2.4306641 0-3.3554688l-2.3769531-2.3769531c-.2583008-.2578125-.4003906-.6015625-.4003906-.9667969s.1425781-.7080078.4003906-.9667969c.5332031-.5332031 1.4003906-.5332031 1.9335938 0l9.3168945 9.3173828c.3657227.3652344.5668945.8515625.5668945 1.3681641v10.6396484h-9.0136719v-4.5234375c0-.265625-.1054688-.5195312-.2929688-.7070312l-11.5913085-11.5917969v-11.1347656c0-.9072266.737793-1.6445312 1.6445312-1.6445312.9072266 0 1.6450195.7373047 1.6450195 1.6445312v9.0722656c0 .265625.1054688.5195312.2929688.7070312z\"></path><path d=\"m32 2.0998046c-10.0986328 0-18.3144531 8.2158203-18.3144531 18.3144531s8.2158203 18.3144525 18.3144531 18.3144525 18.3144531-8.2158203 18.3144531-18.3144531-8.2158203-18.3144525-18.3144531-18.3144525zm0 2.0000003c7.614502 0 14.0088501 5.2510376 15.798584 12.3173819-3.1233521-2.2542105-8.8903809-3.70996-15.798584-3.70996s-12.6752319 1.4557495-15.798584 3.70996c1.7897339-7.0663443 8.184082-12.3173819 15.798584-12.3173819zm16.3144531 16.3144521c0 2.6992188-6.7001953 5.7070312-16.3144531 5.7070312s-16.3144531-3.0078125-16.3144531-5.7070312 6.7001953-5.7070302 16.3144531-5.7070302 16.3144531 3.0078115 16.3144531 5.7070302zm-16.3144531 16.3144532c-7.614502 0-14.0088501-5.2510376-15.798584-12.3173828 3.1233521 2.2542114 8.8903809 3.7099609 15.798584 3.7099609s12.6752319-1.4557495 15.798584-3.7099609c-1.7897339 7.0663452-8.184082 12.3173828-15.798584 12.3173828z\"></path></svg>							\n												<h5>\n													Safe Space												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"friendship-work\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><circle cx=\"72\" cy=\"102\" r=\"4\"></circle><circle cx=\"64\" cy=\"50\" r=\"4\"></circle><path d=\"m228 98h4v4c0 2.211 1.789 4 4 4s4-1.789 4-4v-4h4c2.211 0 4-1.789 4-4s-1.789-4-4-4h-4v-4c0-2.211-1.789-4-4-4s-4 1.789-4 4v4h-4c-2.211 0-4 1.789-4 4s1.789 4 4 4z\"></path><path d=\"m132 218h-16v-5.977c0-13.759-8.223-25.608-20-30.964v-35.059c0-.031-.017-.057-.018-.088 4.839-3.653 8.018-9.396 8.018-15.912 0-2.211-1.789-4-4-4h-30.707c-7.328 0-13.293 5.965-13.293 13.293v25.953c0 5.361 2.096 10.206 5.444 13.892-14.614 3.818-25.444 17.092-25.444 32.885v49.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-49.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v9.977c0 2.211 1.789 4 4 4h8v8h-20v-17.582c0-2.211-1.789-4-4-4s-4 1.789-4 4v21.582 24c0 2.211 1.789 4 4 4s4-1.789 4-4v-20h32c6.617 0 12-5.383 12-12s-5.383-12-12-12zm-68-78.707c0-2.918 2.375-5.293 5.293-5.293h26.023c-1.652 4.656-6.102 8-11.316 8h-20zm12.754 38.707c-7.031 0-12.754-5.723-12.754-12.754v-15.246h24v28zm55.246 56h-4v-8h4c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m56 210c-2.211 0-4 1.789-4 4v48c0 2.211 1.789 4 4 4s4-1.789 4-4v-48c0-2.211-1.789-4-4-4z\"></path><path d=\"m238.009 178.998c3.704-3.95 5.991-9.243 5.991-15.072v-9.926c0-11.027-8.973-20-20-20s-20 8.973-20 20v27.06c-11.777 5.355-20 17.205-20 30.964v45.976c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v45.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-15.99-11.1-29.402-25.991-33.025zm-26.009-.998v-24c0-6.617 5.383-12 12-12s12 5.383 12 12v9.926c0 7.762-6.312 14.074-14.074 14.074z\"></path><path d=\"m204 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m244 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m185.41 118.613c.102-.242.203-.488.301-.734 5.809-.832 10.289-5.844 10.289-11.879 0-1.206-.223-2.353-.555-3.452 10.229-11.777 15.466-22.512 15.466-31.899-.001-20.208-15.274-36.649-34.048-36.649-7.633 0-14.91 2.711-20.863 7.707-5.953-4.996-13.23-7.707-20.863-7.707-18.773 0-34.047 16.441-34.047 36.648 0 9.39 5.238 20.125 15.465 31.903-.333 1.098-.555 2.244-.555 3.449 0 6.035 4.48 11.047 10.289 11.879.098.246.199.488.301.73-3.516 4.699-3.141 11.406 1.125 15.672 4.27 4.27 10.98 4.633 15.672 1.129.242.102.488.203.734.301.832 5.809 5.844 10.289 11.879 10.289s11.047-4.48 11.879-10.289c.246-.098.492-.199.734-.301 4.688 3.504 11.398 3.141 15.672-1.129 4.262-4.261 4.641-10.965 1.125-15.668zm-50.273-76.613c6.707 0 13.09 2.82 17.965 7.945 1.516 1.586 4.281 1.586 5.797 0 4.874-5.125 11.257-7.945 17.964-7.945 14.363 0 26.047 12.852 26.047 28.648 0 6.991-4.298 15.714-12.379 25.343-1.433-.939-3.052-1.616-4.82-1.87-.098-.246-.199-.488-.301-.73 3.516-4.699 3.141-11.406-1.125-15.672-4.273-4.27-10.984-4.637-15.672-1.129-.242-.102-.488-.203-.734-.301-.832-5.809-5.844-10.289-11.879-10.289s-11.047 4.48-11.879 10.289c-.246.098-.492.199-.734.301-4.691-3.508-11.402-3.141-15.672 1.129-4.262 4.262-4.641 10.965-1.125 15.668-.102.242-.203.488-.301.734-1.769.253-3.387.931-4.821 1.87-8.079-9.625-12.378-18.35-12.378-25.343 0-15.796 11.683-28.648 26.047-28.648zm47.687 68c-1.77 0-3.328 1.16-3.832 2.855-.488 1.629-1.117 3.16-1.875 4.555-.848 1.562-.562 3.492.695 4.746l.812.812c1.562 1.559 1.562 4.098.004 5.656-1.562 1.566-4.098 1.559-5.66 0l-.82-.82c-1.254-1.254-3.18-1.535-4.73-.691-1.426.773-2.957 1.402-4.555 1.875-1.699.504-2.863 2.062-2.863 3.836v1.176c0 2.207-1.793 4-4 4s-4-1.793-4-4v-1.176c0-1.773-1.164-3.332-2.863-3.836-1.598-.473-3.129-1.102-4.555-1.875-.598-.324-1.254-.48-1.902-.48-1.035 0-2.059.402-2.828 1.172l-.82.82c-1.559 1.559-4.094 1.566-5.66 0-1.559-1.559-1.559-4.098-.008-5.648l.824-.82c1.258-1.254 1.543-3.184.695-4.746-.758-1.395-1.387-2.926-1.875-4.555-.504-1.695-2.062-2.855-3.832-2.855h-1.176c-2.207 0-4-1.793-4-4s1.793-4 4-4h1.176c1.77 0 3.328-1.16 3.832-2.855.488-1.629 1.117-3.16 1.875-4.555.848-1.562.562-3.492-.695-4.746l-.812-.812c-1.562-1.559-1.562-4.098-.004-5.656 1.57-1.562 4.105-1.559 5.66 0l.82.82c1.25 1.25 3.18 1.531 4.73.691 1.426-.773 2.957-1.402 4.555-1.875 1.699-.504 2.863-2.062 2.863-3.836v-1.177c0-2.207 1.793-4 4-4s4 1.793 4 4v1.176c0 1.773 1.164 3.332 2.863 3.836 1.598.473 3.129 1.102 4.555 1.875 1.555.844 3.48.562 4.73-.691l.82-.82c1.562-1.559 4.098-1.566 5.66 0 1.559 1.559 1.559 4.098.008 5.648l-.824.82c-1.258 1.254-1.543 3.184-.695 4.746.758 1.395 1.387 2.926 1.875 4.555.504 1.695 2.062 2.855 3.832 2.855h1.176c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m156 90c-8.824 0-16 7.176-16 16s7.176 16 16 16 16-7.176 16-16-7.176-16-16-16zm0 24c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path></g></svg>							\n												<h5>\n													Emotional Support												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m206.102 400.162c-46.373 0-92.751-17.652-128.056-52.957-34.207-34.208-53.046-79.687-53.046-128.061s18.839-93.853 53.046-128.06c70.615-70.615 185.512-70.605 256.117 0 70.614 70.614 70.614 185.507 0 256.121-35.305 35.305-81.683 52.957-128.061 52.957zm0-346.791c-42.47 0-84.94 16.167-117.271 48.498-64.665 64.666-64.665 169.885 0 234.551 64.666 64.666 169.891 64.661 234.547 0 31.328-31.328 48.578-72.978 48.578-117.276 0-44.297-17.25-85.947-48.578-117.275-32.33-32.331-74.801-48.498-117.276-48.498z\"></path><path d=\"m206.102 357.901c-37.063 0-71.905-14.435-98.109-40.643-54.098-54.1-54.098-142.128 0-196.227 54.1-54.1 142.124-54.09 196.223 0 54.1 54.099 54.1 142.128 0 196.227-26.208 26.208-61.051 40.643-98.114 40.643zm0-262.194c-31.626 0-63.25 12.036-87.324 36.109-48.151 48.156-48.151 126.502 0 174.657 23.323 23.328 54.338 36.174 87.324 36.174s64.001-12.845 87.329-36.174c48.151-48.156 48.151-126.502 0-174.657-24.078-24.073-55.703-36.109-87.329-36.109z\"></path><path d=\"m297.428 421.907c-8.813 0-17.618-3.352-24.326-10.061-2.978-2.978-2.978-7.805 0-10.785 2.98-2.98 7.806-2.98 10.786 0 7.468 7.468 19.619 7.468 27.087 0l77.045-77.05c3.615-3.62 5.606-8.427 5.606-13.54 0-5.115-1.991-9.921-5.606-13.541-2.979-2.98-2.979-7.805 0-10.785 2.98-2.979 7.806-2.979 10.785 0 13.412 13.412 13.412 35.241 0 48.652l-77.045 77.05c-6.709 6.707-15.523 10.06-24.332 10.06z\"></path><path d=\"m402.881 461.874c-12.275 0-23.809-4.783-32.489-13.462l-47.992-47.991c-2.979-2.98-2.979-7.805 0-10.785l54.194-54.193c2.979-2.979 7.805-2.979 10.785 0l47.992 47.991c8.679 8.68 13.461 20.215 13.461 32.49s-4.782 23.809-13.461 32.489c-8.68 8.679-20.216 13.461-32.49 13.461zm-64.303-66.846 42.599 42.599c11.967 11.967 31.442 11.967 43.408 0 11.968-11.968 11.968-31.442 0-43.408l-42.599-42.6z\"></path><path d=\"m467.373 461.874h-355.566c-4.211 0-7.627-3.417-7.627-7.628s3.416-7.627 7.627-7.627h355.566c4.211 0 7.627 3.416 7.627 7.627s-3.416 7.628-7.627 7.628z\"></path><path d=\"m401.258 421.926c-1.951 0-3.904-.744-5.392-2.234l-21.675-21.679c-2.98-2.979-2.98-7.806 0-10.786 2.979-2.979 7.805-2.979 10.785 0l21.675 21.68c2.98 2.979 2.98 7.805 0 10.785-1.491 1.489-3.442 2.234-5.393 2.234z\"></path><path d=\"m206.102 305.102c-.814 0-1.628-.129-2.413-.392-3.814-1.272-41.556-24.446-49.383-62.342-6.668-32.305 9.048-65.739 46.716-99.385 2.89-2.583 7.269-2.583 10.16 0 37.668 33.641 53.384 67.079 46.715 99.38-7.826 37.897-45.569 61.076-49.383 62.347-.783.263-1.598.392-2.412.392zm0-146.07c-27.603 26.133-40.27 51.358-37.674 75.049 3.138 28.626 28.11 47.967 37.674 54.392 9.564-6.426 34.541-25.762 37.679-54.392 2.597-23.691-10.075-48.916-37.679-75.049z\"></path><path d=\"m212.691 305.102c-3.48 0-5.675-.164-6.082-.198-2.652-.224-5.001-1.813-6.192-4.192-.029-.06-.243-.501-.268-.561-1.658-3.541-.373-7.757 2.979-9.768 10.835-6.515 63.212-41.869 30.112-98.402-1.073-1.832-1.331-4.027-.715-6.062.615-2.031 2.045-3.715 3.957-4.648 14.42-7.027 32.256-12.021 53.007-14.842 3.889-.571 7.478 1.927 8.427 5.685 11.51 45.499 7.364 80.353-12.324 103.586-22.525 26.577-58.58 29.402-72.901 29.402zm37.744-113.333c22.007 44.953-.696 78.336-19.848 96.52 13.933-2.384 31.348-8.268 43.364-22.45 15.403-18.178 19.019-46.169 10.775-83.267-12.915 2.146-24.4 5.225-34.291 9.197z\"></path><path d=\"m199.553 305.102c-14.291 0-50.42-2.82-72.944-29.416-19.678-23.233-23.824-58.082-12.314-103.571.948-3.758 4.509-6.256 8.422-5.685 20.756 2.821 38.592 7.816 53.012 14.842 1.912.933 3.342 2.617 3.958 4.648.615 2.035.358 4.23-.715 6.062-33.1 56.533 19.276 91.887 30.111 98.402 3.392 2.036 4.662 6.332 2.925 9.887-1.182 2.413-3.734 4.409-6.411 4.633-.408.035-2.589.198-6.044.198zm-72.07-122.529c-8.243 37.088-4.633 65.079 10.765 83.257 12.007 14.177 29.426 20.066 43.364 22.45-19.147-18.184-41.849-51.562-19.837-96.51-9.892-3.973-21.371-7.052-34.292-9.197z\"></path><path d=\"m205.154 304.547c-4.211 0-7.627-3.417-7.627-7.628v-71.533c0-4.211 3.416-7.627 7.627-7.627s7.628 3.416 7.628 7.627v71.533c-.001 4.211-3.417 7.628-7.628 7.628z\"></path></g></svg>							\n												<h5>\n													Self-Exploration												</h5>\n											<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m295.544 178.256a6.741 6.741 0 0 0 -3.689-3.623 6.718 6.718 0 0 0 -8.727 3.475c-.058.16-.123.319-.193.475a6.715 6.715 0 0 0 3.572 8.482q.238.087.473.192a6.789 6.789 0 0 0 8.569-9zm4.657-15.648a21.3 21.3 0 0 1 -18.927 38.018l-.027-.012a21.345 21.345 0 0 1 -11.856-27.305 7.1 7.1 0 0 1 .358-.879 21.238 21.238 0 0 1 11.277-11.14 21.465 21.465 0 0 1 4.89-1.409 108.471 108.471 0 0 1 110.169-79.395l-7.5-9.84a7.256 7.256 0 0 1 11.533-8.807l18.139 23.785a7.255 7.255 0 0 1 -1.364 10.17l-23.793 18.138a7.256 7.256 0 0 1 -8.8-11.532l9.821-7.488a94.123 94.123 0 0 0 -93.917 67.7zm-136.607 130.062c-1.181-.462-2.53-.937-4.2-1.439-1.749-.526-3.761-1.034-5.893-1.571-2.249-.568-4.622-1.167-6.887-1.817a81.221 81.221 0 0 1 -7.736-2.626 52.681 52.681 0 0 1 -7.96-3.915 57.093 57.093 0 0 1 -5.122-3.558 19.314 19.314 0 0 1 -2.1 3.175 29.979 29.979 0 0 1 -4.78 4.617c-1.583 1.254-3.581 2.64-5.787 4.091-1.069.7-2 1.305-2.835 1.842v15.331a30.06 30.06 0 0 0 7.975 20.595 25.087 25.087 0 0 0 37.345 0 30.056 30.056 0 0 0 7.976-20.595v-14.13zm-3.794 117.75q-.863.314-1.737.606a66.691 66.691 0 0 1 -42.171 0q-.874-.292-1.736-.606 8.1 16.046 22.822 31.483 14.722-15.438 22.822-31.483zm-44.516-66.689-1.446 6.36a26.013 26.013 0 0 1 -8.247 14.073q-.63.554-1.295 1.069a86.352 86.352 0 0 0 2.3 24.838 49.4 49.4 0 0 0 13.842 7.2 53.4 53.4 0 0 0 33.079 0 49.4 49.4 0 0 0 13.842-7.2 86.282 86.282 0 0 0 2.3-24.786q-.7-.539-1.362-1.121a26.01 26.01 0 0 1 -8.247-14.073l-1.446-6.36a39.133 39.133 0 0 1 -43.323 0zm102.131 19.247c21.553 5.007 34.482 13.526 35.172 45.641v.142h.028v79.966a7.273 7.273 0 0 1 -7.272 7.273h-216.795a7.273 7.273 0 0 1 -7.273-7.273v-79.966a7.309 7.309 0 0 1 .049-.842c.911-33.257 15.2-40.822 38.733-45.728.5-7.586 1.773-17.265 3.2-28.09 2.421-18.4 5.3-40.261 5.3-60.319a67.9 67.9 0 0 1 19.627-47.875 66.563 66.563 0 0 1 94.957 0 67.889 67.889 0 0 1 19.627 47.875c0 22.494 5.342 45.587 9.591 63.955 2.279 9.851 4.261 18.419 5.062 25.241zm-46.7-31.379a44.85 44.85 0 0 0 7.42-24.8v-18.92a7.275 7.275 0 0 0 -4.889-6.873c-1.2-.525-2.455-1.065-4.1-1.717-1.832-.726-3.692-1.4-5.606-1.978-2.014-.606-4.2-1.158-6.517-1.742-2.01-.507-4.13-1.042-6.433-1.7-2.252-.647-4.44-1.344-6.372-2.113a37.981 37.981 0 0 1 -5.745-2.837 66.527 66.527 0 0 1 -8.659-6.687c-.68-.593-.82-.722-1.072-.939l.012-.014a14.573 14.573 0 0 0 -4.812-3.1c-6.5-2.195-9.224.041-10.259 6.5a21.51 21.51 0 0 0 -.208 2.607 14.785 14.785 0 0 1 -.37 3.3 3.848 3.848 0 0 1 -.715 1.241 16.145 16.145 0 0 1 -2.507 2.344c-1.423 1.129-3.022 2.244-4.707 3.353-1.127.741-3.346 2.131-5.627 3.557a7.274 7.274 0 0 0 -3.8 6.392v19.327a44.847 44.847 0 0 0 7.42 24.8l-3.479 15.309a11.711 11.711 0 0 1 -3.7 6.345 18.2 18.2 0 0 1 -8.506 3.875c-3.592.726-8.189 1.542-12.649 2.326.575-6.608 1.632-14.641 2.8-23.479 2.5-19 5.467-41.557 5.467-62.194a53.45 53.45 0 0 1 15.423-37.7 52.155 52.155 0 0 1 74.275 0 53.45 53.45 0 0 1 15.423 37.7c0 24.013 5.564 48.064 9.989 67.193 1.675 7.243 3.177 13.738 4.1 19.051l-2.054-.362c-4.821-.846-9.929-1.744-13.842-2.535a18.2 18.2 0 0 1 -8.506-3.875 11.711 11.711 0 0 1 -3.7-6.345l-3.482-15.31zm-41.01 149.856h-45.614a7.289 7.289 0 0 0 -.715-1.2 26.958 26.958 0 0 1 -5.261-16.38q0-9.969 5.972-22.523a7.256 7.256 0 0 0 -13.125-6.193q-7.392 15.54-7.393 28.716a41.569 41.569 0 0 0 3.738 17.583h-31.487v-72.697c0-.137 0-.274-.012-.41.791-27.416 16-30.094 40.333-34.368 3.862-.679 7.947-1.4 13.53-2.518a102.527 102.527 0 0 0 9.229 40.627q10.013 22.326 30.808 43.123v26.24zm14.545-26.241q20.795-20.795 30.808-43.121a102.527 102.527 0 0 0 9.226-40.616c5.55 1.115 9.617 1.83 13.466 2.506 24.453 4.3 39.695 6.976 40.344 34.778h-.024v72.694h-31.422a41.554 41.554 0 0 0 3.738-17.583q0-13.176-7.392-28.716a7.256 7.256 0 1 0 -13.125 6.193q5.971 12.554 5.972 22.523a26.959 26.959 0 0 1 -5.262 16.38 7.359 7.359 0 0 0 -.715 1.2h-45.614zm314.57-424.669a17.825 17.825 0 0 1 12.368 4.889 15.841 15.841 0 0 1 4.992 11.445v162.839a15.841 15.841 0 0 1 -4.992 11.445 17.821 17.821 0 0 1 -12.368 4.889h-92.395a7.234 7.234 0 0 0 -3.9 1.136l-22.385 12.384q-.276.151-.532.323l-36.3 20.086v-26.656a7.273 7.273 0 0 0 -7.273-7.273h-55.544a17.824 17.824 0 0 1 -12.368-4.889 15.844 15.844 0 0 1 -4.991-11.445v-162.839a15.842 15.842 0 0 1 4.991-11.445 17.829 17.829 0 0 1 12.368-4.889zm-218.329-14.545h218.329a32.378 32.378 0 0 1 22.425 8.979 30.272 30.272 0 0 1 9.48 21.9v162.839a30.268 30.268 0 0 1 -9.48 21.9 32.375 32.375 0 0 1 -22.425 8.98h-90.544l-21.149 11.7q-.257.141-.518.259l-47.084 26.051a7.236 7.236 0 0 1 -10.73-6.335h-.037v-31.673h-48.267a32.378 32.378 0 0 1 -22.425-8.98 30.272 30.272 0 0 1 -9.48-21.9v-162.841a30.268 30.268 0 0 1 9.48-21.9 32.378 32.378 0 0 1 22.425-8.979zm53.254 72.778-10.193-10.192 10.193-10.193a7.272 7.272 0 0 0 -10.285-10.284l-10.192 10.191-10.192-10.19a7.272 7.272 0 0 0 -10.284 10.284l10.192 10.192-10.192 10.191a7.272 7.272 0 0 0 10.284 10.284l10.192-10.191 10.192 10.192a7.272 7.272 0 0 0 10.285-10.284zm123.469 89.042-10.192-10.192 10.192-10.193a7.272 7.272 0 0 0 -10.284-10.284l-10.192 10.192-10.192-10.191a7.272 7.272 0 1 0 -10.284 10.284l10.192 10.192-10.192 10.191a7.272 7.272 0 1 0 10.284 10.281l10.192-10.191 10.192 10.191a7.272 7.272 0 0 0 10.284-10.284z\" fill-rule=\"evenodd\"></path></svg>							\n												<h5>\n													Coping Strategies												</h5>\n											<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M248.298,398.776v-96.35c0-5.971-2.694-11.517-7.393-15.216l-59.928-47.132c-2.984-2.348-7.254-2.094-9.939,0.592   l-14.349,14.349c-2.986,2.985-4.637,7.118-4.53,11.338c0.106,4.215,1.961,8.252,5.079,11.069l30.406,27.556l-1.867,1.93   c-1.111,1.149-2.665,1.808-4.265,1.808h-5.366c-4.046,0-7.953-1.201-11.299-3.474l-66.646-45.245   c-1.237-0.838-1.976-2.237-1.976-3.742v-42.516c0-8.724-7.102-15.821-15.832-15.821h-23.54c-4.142,0-7.5,3.358-7.5,7.5v72.637   c0,6.404,3.145,12.405,8.408,16.048l46.124,31.979c3.404,2.359,8.077,1.513,10.437-1.89c2.36-3.404,1.514-8.077-1.89-10.437   l-46.128-31.982c-1.222-0.846-1.951-2.235-1.951-3.718v-65.137h16.039c0.458,0,0.832,0.368,0.832,0.821v42.516   c0,6.486,3.2,12.526,8.556,16.155l66.64,45.241c5.84,3.967,12.661,6.064,19.726,6.064h5.366c5.643,0,11.128-2.326,15.047-6.38   l2.254-2.331c2.749-2.837,4.193-6.572,4.066-10.518c-0.127-3.948-1.811-7.585-4.741-10.242l-30.836-27.946   c-0.039-0.036-0.143-0.129-0.148-0.327c-0.005-0.206,0.101-0.312,0.141-0.352l9.642-9.642l54.693,43.015   c1.061,0.834,1.668,2.084,1.668,3.427v88.844h-60.32v-24.995c0-6.607-3.24-12.792-8.658-16.538l-27.532-19.089   c-3.405-2.36-8.077-1.514-10.437,1.89s-1.514,8.077,1.89,10.437l27.541,19.095c1.375,0.951,2.196,2.522,2.196,4.205v24.995h-3.726   c-4.142,0-7.5,3.358-7.5,7.5v58.66c0,0.033,0.004,0.064,0.005,0.097V504.5c0,4.142,3.358,7.5,7.5,7.5h25.971   c4.142,0,7.5-3.358,7.5-7.5c0-4.142-3.358-7.5-7.5-7.5h-18.471v-47.64h71.535v8.07c0,0.016,0.002,0.032,0.002,0.048V497h-23.519   c-4.142,0-7.5,3.358-7.5,7.5c0,4.142,3.358,7.5,7.5,7.5h31.019c4.142,0,7.5-3.358,7.5-7.5v-62.64c0-0.016-0.002-0.032-0.002-0.048   v-42.92C248.293,398.853,248.298,398.815,248.298,398.776z M233.292,434.359h-71.54V406.27h3.62c0.036,0,0.07,0.005,0.106,0.005   h67.814V434.359z\"></path>	</g></g><g>	<g>		<path d=\"M455.147,197.92h-23.535c-8.728,0-15.828,7.101-15.828,15.828v42.51c0,1.501-0.742,2.9-1.984,3.744l-66.637,45.24   c-3.349,2.273-7.258,3.475-11.304,3.475h-5.362c-1.604,0-3.162-0.66-4.279-1.813l-1.862-1.922l30.408-27.549   c3.125-2.831,4.977-6.871,5.08-11.085c0.104-4.215-1.546-8.342-4.526-11.324l-14.354-14.354c-2.687-2.686-6.956-2.939-9.94-0.592   l-47.179,37.107l-12.747,10.025c-4.695,3.693-7.389,9.238-7.389,15.211v96.35c0,0.02,0.003,0.038,0.003,0.058v42.972   c0,0.02-0.003,0.038-0.003,0.058v62.64c0,4.142,3.357,7.5,7.5,7.5h86.538c4.143,0,7.5-3.358,7.5-7.5v-46.973   c0-0.033,0.005-0.064,0.005-0.097v-58.66c0-4.142-3.357-7.5-7.5-7.5h-3.729v-24.994c0-1.68,0.824-3.254,2.204-4.211l98.021-67.96   c5.26-3.647,8.4-9.646,8.4-16.046V205.42C462.647,201.278,459.29,197.92,455.147,197.92z M350.247,497h-71.538v-39.512   c0-0.02,0.003-0.038,0.003-0.058v-8.07h71.535V497z M350.252,434.36h-71.54v-28.088h67.811c0.013,0,0.026-0.002,0.039-0.002h3.69   V434.36z M447.65,278.059h-0.003c0,1.483-0.728,2.874-1.947,3.719l-98.021,67.961c-5.42,3.759-8.656,9.941-8.656,16.538v24.994   H278.71v-88.848c0-1.343,0.605-2.591,1.662-3.421l12.747-10.025l41.946-32.992l9.646,9.646c0.039,0.04,0.144,0.144,0.139,0.347   s-0.114,0.302-0.155,0.339l-30.83,27.931c-2.928,2.653-4.611,6.289-4.74,10.238c-0.128,3.95,1.314,7.688,4.065,10.527l2.256,2.328   c3.924,4.053,9.41,6.377,15.053,6.377h5.362c7.062,0,13.884-2.097,19.729-6.064l66.638-45.241   c5.359-3.639,8.559-9.677,8.559-16.154v-42.51c0-0.457,0.371-0.828,0.828-0.828h16.035V278.059z\"></path>	</g></g><g>	<g>		<path d=\"M256.002,0c-55.95,0-102.985,41.857-109.407,97.364c-0.476,4.115,2.474,7.836,6.588,8.313   c4.12,0.482,7.836-2.474,8.313-6.588C167.042,51.15,207.671,15,256.002,15c52.466,0,95.15,42.684,95.15,95.15   c0,41.507-26.532,77.917-66.021,90.603c-1.723,0.553-3.187,1.71-4.123,3.258l-25.006,41.333l-25.006-41.333   c-0.937-1.548-2.401-2.705-4.123-3.258c-33.804-10.859-58.561-39.313-64.609-74.259c-0.707-4.082-4.587-6.812-8.669-6.111   c-4.082,0.707-6.817,4.588-6.111,8.669c6.842,39.527,34.351,71.881,72.103,85.076l30,49.587c1.358,2.246,3.792,3.618,6.417,3.618   s5.059-1.372,6.417-3.618l29.999-49.587c44.219-15.453,73.732-56.883,73.732-103.978C366.152,49.413,316.739,0,256.002,0z\"></path>	</g></g><g>	<g>		<path d=\"M315.754,102.65h-10.565c-1.234-8.128-4.447-15.612-9.123-21.955l7.492-7.492c2.929-2.929,2.929-7.678,0-10.606   c-2.93-2.929-7.678-2.929-10.607,0l-7.491,7.491c-6.343-4.676-13.827-7.888-21.955-9.123V50.4c0-4.142-3.357-7.5-7.5-7.5   c-4.142,0-7.5,3.358-7.5,7.5v10.565c-8.128,1.234-15.612,4.447-21.955,9.123l-7.491-7.491c-2.929-2.929-7.678-2.929-10.606,0   c-2.929,2.929-2.929,7.678,0,10.606l7.491,7.491c-4.676,6.343-7.889,13.828-9.123,21.956c0,0-10.569,0-10.569,0   c-4.142,0-7.5,3.358-7.5,7.5c0,4.142,3.358,7.5,7.5,7.5h10.565c1.234,8.128,4.447,15.613,9.123,21.956l-7.491,7.491   c-2.929,2.929-2.929,7.678,0,10.606c1.464,1.464,3.384,2.197,5.303,2.197s3.839-0.732,5.303-2.197l7.491-7.491   c6.343,4.676,13.828,7.889,21.956,9.123V169.9c0,4.142,3.358,7.5,7.5,7.5c4.143,0,7.5-3.358,7.5-7.5v-10.565   c8.128-1.234,15.612-4.447,21.956-9.123l7.491,7.491c1.465,1.464,3.385,2.197,5.304,2.197c1.919,0,3.839-0.732,5.304-2.197   c2.929-2.929,2.929-7.678,0-10.606l-7.491-7.491c4.676-6.343,7.889-13.828,9.123-21.956h10.565c4.143,0,7.5-3.358,7.5-7.5   C323.254,106.008,319.897,102.65,315.754,102.65z M290.751,110.164c-0.007,19.151-15.586,34.731-34.738,34.738   c-0.004,0-0.009-0.001-0.013-0.001c-0.004,0-0.009,0.001-0.013,0.001c-19.151-0.007-34.731-15.586-34.738-34.738   c0-0.004,0.001-0.009,0.001-0.013c0-0.004-0.001-0.008-0.001-0.013c0.009-19.154,15.592-34.735,34.746-34.738   c0.002,0,0.004,0,0.006,0s0.004,0,0.006,0c19.155,0.004,34.737,15.584,34.744,34.738c0,0.004-0.001,0.008-0.001,0.013   C290.75,110.155,290.751,110.16,290.751,110.164z\"></path>	</g></g><g>	<g>		<path d=\"M256.002,85.119c-13.802,0-25.032,11.229-25.032,25.031c0,13.803,11.229,25.032,25.032,25.032   c13.803,0,25.031-11.229,25.031-25.031C281.033,96.348,269.804,85.119,256.002,85.119z M256.002,120.182   c-5.532,0-10.032-4.5-10.032-10.031c0-5.532,4.5-10.032,10.032-10.032c5.531,0,10.031,4.5,10.031,10.032   C266.033,115.682,261.533,120.182,256.002,120.182z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>							\n												<h5>\n													Goal Setting												</h5>\n											<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Relationship Improvement												</h5>\n											<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Skill Development												</h5>\n											<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Tailored Approaches												</h5>\n											<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.</p>										\n		Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:28:22', '2026-06-17 10:28:22', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=524', 0, 'revision', '', 0),
(525, 1, '2026-06-17 10:28:48', '2026-06-17 10:28:48', '', 'employee-benefit_9888459', '', 'inherit', 'closed', 'closed', '', 'employee-benefit_9888459', '', '', '2026-06-17 10:28:48', '2026-06-17 10:28:48', '', 14, 'https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/employee-benefit_9888459.svg', 0, 'attachment', 'image/svg+xml', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(526, 1, '2026-06-17 10:28:53', '2026-06-17 10:28:53', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />																<h2>Psychotherapy</h2>		<ul style=\"margin-left: 18px;\">\n 	<li>Individual therapy</li>\n 	<li>Couples/marriage therapy</li>\n 	<li>Family therapy</li>\n 	<li>Child/teen therapy</li>\n 	<li>Online therapy</li>\n 	<li>COMMON SPECIALTIES &amp; approaches</li>\n 	<li>Anxiety therapy</li>\n 	<li>Cognitive behavioral therapy (CBT)</li>\n 	<li>Depression counseling</li>\n 	<li>Dialectical behavior therapy (DBT)</li>\n 	<li>Grief &amp; loss counseling</li>\n 	<li>Relational therapy</li>\n</ul>			<h3>Therapy can be highly beneficial for mental health for several reasons:</h3>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 64 64.1999969\" width=\"512\"><path d=\"m51.2529297 42.0226555c.6357422-.6357422.9863281-1.4804688.9863281-2.3808594 0-.8994141-.3500977-1.7441406-.9863281-2.3808594-1.3125-1.3125-3.4492188-1.3125-4.7617188 0l-9.3178711 9.3173828c-.7426758.7441406-1.1518555 1.7314453-1.1518555 2.7822266v11.6396484c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-5.109375l11.5913086-11.5917969c.1875-.1875.2929688-.4414062.2929688-.7070312v-11.5488281c0-2.0097656-1.6347656-3.6445312-3.6445312-3.6445312s-3.6450195 1.6347656-3.6450195 3.6445312v8.6582031l-4.2260742 4.2255859c-.1459961.1455078-.3828125.1435547-.527832 0-.1455078-.1455078-.1455078-.3818359 0-.5273438zm-3.7910156 4.3183594c.9243164.9248047 2.4306641.9267578 3.355957 0l4.519043-4.5185547c.1875-.1875.2929688-.4414062.2929688-.7070312v-9.0722656c0-.9072266.737793-1.6445312 1.6450195-1.6445312.9067383 0 1.6445312.7373047 1.6445312 1.6445312v11.1347656l-11.5913086 11.5917968c-.1875.1875-.2929688.4414062-.2929688.7070312v4.5234375h-9.0136719v-10.6396484c0-.5166016.2011719-1.0029297.5664062-1.3681641l9.3173828-9.3173828c.5332031-.5332031 1.4008789-.5332031 1.9331055 0 .2583008.2587891.4008789.6015625.4008789.9667969s-.1420898.7089844-.4003906.9667969l-2.3769531 2.3769531c-.9252929.9248047-.9252929 2.4306641.0000001 3.3554688z\"></path><path d=\"m6.7250977 28.398632c-2.0097656 0-3.6445312 1.6347656-3.6445312 3.6445312v11.5488281c0 .265625.1054688.5195312.2929688.7070312l11.5913086 11.5917969v5.109375c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-11.6396483c0-1.0507812-.4091797-2.0380859-1.1523438-2.7822266l-9.3173828-9.3173828c-1.3125-1.3125-3.4487305-1.3125-4.762207 0-.6357422.6367188-.9858398 1.4814453-.9858398 2.3808594 0 .9003906.3505859 1.7451172.9863281 2.3808594l2.3769531 2.3769531c.1455078.1455078.1455078.3818359 0 .5273438s-.3823242.1435547-.527832 0l-4.2260742-4.2255859v-8.6582031c-.0000002-2.0097657-1.6352541-3.6445314-3.6450197-3.6445314zm6.4570312 17.9423829c.925293.9267578 2.4316406.9257812 3.355957 0 .925293-.9248047.925293-2.4306641 0-3.3554688l-2.3769531-2.3769531c-.2583008-.2578125-.4003906-.6015625-.4003906-.9667969s.1425781-.7080078.4003906-.9667969c.5332031-.5332031 1.4003906-.5332031 1.9335938 0l9.3168945 9.3173828c.3657227.3652344.5668945.8515625.5668945 1.3681641v10.6396484h-9.0136719v-4.5234375c0-.265625-.1054688-.5195312-.2929688-.7070312l-11.5913085-11.5917969v-11.1347656c0-.9072266.737793-1.6445312 1.6445312-1.6445312.9072266 0 1.6450195.7373047 1.6450195 1.6445312v9.0722656c0 .265625.1054688.5195312.2929688.7070312z\"></path><path d=\"m32 2.0998046c-10.0986328 0-18.3144531 8.2158203-18.3144531 18.3144531s8.2158203 18.3144525 18.3144531 18.3144525 18.3144531-8.2158203 18.3144531-18.3144531-8.2158203-18.3144525-18.3144531-18.3144525zm0 2.0000003c7.614502 0 14.0088501 5.2510376 15.798584 12.3173819-3.1233521-2.2542105-8.8903809-3.70996-15.798584-3.70996s-12.6752319 1.4557495-15.798584 3.70996c1.7897339-7.0663443 8.184082-12.3173819 15.798584-12.3173819zm16.3144531 16.3144521c0 2.6992188-6.7001953 5.7070312-16.3144531 5.7070312s-16.3144531-3.0078125-16.3144531-5.7070312 6.7001953-5.7070302 16.3144531-5.7070302 16.3144531 3.0078115 16.3144531 5.7070302zm-16.3144531 16.3144532c-7.614502 0-14.0088501-5.2510376-15.798584-12.3173828 3.1233521 2.2542114 8.8903809 3.7099609 15.798584 3.7099609s12.6752319-1.4557495 15.798584-3.7099609c-1.7897339 7.0663452-8.184082 12.3173828-15.798584 12.3173828z\"></path></svg>							\n												<h5>\n													Safe Space												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"friendship-work\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><circle cx=\"72\" cy=\"102\" r=\"4\"></circle><circle cx=\"64\" cy=\"50\" r=\"4\"></circle><path d=\"m228 98h4v4c0 2.211 1.789 4 4 4s4-1.789 4-4v-4h4c2.211 0 4-1.789 4-4s-1.789-4-4-4h-4v-4c0-2.211-1.789-4-4-4s-4 1.789-4 4v4h-4c-2.211 0-4 1.789-4 4s1.789 4 4 4z\"></path><path d=\"m132 218h-16v-5.977c0-13.759-8.223-25.608-20-30.964v-35.059c0-.031-.017-.057-.018-.088 4.839-3.653 8.018-9.396 8.018-15.912 0-2.211-1.789-4-4-4h-30.707c-7.328 0-13.293 5.965-13.293 13.293v25.953c0 5.361 2.096 10.206 5.444 13.892-14.614 3.818-25.444 17.092-25.444 32.885v49.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-49.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v9.977c0 2.211 1.789 4 4 4h8v8h-20v-17.582c0-2.211-1.789-4-4-4s-4 1.789-4 4v21.582 24c0 2.211 1.789 4 4 4s4-1.789 4-4v-20h32c6.617 0 12-5.383 12-12s-5.383-12-12-12zm-68-78.707c0-2.918 2.375-5.293 5.293-5.293h26.023c-1.652 4.656-6.102 8-11.316 8h-20zm12.754 38.707c-7.031 0-12.754-5.723-12.754-12.754v-15.246h24v28zm55.246 56h-4v-8h4c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m56 210c-2.211 0-4 1.789-4 4v48c0 2.211 1.789 4 4 4s4-1.789 4-4v-48c0-2.211-1.789-4-4-4z\"></path><path d=\"m238.009 178.998c3.704-3.95 5.991-9.243 5.991-15.072v-9.926c0-11.027-8.973-20-20-20s-20 8.973-20 20v27.06c-11.777 5.355-20 17.205-20 30.964v45.976c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v45.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-15.99-11.1-29.402-25.991-33.025zm-26.009-.998v-24c0-6.617 5.383-12 12-12s12 5.383 12 12v9.926c0 7.762-6.312 14.074-14.074 14.074z\"></path><path d=\"m204 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m244 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m185.41 118.613c.102-.242.203-.488.301-.734 5.809-.832 10.289-5.844 10.289-11.879 0-1.206-.223-2.353-.555-3.452 10.229-11.777 15.466-22.512 15.466-31.899-.001-20.208-15.274-36.649-34.048-36.649-7.633 0-14.91 2.711-20.863 7.707-5.953-4.996-13.23-7.707-20.863-7.707-18.773 0-34.047 16.441-34.047 36.648 0 9.39 5.238 20.125 15.465 31.903-.333 1.098-.555 2.244-.555 3.449 0 6.035 4.48 11.047 10.289 11.879.098.246.199.488.301.73-3.516 4.699-3.141 11.406 1.125 15.672 4.27 4.27 10.98 4.633 15.672 1.129.242.102.488.203.734.301.832 5.809 5.844 10.289 11.879 10.289s11.047-4.48 11.879-10.289c.246-.098.492-.199.734-.301 4.688 3.504 11.398 3.141 15.672-1.129 4.262-4.261 4.641-10.965 1.125-15.668zm-50.273-76.613c6.707 0 13.09 2.82 17.965 7.945 1.516 1.586 4.281 1.586 5.797 0 4.874-5.125 11.257-7.945 17.964-7.945 14.363 0 26.047 12.852 26.047 28.648 0 6.991-4.298 15.714-12.379 25.343-1.433-.939-3.052-1.616-4.82-1.87-.098-.246-.199-.488-.301-.73 3.516-4.699 3.141-11.406-1.125-15.672-4.273-4.27-10.984-4.637-15.672-1.129-.242-.102-.488-.203-.734-.301-.832-5.809-5.844-10.289-11.879-10.289s-11.047 4.48-11.879 10.289c-.246.098-.492.199-.734.301-4.691-3.508-11.402-3.141-15.672 1.129-4.262 4.262-4.641 10.965-1.125 15.668-.102.242-.203.488-.301.734-1.769.253-3.387.931-4.821 1.87-8.079-9.625-12.378-18.35-12.378-25.343 0-15.796 11.683-28.648 26.047-28.648zm47.687 68c-1.77 0-3.328 1.16-3.832 2.855-.488 1.629-1.117 3.16-1.875 4.555-.848 1.562-.562 3.492.695 4.746l.812.812c1.562 1.559 1.562 4.098.004 5.656-1.562 1.566-4.098 1.559-5.66 0l-.82-.82c-1.254-1.254-3.18-1.535-4.73-.691-1.426.773-2.957 1.402-4.555 1.875-1.699.504-2.863 2.062-2.863 3.836v1.176c0 2.207-1.793 4-4 4s-4-1.793-4-4v-1.176c0-1.773-1.164-3.332-2.863-3.836-1.598-.473-3.129-1.102-4.555-1.875-.598-.324-1.254-.48-1.902-.48-1.035 0-2.059.402-2.828 1.172l-.82.82c-1.559 1.559-4.094 1.566-5.66 0-1.559-1.559-1.559-4.098-.008-5.648l.824-.82c1.258-1.254 1.543-3.184.695-4.746-.758-1.395-1.387-2.926-1.875-4.555-.504-1.695-2.062-2.855-3.832-2.855h-1.176c-2.207 0-4-1.793-4-4s1.793-4 4-4h1.176c1.77 0 3.328-1.16 3.832-2.855.488-1.629 1.117-3.16 1.875-4.555.848-1.562.562-3.492-.695-4.746l-.812-.812c-1.562-1.559-1.562-4.098-.004-5.656 1.57-1.562 4.105-1.559 5.66 0l.82.82c1.25 1.25 3.18 1.531 4.73.691 1.426-.773 2.957-1.402 4.555-1.875 1.699-.504 2.863-2.062 2.863-3.836v-1.177c0-2.207 1.793-4 4-4s4 1.793 4 4v1.176c0 1.773 1.164 3.332 2.863 3.836 1.598.473 3.129 1.102 4.555 1.875 1.555.844 3.48.562 4.73-.691l.82-.82c1.562-1.559 4.098-1.566 5.66 0 1.559 1.559 1.559 4.098.008 5.648l-.824.82c-1.258 1.254-1.543 3.184-.695 4.746.758 1.395 1.387 2.926 1.875 4.555.504 1.695 2.062 2.855 3.832 2.855h1.176c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m156 90c-8.824 0-16 7.176-16 16s7.176 16 16 16 16-7.176 16-16-7.176-16-16-16zm0 24c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path></g></svg>							\n												<h5>\n													Emotional Support												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m206.102 400.162c-46.373 0-92.751-17.652-128.056-52.957-34.207-34.208-53.046-79.687-53.046-128.061s18.839-93.853 53.046-128.06c70.615-70.615 185.512-70.605 256.117 0 70.614 70.614 70.614 185.507 0 256.121-35.305 35.305-81.683 52.957-128.061 52.957zm0-346.791c-42.47 0-84.94 16.167-117.271 48.498-64.665 64.666-64.665 169.885 0 234.551 64.666 64.666 169.891 64.661 234.547 0 31.328-31.328 48.578-72.978 48.578-117.276 0-44.297-17.25-85.947-48.578-117.275-32.33-32.331-74.801-48.498-117.276-48.498z\"></path><path d=\"m206.102 357.901c-37.063 0-71.905-14.435-98.109-40.643-54.098-54.1-54.098-142.128 0-196.227 54.1-54.1 142.124-54.09 196.223 0 54.1 54.099 54.1 142.128 0 196.227-26.208 26.208-61.051 40.643-98.114 40.643zm0-262.194c-31.626 0-63.25 12.036-87.324 36.109-48.151 48.156-48.151 126.502 0 174.657 23.323 23.328 54.338 36.174 87.324 36.174s64.001-12.845 87.329-36.174c48.151-48.156 48.151-126.502 0-174.657-24.078-24.073-55.703-36.109-87.329-36.109z\"></path><path d=\"m297.428 421.907c-8.813 0-17.618-3.352-24.326-10.061-2.978-2.978-2.978-7.805 0-10.785 2.98-2.98 7.806-2.98 10.786 0 7.468 7.468 19.619 7.468 27.087 0l77.045-77.05c3.615-3.62 5.606-8.427 5.606-13.54 0-5.115-1.991-9.921-5.606-13.541-2.979-2.98-2.979-7.805 0-10.785 2.98-2.979 7.806-2.979 10.785 0 13.412 13.412 13.412 35.241 0 48.652l-77.045 77.05c-6.709 6.707-15.523 10.06-24.332 10.06z\"></path><path d=\"m402.881 461.874c-12.275 0-23.809-4.783-32.489-13.462l-47.992-47.991c-2.979-2.98-2.979-7.805 0-10.785l54.194-54.193c2.979-2.979 7.805-2.979 10.785 0l47.992 47.991c8.679 8.68 13.461 20.215 13.461 32.49s-4.782 23.809-13.461 32.489c-8.68 8.679-20.216 13.461-32.49 13.461zm-64.303-66.846 42.599 42.599c11.967 11.967 31.442 11.967 43.408 0 11.968-11.968 11.968-31.442 0-43.408l-42.599-42.6z\"></path><path d=\"m467.373 461.874h-355.566c-4.211 0-7.627-3.417-7.627-7.628s3.416-7.627 7.627-7.627h355.566c4.211 0 7.627 3.416 7.627 7.627s-3.416 7.628-7.627 7.628z\"></path><path d=\"m401.258 421.926c-1.951 0-3.904-.744-5.392-2.234l-21.675-21.679c-2.98-2.979-2.98-7.806 0-10.786 2.979-2.979 7.805-2.979 10.785 0l21.675 21.68c2.98 2.979 2.98 7.805 0 10.785-1.491 1.489-3.442 2.234-5.393 2.234z\"></path><path d=\"m206.102 305.102c-.814 0-1.628-.129-2.413-.392-3.814-1.272-41.556-24.446-49.383-62.342-6.668-32.305 9.048-65.739 46.716-99.385 2.89-2.583 7.269-2.583 10.16 0 37.668 33.641 53.384 67.079 46.715 99.38-7.826 37.897-45.569 61.076-49.383 62.347-.783.263-1.598.392-2.412.392zm0-146.07c-27.603 26.133-40.27 51.358-37.674 75.049 3.138 28.626 28.11 47.967 37.674 54.392 9.564-6.426 34.541-25.762 37.679-54.392 2.597-23.691-10.075-48.916-37.679-75.049z\"></path><path d=\"m212.691 305.102c-3.48 0-5.675-.164-6.082-.198-2.652-.224-5.001-1.813-6.192-4.192-.029-.06-.243-.501-.268-.561-1.658-3.541-.373-7.757 2.979-9.768 10.835-6.515 63.212-41.869 30.112-98.402-1.073-1.832-1.331-4.027-.715-6.062.615-2.031 2.045-3.715 3.957-4.648 14.42-7.027 32.256-12.021 53.007-14.842 3.889-.571 7.478 1.927 8.427 5.685 11.51 45.499 7.364 80.353-12.324 103.586-22.525 26.577-58.58 29.402-72.901 29.402zm37.744-113.333c22.007 44.953-.696 78.336-19.848 96.52 13.933-2.384 31.348-8.268 43.364-22.45 15.403-18.178 19.019-46.169 10.775-83.267-12.915 2.146-24.4 5.225-34.291 9.197z\"></path><path d=\"m199.553 305.102c-14.291 0-50.42-2.82-72.944-29.416-19.678-23.233-23.824-58.082-12.314-103.571.948-3.758 4.509-6.256 8.422-5.685 20.756 2.821 38.592 7.816 53.012 14.842 1.912.933 3.342 2.617 3.958 4.648.615 2.035.358 4.23-.715 6.062-33.1 56.533 19.276 91.887 30.111 98.402 3.392 2.036 4.662 6.332 2.925 9.887-1.182 2.413-3.734 4.409-6.411 4.633-.408.035-2.589.198-6.044.198zm-72.07-122.529c-8.243 37.088-4.633 65.079 10.765 83.257 12.007 14.177 29.426 20.066 43.364 22.45-19.147-18.184-41.849-51.562-19.837-96.51-9.892-3.973-21.371-7.052-34.292-9.197z\"></path><path d=\"m205.154 304.547c-4.211 0-7.627-3.417-7.627-7.628v-71.533c0-4.211 3.416-7.627 7.627-7.627s7.628 3.416 7.628 7.627v71.533c-.001 4.211-3.417 7.628-7.628 7.628z\"></path></g></svg>							\n												<h5>\n													Self-Exploration												</h5>\n											<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m295.544 178.256a6.741 6.741 0 0 0 -3.689-3.623 6.718 6.718 0 0 0 -8.727 3.475c-.058.16-.123.319-.193.475a6.715 6.715 0 0 0 3.572 8.482q.238.087.473.192a6.789 6.789 0 0 0 8.569-9zm4.657-15.648a21.3 21.3 0 0 1 -18.927 38.018l-.027-.012a21.345 21.345 0 0 1 -11.856-27.305 7.1 7.1 0 0 1 .358-.879 21.238 21.238 0 0 1 11.277-11.14 21.465 21.465 0 0 1 4.89-1.409 108.471 108.471 0 0 1 110.169-79.395l-7.5-9.84a7.256 7.256 0 0 1 11.533-8.807l18.139 23.785a7.255 7.255 0 0 1 -1.364 10.17l-23.793 18.138a7.256 7.256 0 0 1 -8.8-11.532l9.821-7.488a94.123 94.123 0 0 0 -93.917 67.7zm-136.607 130.062c-1.181-.462-2.53-.937-4.2-1.439-1.749-.526-3.761-1.034-5.893-1.571-2.249-.568-4.622-1.167-6.887-1.817a81.221 81.221 0 0 1 -7.736-2.626 52.681 52.681 0 0 1 -7.96-3.915 57.093 57.093 0 0 1 -5.122-3.558 19.314 19.314 0 0 1 -2.1 3.175 29.979 29.979 0 0 1 -4.78 4.617c-1.583 1.254-3.581 2.64-5.787 4.091-1.069.7-2 1.305-2.835 1.842v15.331a30.06 30.06 0 0 0 7.975 20.595 25.087 25.087 0 0 0 37.345 0 30.056 30.056 0 0 0 7.976-20.595v-14.13zm-3.794 117.75q-.863.314-1.737.606a66.691 66.691 0 0 1 -42.171 0q-.874-.292-1.736-.606 8.1 16.046 22.822 31.483 14.722-15.438 22.822-31.483zm-44.516-66.689-1.446 6.36a26.013 26.013 0 0 1 -8.247 14.073q-.63.554-1.295 1.069a86.352 86.352 0 0 0 2.3 24.838 49.4 49.4 0 0 0 13.842 7.2 53.4 53.4 0 0 0 33.079 0 49.4 49.4 0 0 0 13.842-7.2 86.282 86.282 0 0 0 2.3-24.786q-.7-.539-1.362-1.121a26.01 26.01 0 0 1 -8.247-14.073l-1.446-6.36a39.133 39.133 0 0 1 -43.323 0zm102.131 19.247c21.553 5.007 34.482 13.526 35.172 45.641v.142h.028v79.966a7.273 7.273 0 0 1 -7.272 7.273h-216.795a7.273 7.273 0 0 1 -7.273-7.273v-79.966a7.309 7.309 0 0 1 .049-.842c.911-33.257 15.2-40.822 38.733-45.728.5-7.586 1.773-17.265 3.2-28.09 2.421-18.4 5.3-40.261 5.3-60.319a67.9 67.9 0 0 1 19.627-47.875 66.563 66.563 0 0 1 94.957 0 67.889 67.889 0 0 1 19.627 47.875c0 22.494 5.342 45.587 9.591 63.955 2.279 9.851 4.261 18.419 5.062 25.241zm-46.7-31.379a44.85 44.85 0 0 0 7.42-24.8v-18.92a7.275 7.275 0 0 0 -4.889-6.873c-1.2-.525-2.455-1.065-4.1-1.717-1.832-.726-3.692-1.4-5.606-1.978-2.014-.606-4.2-1.158-6.517-1.742-2.01-.507-4.13-1.042-6.433-1.7-2.252-.647-4.44-1.344-6.372-2.113a37.981 37.981 0 0 1 -5.745-2.837 66.527 66.527 0 0 1 -8.659-6.687c-.68-.593-.82-.722-1.072-.939l.012-.014a14.573 14.573 0 0 0 -4.812-3.1c-6.5-2.195-9.224.041-10.259 6.5a21.51 21.51 0 0 0 -.208 2.607 14.785 14.785 0 0 1 -.37 3.3 3.848 3.848 0 0 1 -.715 1.241 16.145 16.145 0 0 1 -2.507 2.344c-1.423 1.129-3.022 2.244-4.707 3.353-1.127.741-3.346 2.131-5.627 3.557a7.274 7.274 0 0 0 -3.8 6.392v19.327a44.847 44.847 0 0 0 7.42 24.8l-3.479 15.309a11.711 11.711 0 0 1 -3.7 6.345 18.2 18.2 0 0 1 -8.506 3.875c-3.592.726-8.189 1.542-12.649 2.326.575-6.608 1.632-14.641 2.8-23.479 2.5-19 5.467-41.557 5.467-62.194a53.45 53.45 0 0 1 15.423-37.7 52.155 52.155 0 0 1 74.275 0 53.45 53.45 0 0 1 15.423 37.7c0 24.013 5.564 48.064 9.989 67.193 1.675 7.243 3.177 13.738 4.1 19.051l-2.054-.362c-4.821-.846-9.929-1.744-13.842-2.535a18.2 18.2 0 0 1 -8.506-3.875 11.711 11.711 0 0 1 -3.7-6.345l-3.482-15.31zm-41.01 149.856h-45.614a7.289 7.289 0 0 0 -.715-1.2 26.958 26.958 0 0 1 -5.261-16.38q0-9.969 5.972-22.523a7.256 7.256 0 0 0 -13.125-6.193q-7.392 15.54-7.393 28.716a41.569 41.569 0 0 0 3.738 17.583h-31.487v-72.697c0-.137 0-.274-.012-.41.791-27.416 16-30.094 40.333-34.368 3.862-.679 7.947-1.4 13.53-2.518a102.527 102.527 0 0 0 9.229 40.627q10.013 22.326 30.808 43.123v26.24zm14.545-26.241q20.795-20.795 30.808-43.121a102.527 102.527 0 0 0 9.226-40.616c5.55 1.115 9.617 1.83 13.466 2.506 24.453 4.3 39.695 6.976 40.344 34.778h-.024v72.694h-31.422a41.554 41.554 0 0 0 3.738-17.583q0-13.176-7.392-28.716a7.256 7.256 0 1 0 -13.125 6.193q5.971 12.554 5.972 22.523a26.959 26.959 0 0 1 -5.262 16.38 7.359 7.359 0 0 0 -.715 1.2h-45.614zm314.57-424.669a17.825 17.825 0 0 1 12.368 4.889 15.841 15.841 0 0 1 4.992 11.445v162.839a15.841 15.841 0 0 1 -4.992 11.445 17.821 17.821 0 0 1 -12.368 4.889h-92.395a7.234 7.234 0 0 0 -3.9 1.136l-22.385 12.384q-.276.151-.532.323l-36.3 20.086v-26.656a7.273 7.273 0 0 0 -7.273-7.273h-55.544a17.824 17.824 0 0 1 -12.368-4.889 15.844 15.844 0 0 1 -4.991-11.445v-162.839a15.842 15.842 0 0 1 4.991-11.445 17.829 17.829 0 0 1 12.368-4.889zm-218.329-14.545h218.329a32.378 32.378 0 0 1 22.425 8.979 30.272 30.272 0 0 1 9.48 21.9v162.839a30.268 30.268 0 0 1 -9.48 21.9 32.375 32.375 0 0 1 -22.425 8.98h-90.544l-21.149 11.7q-.257.141-.518.259l-47.084 26.051a7.236 7.236 0 0 1 -10.73-6.335h-.037v-31.673h-48.267a32.378 32.378 0 0 1 -22.425-8.98 30.272 30.272 0 0 1 -9.48-21.9v-162.841a30.268 30.268 0 0 1 9.48-21.9 32.378 32.378 0 0 1 22.425-8.979zm53.254 72.778-10.193-10.192 10.193-10.193a7.272 7.272 0 0 0 -10.285-10.284l-10.192 10.191-10.192-10.19a7.272 7.272 0 0 0 -10.284 10.284l10.192 10.192-10.192 10.191a7.272 7.272 0 0 0 10.284 10.284l10.192-10.191 10.192 10.192a7.272 7.272 0 0 0 10.285-10.284zm123.469 89.042-10.192-10.192 10.192-10.193a7.272 7.272 0 0 0 -10.284-10.284l-10.192 10.192-10.192-10.191a7.272 7.272 0 1 0 -10.284 10.284l10.192 10.192-10.192 10.191a7.272 7.272 0 1 0 10.284 10.281l10.192-10.191 10.192 10.191a7.272 7.272 0 0 0 10.284-10.284z\" fill-rule=\"evenodd\"></path></svg>							\n												<h5>\n													Coping Strategies												</h5>\n											<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M248.298,398.776v-96.35c0-5.971-2.694-11.517-7.393-15.216l-59.928-47.132c-2.984-2.348-7.254-2.094-9.939,0.592   l-14.349,14.349c-2.986,2.985-4.637,7.118-4.53,11.338c0.106,4.215,1.961,8.252,5.079,11.069l30.406,27.556l-1.867,1.93   c-1.111,1.149-2.665,1.808-4.265,1.808h-5.366c-4.046,0-7.953-1.201-11.299-3.474l-66.646-45.245   c-1.237-0.838-1.976-2.237-1.976-3.742v-42.516c0-8.724-7.102-15.821-15.832-15.821h-23.54c-4.142,0-7.5,3.358-7.5,7.5v72.637   c0,6.404,3.145,12.405,8.408,16.048l46.124,31.979c3.404,2.359,8.077,1.513,10.437-1.89c2.36-3.404,1.514-8.077-1.89-10.437   l-46.128-31.982c-1.222-0.846-1.951-2.235-1.951-3.718v-65.137h16.039c0.458,0,0.832,0.368,0.832,0.821v42.516   c0,6.486,3.2,12.526,8.556,16.155l66.64,45.241c5.84,3.967,12.661,6.064,19.726,6.064h5.366c5.643,0,11.128-2.326,15.047-6.38   l2.254-2.331c2.749-2.837,4.193-6.572,4.066-10.518c-0.127-3.948-1.811-7.585-4.741-10.242l-30.836-27.946   c-0.039-0.036-0.143-0.129-0.148-0.327c-0.005-0.206,0.101-0.312,0.141-0.352l9.642-9.642l54.693,43.015   c1.061,0.834,1.668,2.084,1.668,3.427v88.844h-60.32v-24.995c0-6.607-3.24-12.792-8.658-16.538l-27.532-19.089   c-3.405-2.36-8.077-1.514-10.437,1.89s-1.514,8.077,1.89,10.437l27.541,19.095c1.375,0.951,2.196,2.522,2.196,4.205v24.995h-3.726   c-4.142,0-7.5,3.358-7.5,7.5v58.66c0,0.033,0.004,0.064,0.005,0.097V504.5c0,4.142,3.358,7.5,7.5,7.5h25.971   c4.142,0,7.5-3.358,7.5-7.5c0-4.142-3.358-7.5-7.5-7.5h-18.471v-47.64h71.535v8.07c0,0.016,0.002,0.032,0.002,0.048V497h-23.519   c-4.142,0-7.5,3.358-7.5,7.5c0,4.142,3.358,7.5,7.5,7.5h31.019c4.142,0,7.5-3.358,7.5-7.5v-62.64c0-0.016-0.002-0.032-0.002-0.048   v-42.92C248.293,398.853,248.298,398.815,248.298,398.776z M233.292,434.359h-71.54V406.27h3.62c0.036,0,0.07,0.005,0.106,0.005   h67.814V434.359z\"></path>	</g></g><g>	<g>		<path d=\"M455.147,197.92h-23.535c-8.728,0-15.828,7.101-15.828,15.828v42.51c0,1.501-0.742,2.9-1.984,3.744l-66.637,45.24   c-3.349,2.273-7.258,3.475-11.304,3.475h-5.362c-1.604,0-3.162-0.66-4.279-1.813l-1.862-1.922l30.408-27.549   c3.125-2.831,4.977-6.871,5.08-11.085c0.104-4.215-1.546-8.342-4.526-11.324l-14.354-14.354c-2.687-2.686-6.956-2.939-9.94-0.592   l-47.179,37.107l-12.747,10.025c-4.695,3.693-7.389,9.238-7.389,15.211v96.35c0,0.02,0.003,0.038,0.003,0.058v42.972   c0,0.02-0.003,0.038-0.003,0.058v62.64c0,4.142,3.357,7.5,7.5,7.5h86.538c4.143,0,7.5-3.358,7.5-7.5v-46.973   c0-0.033,0.005-0.064,0.005-0.097v-58.66c0-4.142-3.357-7.5-7.5-7.5h-3.729v-24.994c0-1.68,0.824-3.254,2.204-4.211l98.021-67.96   c5.26-3.647,8.4-9.646,8.4-16.046V205.42C462.647,201.278,459.29,197.92,455.147,197.92z M350.247,497h-71.538v-39.512   c0-0.02,0.003-0.038,0.003-0.058v-8.07h71.535V497z M350.252,434.36h-71.54v-28.088h67.811c0.013,0,0.026-0.002,0.039-0.002h3.69   V434.36z M447.65,278.059h-0.003c0,1.483-0.728,2.874-1.947,3.719l-98.021,67.961c-5.42,3.759-8.656,9.941-8.656,16.538v24.994   H278.71v-88.848c0-1.343,0.605-2.591,1.662-3.421l12.747-10.025l41.946-32.992l9.646,9.646c0.039,0.04,0.144,0.144,0.139,0.347   s-0.114,0.302-0.155,0.339l-30.83,27.931c-2.928,2.653-4.611,6.289-4.74,10.238c-0.128,3.95,1.314,7.688,4.065,10.527l2.256,2.328   c3.924,4.053,9.41,6.377,15.053,6.377h5.362c7.062,0,13.884-2.097,19.729-6.064l66.638-45.241   c5.359-3.639,8.559-9.677,8.559-16.154v-42.51c0-0.457,0.371-0.828,0.828-0.828h16.035V278.059z\"></path>	</g></g><g>	<g>		<path d=\"M256.002,0c-55.95,0-102.985,41.857-109.407,97.364c-0.476,4.115,2.474,7.836,6.588,8.313   c4.12,0.482,7.836-2.474,8.313-6.588C167.042,51.15,207.671,15,256.002,15c52.466,0,95.15,42.684,95.15,95.15   c0,41.507-26.532,77.917-66.021,90.603c-1.723,0.553-3.187,1.71-4.123,3.258l-25.006,41.333l-25.006-41.333   c-0.937-1.548-2.401-2.705-4.123-3.258c-33.804-10.859-58.561-39.313-64.609-74.259c-0.707-4.082-4.587-6.812-8.669-6.111   c-4.082,0.707-6.817,4.588-6.111,8.669c6.842,39.527,34.351,71.881,72.103,85.076l30,49.587c1.358,2.246,3.792,3.618,6.417,3.618   s5.059-1.372,6.417-3.618l29.999-49.587c44.219-15.453,73.732-56.883,73.732-103.978C366.152,49.413,316.739,0,256.002,0z\"></path>	</g></g><g>	<g>		<path d=\"M315.754,102.65h-10.565c-1.234-8.128-4.447-15.612-9.123-21.955l7.492-7.492c2.929-2.929,2.929-7.678,0-10.606   c-2.93-2.929-7.678-2.929-10.607,0l-7.491,7.491c-6.343-4.676-13.827-7.888-21.955-9.123V50.4c0-4.142-3.357-7.5-7.5-7.5   c-4.142,0-7.5,3.358-7.5,7.5v10.565c-8.128,1.234-15.612,4.447-21.955,9.123l-7.491-7.491c-2.929-2.929-7.678-2.929-10.606,0   c-2.929,2.929-2.929,7.678,0,10.606l7.491,7.491c-4.676,6.343-7.889,13.828-9.123,21.956c0,0-10.569,0-10.569,0   c-4.142,0-7.5,3.358-7.5,7.5c0,4.142,3.358,7.5,7.5,7.5h10.565c1.234,8.128,4.447,15.613,9.123,21.956l-7.491,7.491   c-2.929,2.929-2.929,7.678,0,10.606c1.464,1.464,3.384,2.197,5.303,2.197s3.839-0.732,5.303-2.197l7.491-7.491   c6.343,4.676,13.828,7.889,21.956,9.123V169.9c0,4.142,3.358,7.5,7.5,7.5c4.143,0,7.5-3.358,7.5-7.5v-10.565   c8.128-1.234,15.612-4.447,21.956-9.123l7.491,7.491c1.465,1.464,3.385,2.197,5.304,2.197c1.919,0,3.839-0.732,5.304-2.197   c2.929-2.929,2.929-7.678,0-10.606l-7.491-7.491c4.676-6.343,7.889-13.828,9.123-21.956h10.565c4.143,0,7.5-3.358,7.5-7.5   C323.254,106.008,319.897,102.65,315.754,102.65z M290.751,110.164c-0.007,19.151-15.586,34.731-34.738,34.738   c-0.004,0-0.009-0.001-0.013-0.001c-0.004,0-0.009,0.001-0.013,0.001c-19.151-0.007-34.731-15.586-34.738-34.738   c0-0.004,0.001-0.009,0.001-0.013c0-0.004-0.001-0.008-0.001-0.013c0.009-19.154,15.592-34.735,34.746-34.738   c0.002,0,0.004,0,0.006,0s0.004,0,0.006,0c19.155,0.004,34.737,15.584,34.744,34.738c0,0.004-0.001,0.008-0.001,0.013   C290.75,110.155,290.751,110.16,290.751,110.164z\"></path>	</g></g><g>	<g>		<path d=\"M256.002,85.119c-13.802,0-25.032,11.229-25.032,25.031c0,13.803,11.229,25.032,25.032,25.032   c13.803,0,25.031-11.229,25.031-25.031C281.033,96.348,269.804,85.119,256.002,85.119z M256.002,120.182   c-5.532,0-10.032-4.5-10.032-10.031c0-5.532,4.5-10.032,10.032-10.032c5.531,0,10.031,4.5,10.031,10.032   C266.033,115.682,261.533,120.182,256.002,120.182z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>							\n												<h5>\n													Goal Setting												</h5>\n											<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Relationship Improvement												</h5>\n											<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Skill Development												</h5>\n											<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Tailored Approaches												</h5>\n											<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.</p>										\n		Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:28:53', '2026-06-17 10:28:53', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=526', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(527, 1, '2026-06-17 10:28:53', '2026-06-17 10:28:53', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />																<h2>Psychotherapy</h2>		<ul style=\"margin-left: 18px;\">\n 	<li>Individual therapy</li>\n 	<li>Couples/marriage therapy</li>\n 	<li>Family therapy</li>\n 	<li>Child/teen therapy</li>\n 	<li>Online therapy</li>\n 	<li>COMMON SPECIALTIES &amp; approaches</li>\n 	<li>Anxiety therapy</li>\n 	<li>Cognitive behavioral therapy (CBT)</li>\n 	<li>Depression counseling</li>\n 	<li>Dialectical behavior therapy (DBT)</li>\n 	<li>Grief &amp; loss counseling</li>\n 	<li>Relational therapy</li>\n</ul>			<h3>Therapy can be highly beneficial for mental health for several reasons:</h3>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 64 64.1999969\" width=\"512\"><path d=\"m51.2529297 42.0226555c.6357422-.6357422.9863281-1.4804688.9863281-2.3808594 0-.8994141-.3500977-1.7441406-.9863281-2.3808594-1.3125-1.3125-3.4492188-1.3125-4.7617188 0l-9.3178711 9.3173828c-.7426758.7441406-1.1518555 1.7314453-1.1518555 2.7822266v11.6396484c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-5.109375l11.5913086-11.5917969c.1875-.1875.2929688-.4414062.2929688-.7070312v-11.5488281c0-2.0097656-1.6347656-3.6445312-3.6445312-3.6445312s-3.6450195 1.6347656-3.6450195 3.6445312v8.6582031l-4.2260742 4.2255859c-.1459961.1455078-.3828125.1435547-.527832 0-.1455078-.1455078-.1455078-.3818359 0-.5273438zm-3.7910156 4.3183594c.9243164.9248047 2.4306641.9267578 3.355957 0l4.519043-4.5185547c.1875-.1875.2929688-.4414062.2929688-.7070312v-9.0722656c0-.9072266.737793-1.6445312 1.6450195-1.6445312.9067383 0 1.6445312.7373047 1.6445312 1.6445312v11.1347656l-11.5913086 11.5917968c-.1875.1875-.2929688.4414062-.2929688.7070312v4.5234375h-9.0136719v-10.6396484c0-.5166016.2011719-1.0029297.5664062-1.3681641l9.3173828-9.3173828c.5332031-.5332031 1.4008789-.5332031 1.9331055 0 .2583008.2587891.4008789.6015625.4008789.9667969s-.1420898.7089844-.4003906.9667969l-2.3769531 2.3769531c-.9252929.9248047-.9252929 2.4306641.0000001 3.3554688z\"></path><path d=\"m6.7250977 28.398632c-2.0097656 0-3.6445312 1.6347656-3.6445312 3.6445312v11.5488281c0 .265625.1054688.5195312.2929688.7070312l11.5913086 11.5917969v5.109375c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-11.6396483c0-1.0507812-.4091797-2.0380859-1.1523438-2.7822266l-9.3173828-9.3173828c-1.3125-1.3125-3.4487305-1.3125-4.762207 0-.6357422.6367188-.9858398 1.4814453-.9858398 2.3808594 0 .9003906.3505859 1.7451172.9863281 2.3808594l2.3769531 2.3769531c.1455078.1455078.1455078.3818359 0 .5273438s-.3823242.1435547-.527832 0l-4.2260742-4.2255859v-8.6582031c-.0000002-2.0097657-1.6352541-3.6445314-3.6450197-3.6445314zm6.4570312 17.9423829c.925293.9267578 2.4316406.9257812 3.355957 0 .925293-.9248047.925293-2.4306641 0-3.3554688l-2.3769531-2.3769531c-.2583008-.2578125-.4003906-.6015625-.4003906-.9667969s.1425781-.7080078.4003906-.9667969c.5332031-.5332031 1.4003906-.5332031 1.9335938 0l9.3168945 9.3173828c.3657227.3652344.5668945.8515625.5668945 1.3681641v10.6396484h-9.0136719v-4.5234375c0-.265625-.1054688-.5195312-.2929688-.7070312l-11.5913085-11.5917969v-11.1347656c0-.9072266.737793-1.6445312 1.6445312-1.6445312.9072266 0 1.6450195.7373047 1.6450195 1.6445312v9.0722656c0 .265625.1054688.5195312.2929688.7070312z\"></path><path d=\"m32 2.0998046c-10.0986328 0-18.3144531 8.2158203-18.3144531 18.3144531s8.2158203 18.3144525 18.3144531 18.3144525 18.3144531-8.2158203 18.3144531-18.3144531-8.2158203-18.3144525-18.3144531-18.3144525zm0 2.0000003c7.614502 0 14.0088501 5.2510376 15.798584 12.3173819-3.1233521-2.2542105-8.8903809-3.70996-15.798584-3.70996s-12.6752319 1.4557495-15.798584 3.70996c1.7897339-7.0663443 8.184082-12.3173819 15.798584-12.3173819zm16.3144531 16.3144521c0 2.6992188-6.7001953 5.7070312-16.3144531 5.7070312s-16.3144531-3.0078125-16.3144531-5.7070312 6.7001953-5.7070302 16.3144531-5.7070302 16.3144531 3.0078115 16.3144531 5.7070302zm-16.3144531 16.3144532c-7.614502 0-14.0088501-5.2510376-15.798584-12.3173828 3.1233521 2.2542114 8.8903809 3.7099609 15.798584 3.7099609s12.6752319-1.4557495 15.798584-3.7099609c-1.7897339 7.0663452-8.184082 12.3173828-15.798584 12.3173828z\"></path></svg>							\n												<h5>\n													Safe Space												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"friendship-work\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><circle cx=\"72\" cy=\"102\" r=\"4\"></circle><circle cx=\"64\" cy=\"50\" r=\"4\"></circle><path d=\"m228 98h4v4c0 2.211 1.789 4 4 4s4-1.789 4-4v-4h4c2.211 0 4-1.789 4-4s-1.789-4-4-4h-4v-4c0-2.211-1.789-4-4-4s-4 1.789-4 4v4h-4c-2.211 0-4 1.789-4 4s1.789 4 4 4z\"></path><path d=\"m132 218h-16v-5.977c0-13.759-8.223-25.608-20-30.964v-35.059c0-.031-.017-.057-.018-.088 4.839-3.653 8.018-9.396 8.018-15.912 0-2.211-1.789-4-4-4h-30.707c-7.328 0-13.293 5.965-13.293 13.293v25.953c0 5.361 2.096 10.206 5.444 13.892-14.614 3.818-25.444 17.092-25.444 32.885v49.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-49.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v9.977c0 2.211 1.789 4 4 4h8v8h-20v-17.582c0-2.211-1.789-4-4-4s-4 1.789-4 4v21.582 24c0 2.211 1.789 4 4 4s4-1.789 4-4v-20h32c6.617 0 12-5.383 12-12s-5.383-12-12-12zm-68-78.707c0-2.918 2.375-5.293 5.293-5.293h26.023c-1.652 4.656-6.102 8-11.316 8h-20zm12.754 38.707c-7.031 0-12.754-5.723-12.754-12.754v-15.246h24v28zm55.246 56h-4v-8h4c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m56 210c-2.211 0-4 1.789-4 4v48c0 2.211 1.789 4 4 4s4-1.789 4-4v-48c0-2.211-1.789-4-4-4z\"></path><path d=\"m238.009 178.998c3.704-3.95 5.991-9.243 5.991-15.072v-9.926c0-11.027-8.973-20-20-20s-20 8.973-20 20v27.06c-11.777 5.355-20 17.205-20 30.964v45.976c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v45.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-15.99-11.1-29.402-25.991-33.025zm-26.009-.998v-24c0-6.617 5.383-12 12-12s12 5.383 12 12v9.926c0 7.762-6.312 14.074-14.074 14.074z\"></path><path d=\"m204 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m244 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m185.41 118.613c.102-.242.203-.488.301-.734 5.809-.832 10.289-5.844 10.289-11.879 0-1.206-.223-2.353-.555-3.452 10.229-11.777 15.466-22.512 15.466-31.899-.001-20.208-15.274-36.649-34.048-36.649-7.633 0-14.91 2.711-20.863 7.707-5.953-4.996-13.23-7.707-20.863-7.707-18.773 0-34.047 16.441-34.047 36.648 0 9.39 5.238 20.125 15.465 31.903-.333 1.098-.555 2.244-.555 3.449 0 6.035 4.48 11.047 10.289 11.879.098.246.199.488.301.73-3.516 4.699-3.141 11.406 1.125 15.672 4.27 4.27 10.98 4.633 15.672 1.129.242.102.488.203.734.301.832 5.809 5.844 10.289 11.879 10.289s11.047-4.48 11.879-10.289c.246-.098.492-.199.734-.301 4.688 3.504 11.398 3.141 15.672-1.129 4.262-4.261 4.641-10.965 1.125-15.668zm-50.273-76.613c6.707 0 13.09 2.82 17.965 7.945 1.516 1.586 4.281 1.586 5.797 0 4.874-5.125 11.257-7.945 17.964-7.945 14.363 0 26.047 12.852 26.047 28.648 0 6.991-4.298 15.714-12.379 25.343-1.433-.939-3.052-1.616-4.82-1.87-.098-.246-.199-.488-.301-.73 3.516-4.699 3.141-11.406-1.125-15.672-4.273-4.27-10.984-4.637-15.672-1.129-.242-.102-.488-.203-.734-.301-.832-5.809-5.844-10.289-11.879-10.289s-11.047 4.48-11.879 10.289c-.246.098-.492.199-.734.301-4.691-3.508-11.402-3.141-15.672 1.129-4.262 4.262-4.641 10.965-1.125 15.668-.102.242-.203.488-.301.734-1.769.253-3.387.931-4.821 1.87-8.079-9.625-12.378-18.35-12.378-25.343 0-15.796 11.683-28.648 26.047-28.648zm47.687 68c-1.77 0-3.328 1.16-3.832 2.855-.488 1.629-1.117 3.16-1.875 4.555-.848 1.562-.562 3.492.695 4.746l.812.812c1.562 1.559 1.562 4.098.004 5.656-1.562 1.566-4.098 1.559-5.66 0l-.82-.82c-1.254-1.254-3.18-1.535-4.73-.691-1.426.773-2.957 1.402-4.555 1.875-1.699.504-2.863 2.062-2.863 3.836v1.176c0 2.207-1.793 4-4 4s-4-1.793-4-4v-1.176c0-1.773-1.164-3.332-2.863-3.836-1.598-.473-3.129-1.102-4.555-1.875-.598-.324-1.254-.48-1.902-.48-1.035 0-2.059.402-2.828 1.172l-.82.82c-1.559 1.559-4.094 1.566-5.66 0-1.559-1.559-1.559-4.098-.008-5.648l.824-.82c1.258-1.254 1.543-3.184.695-4.746-.758-1.395-1.387-2.926-1.875-4.555-.504-1.695-2.062-2.855-3.832-2.855h-1.176c-2.207 0-4-1.793-4-4s1.793-4 4-4h1.176c1.77 0 3.328-1.16 3.832-2.855.488-1.629 1.117-3.16 1.875-4.555.848-1.562.562-3.492-.695-4.746l-.812-.812c-1.562-1.559-1.562-4.098-.004-5.656 1.57-1.562 4.105-1.559 5.66 0l.82.82c1.25 1.25 3.18 1.531 4.73.691 1.426-.773 2.957-1.402 4.555-1.875 1.699-.504 2.863-2.062 2.863-3.836v-1.177c0-2.207 1.793-4 4-4s4 1.793 4 4v1.176c0 1.773 1.164 3.332 2.863 3.836 1.598.473 3.129 1.102 4.555 1.875 1.555.844 3.48.562 4.73-.691l.82-.82c1.562-1.559 4.098-1.566 5.66 0 1.559 1.559 1.559 4.098.008 5.648l-.824.82c-1.258 1.254-1.543 3.184-.695 4.746.758 1.395 1.387 2.926 1.875 4.555.504 1.695 2.062 2.855 3.832 2.855h1.176c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m156 90c-8.824 0-16 7.176-16 16s7.176 16 16 16 16-7.176 16-16-7.176-16-16-16zm0 24c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path></g></svg>							\n												<h5>\n													Emotional Support												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m206.102 400.162c-46.373 0-92.751-17.652-128.056-52.957-34.207-34.208-53.046-79.687-53.046-128.061s18.839-93.853 53.046-128.06c70.615-70.615 185.512-70.605 256.117 0 70.614 70.614 70.614 185.507 0 256.121-35.305 35.305-81.683 52.957-128.061 52.957zm0-346.791c-42.47 0-84.94 16.167-117.271 48.498-64.665 64.666-64.665 169.885 0 234.551 64.666 64.666 169.891 64.661 234.547 0 31.328-31.328 48.578-72.978 48.578-117.276 0-44.297-17.25-85.947-48.578-117.275-32.33-32.331-74.801-48.498-117.276-48.498z\"></path><path d=\"m206.102 357.901c-37.063 0-71.905-14.435-98.109-40.643-54.098-54.1-54.098-142.128 0-196.227 54.1-54.1 142.124-54.09 196.223 0 54.1 54.099 54.1 142.128 0 196.227-26.208 26.208-61.051 40.643-98.114 40.643zm0-262.194c-31.626 0-63.25 12.036-87.324 36.109-48.151 48.156-48.151 126.502 0 174.657 23.323 23.328 54.338 36.174 87.324 36.174s64.001-12.845 87.329-36.174c48.151-48.156 48.151-126.502 0-174.657-24.078-24.073-55.703-36.109-87.329-36.109z\"></path><path d=\"m297.428 421.907c-8.813 0-17.618-3.352-24.326-10.061-2.978-2.978-2.978-7.805 0-10.785 2.98-2.98 7.806-2.98 10.786 0 7.468 7.468 19.619 7.468 27.087 0l77.045-77.05c3.615-3.62 5.606-8.427 5.606-13.54 0-5.115-1.991-9.921-5.606-13.541-2.979-2.98-2.979-7.805 0-10.785 2.98-2.979 7.806-2.979 10.785 0 13.412 13.412 13.412 35.241 0 48.652l-77.045 77.05c-6.709 6.707-15.523 10.06-24.332 10.06z\"></path><path d=\"m402.881 461.874c-12.275 0-23.809-4.783-32.489-13.462l-47.992-47.991c-2.979-2.98-2.979-7.805 0-10.785l54.194-54.193c2.979-2.979 7.805-2.979 10.785 0l47.992 47.991c8.679 8.68 13.461 20.215 13.461 32.49s-4.782 23.809-13.461 32.489c-8.68 8.679-20.216 13.461-32.49 13.461zm-64.303-66.846 42.599 42.599c11.967 11.967 31.442 11.967 43.408 0 11.968-11.968 11.968-31.442 0-43.408l-42.599-42.6z\"></path><path d=\"m467.373 461.874h-355.566c-4.211 0-7.627-3.417-7.627-7.628s3.416-7.627 7.627-7.627h355.566c4.211 0 7.627 3.416 7.627 7.627s-3.416 7.628-7.627 7.628z\"></path><path d=\"m401.258 421.926c-1.951 0-3.904-.744-5.392-2.234l-21.675-21.679c-2.98-2.979-2.98-7.806 0-10.786 2.979-2.979 7.805-2.979 10.785 0l21.675 21.68c2.98 2.979 2.98 7.805 0 10.785-1.491 1.489-3.442 2.234-5.393 2.234z\"></path><path d=\"m206.102 305.102c-.814 0-1.628-.129-2.413-.392-3.814-1.272-41.556-24.446-49.383-62.342-6.668-32.305 9.048-65.739 46.716-99.385 2.89-2.583 7.269-2.583 10.16 0 37.668 33.641 53.384 67.079 46.715 99.38-7.826 37.897-45.569 61.076-49.383 62.347-.783.263-1.598.392-2.412.392zm0-146.07c-27.603 26.133-40.27 51.358-37.674 75.049 3.138 28.626 28.11 47.967 37.674 54.392 9.564-6.426 34.541-25.762 37.679-54.392 2.597-23.691-10.075-48.916-37.679-75.049z\"></path><path d=\"m212.691 305.102c-3.48 0-5.675-.164-6.082-.198-2.652-.224-5.001-1.813-6.192-4.192-.029-.06-.243-.501-.268-.561-1.658-3.541-.373-7.757 2.979-9.768 10.835-6.515 63.212-41.869 30.112-98.402-1.073-1.832-1.331-4.027-.715-6.062.615-2.031 2.045-3.715 3.957-4.648 14.42-7.027 32.256-12.021 53.007-14.842 3.889-.571 7.478 1.927 8.427 5.685 11.51 45.499 7.364 80.353-12.324 103.586-22.525 26.577-58.58 29.402-72.901 29.402zm37.744-113.333c22.007 44.953-.696 78.336-19.848 96.52 13.933-2.384 31.348-8.268 43.364-22.45 15.403-18.178 19.019-46.169 10.775-83.267-12.915 2.146-24.4 5.225-34.291 9.197z\"></path><path d=\"m199.553 305.102c-14.291 0-50.42-2.82-72.944-29.416-19.678-23.233-23.824-58.082-12.314-103.571.948-3.758 4.509-6.256 8.422-5.685 20.756 2.821 38.592 7.816 53.012 14.842 1.912.933 3.342 2.617 3.958 4.648.615 2.035.358 4.23-.715 6.062-33.1 56.533 19.276 91.887 30.111 98.402 3.392 2.036 4.662 6.332 2.925 9.887-1.182 2.413-3.734 4.409-6.411 4.633-.408.035-2.589.198-6.044.198zm-72.07-122.529c-8.243 37.088-4.633 65.079 10.765 83.257 12.007 14.177 29.426 20.066 43.364 22.45-19.147-18.184-41.849-51.562-19.837-96.51-9.892-3.973-21.371-7.052-34.292-9.197z\"></path><path d=\"m205.154 304.547c-4.211 0-7.627-3.417-7.627-7.628v-71.533c0-4.211 3.416-7.627 7.627-7.627s7.628 3.416 7.628 7.627v71.533c-.001 4.211-3.417 7.628-7.628 7.628z\"></path></g></svg>							\n												<h5>\n													Self-Exploration												</h5>\n											<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m295.544 178.256a6.741 6.741 0 0 0 -3.689-3.623 6.718 6.718 0 0 0 -8.727 3.475c-.058.16-.123.319-.193.475a6.715 6.715 0 0 0 3.572 8.482q.238.087.473.192a6.789 6.789 0 0 0 8.569-9zm4.657-15.648a21.3 21.3 0 0 1 -18.927 38.018l-.027-.012a21.345 21.345 0 0 1 -11.856-27.305 7.1 7.1 0 0 1 .358-.879 21.238 21.238 0 0 1 11.277-11.14 21.465 21.465 0 0 1 4.89-1.409 108.471 108.471 0 0 1 110.169-79.395l-7.5-9.84a7.256 7.256 0 0 1 11.533-8.807l18.139 23.785a7.255 7.255 0 0 1 -1.364 10.17l-23.793 18.138a7.256 7.256 0 0 1 -8.8-11.532l9.821-7.488a94.123 94.123 0 0 0 -93.917 67.7zm-136.607 130.062c-1.181-.462-2.53-.937-4.2-1.439-1.749-.526-3.761-1.034-5.893-1.571-2.249-.568-4.622-1.167-6.887-1.817a81.221 81.221 0 0 1 -7.736-2.626 52.681 52.681 0 0 1 -7.96-3.915 57.093 57.093 0 0 1 -5.122-3.558 19.314 19.314 0 0 1 -2.1 3.175 29.979 29.979 0 0 1 -4.78 4.617c-1.583 1.254-3.581 2.64-5.787 4.091-1.069.7-2 1.305-2.835 1.842v15.331a30.06 30.06 0 0 0 7.975 20.595 25.087 25.087 0 0 0 37.345 0 30.056 30.056 0 0 0 7.976-20.595v-14.13zm-3.794 117.75q-.863.314-1.737.606a66.691 66.691 0 0 1 -42.171 0q-.874-.292-1.736-.606 8.1 16.046 22.822 31.483 14.722-15.438 22.822-31.483zm-44.516-66.689-1.446 6.36a26.013 26.013 0 0 1 -8.247 14.073q-.63.554-1.295 1.069a86.352 86.352 0 0 0 2.3 24.838 49.4 49.4 0 0 0 13.842 7.2 53.4 53.4 0 0 0 33.079 0 49.4 49.4 0 0 0 13.842-7.2 86.282 86.282 0 0 0 2.3-24.786q-.7-.539-1.362-1.121a26.01 26.01 0 0 1 -8.247-14.073l-1.446-6.36a39.133 39.133 0 0 1 -43.323 0zm102.131 19.247c21.553 5.007 34.482 13.526 35.172 45.641v.142h.028v79.966a7.273 7.273 0 0 1 -7.272 7.273h-216.795a7.273 7.273 0 0 1 -7.273-7.273v-79.966a7.309 7.309 0 0 1 .049-.842c.911-33.257 15.2-40.822 38.733-45.728.5-7.586 1.773-17.265 3.2-28.09 2.421-18.4 5.3-40.261 5.3-60.319a67.9 67.9 0 0 1 19.627-47.875 66.563 66.563 0 0 1 94.957 0 67.889 67.889 0 0 1 19.627 47.875c0 22.494 5.342 45.587 9.591 63.955 2.279 9.851 4.261 18.419 5.062 25.241zm-46.7-31.379a44.85 44.85 0 0 0 7.42-24.8v-18.92a7.275 7.275 0 0 0 -4.889-6.873c-1.2-.525-2.455-1.065-4.1-1.717-1.832-.726-3.692-1.4-5.606-1.978-2.014-.606-4.2-1.158-6.517-1.742-2.01-.507-4.13-1.042-6.433-1.7-2.252-.647-4.44-1.344-6.372-2.113a37.981 37.981 0 0 1 -5.745-2.837 66.527 66.527 0 0 1 -8.659-6.687c-.68-.593-.82-.722-1.072-.939l.012-.014a14.573 14.573 0 0 0 -4.812-3.1c-6.5-2.195-9.224.041-10.259 6.5a21.51 21.51 0 0 0 -.208 2.607 14.785 14.785 0 0 1 -.37 3.3 3.848 3.848 0 0 1 -.715 1.241 16.145 16.145 0 0 1 -2.507 2.344c-1.423 1.129-3.022 2.244-4.707 3.353-1.127.741-3.346 2.131-5.627 3.557a7.274 7.274 0 0 0 -3.8 6.392v19.327a44.847 44.847 0 0 0 7.42 24.8l-3.479 15.309a11.711 11.711 0 0 1 -3.7 6.345 18.2 18.2 0 0 1 -8.506 3.875c-3.592.726-8.189 1.542-12.649 2.326.575-6.608 1.632-14.641 2.8-23.479 2.5-19 5.467-41.557 5.467-62.194a53.45 53.45 0 0 1 15.423-37.7 52.155 52.155 0 0 1 74.275 0 53.45 53.45 0 0 1 15.423 37.7c0 24.013 5.564 48.064 9.989 67.193 1.675 7.243 3.177 13.738 4.1 19.051l-2.054-.362c-4.821-.846-9.929-1.744-13.842-2.535a18.2 18.2 0 0 1 -8.506-3.875 11.711 11.711 0 0 1 -3.7-6.345l-3.482-15.31zm-41.01 149.856h-45.614a7.289 7.289 0 0 0 -.715-1.2 26.958 26.958 0 0 1 -5.261-16.38q0-9.969 5.972-22.523a7.256 7.256 0 0 0 -13.125-6.193q-7.392 15.54-7.393 28.716a41.569 41.569 0 0 0 3.738 17.583h-31.487v-72.697c0-.137 0-.274-.012-.41.791-27.416 16-30.094 40.333-34.368 3.862-.679 7.947-1.4 13.53-2.518a102.527 102.527 0 0 0 9.229 40.627q10.013 22.326 30.808 43.123v26.24zm14.545-26.241q20.795-20.795 30.808-43.121a102.527 102.527 0 0 0 9.226-40.616c5.55 1.115 9.617 1.83 13.466 2.506 24.453 4.3 39.695 6.976 40.344 34.778h-.024v72.694h-31.422a41.554 41.554 0 0 0 3.738-17.583q0-13.176-7.392-28.716a7.256 7.256 0 1 0 -13.125 6.193q5.971 12.554 5.972 22.523a26.959 26.959 0 0 1 -5.262 16.38 7.359 7.359 0 0 0 -.715 1.2h-45.614zm314.57-424.669a17.825 17.825 0 0 1 12.368 4.889 15.841 15.841 0 0 1 4.992 11.445v162.839a15.841 15.841 0 0 1 -4.992 11.445 17.821 17.821 0 0 1 -12.368 4.889h-92.395a7.234 7.234 0 0 0 -3.9 1.136l-22.385 12.384q-.276.151-.532.323l-36.3 20.086v-26.656a7.273 7.273 0 0 0 -7.273-7.273h-55.544a17.824 17.824 0 0 1 -12.368-4.889 15.844 15.844 0 0 1 -4.991-11.445v-162.839a15.842 15.842 0 0 1 4.991-11.445 17.829 17.829 0 0 1 12.368-4.889zm-218.329-14.545h218.329a32.378 32.378 0 0 1 22.425 8.979 30.272 30.272 0 0 1 9.48 21.9v162.839a30.268 30.268 0 0 1 -9.48 21.9 32.375 32.375 0 0 1 -22.425 8.98h-90.544l-21.149 11.7q-.257.141-.518.259l-47.084 26.051a7.236 7.236 0 0 1 -10.73-6.335h-.037v-31.673h-48.267a32.378 32.378 0 0 1 -22.425-8.98 30.272 30.272 0 0 1 -9.48-21.9v-162.841a30.268 30.268 0 0 1 9.48-21.9 32.378 32.378 0 0 1 22.425-8.979zm53.254 72.778-10.193-10.192 10.193-10.193a7.272 7.272 0 0 0 -10.285-10.284l-10.192 10.191-10.192-10.19a7.272 7.272 0 0 0 -10.284 10.284l10.192 10.192-10.192 10.191a7.272 7.272 0 0 0 10.284 10.284l10.192-10.191 10.192 10.192a7.272 7.272 0 0 0 10.285-10.284zm123.469 89.042-10.192-10.192 10.192-10.193a7.272 7.272 0 0 0 -10.284-10.284l-10.192 10.192-10.192-10.191a7.272 7.272 0 1 0 -10.284 10.284l10.192 10.192-10.192 10.191a7.272 7.272 0 1 0 10.284 10.281l10.192-10.191 10.192 10.191a7.272 7.272 0 0 0 10.284-10.284z\" fill-rule=\"evenodd\"></path></svg>							\n												<h5>\n													Coping Strategies												</h5>\n											<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M248.298,398.776v-96.35c0-5.971-2.694-11.517-7.393-15.216l-59.928-47.132c-2.984-2.348-7.254-2.094-9.939,0.592   l-14.349,14.349c-2.986,2.985-4.637,7.118-4.53,11.338c0.106,4.215,1.961,8.252,5.079,11.069l30.406,27.556l-1.867,1.93   c-1.111,1.149-2.665,1.808-4.265,1.808h-5.366c-4.046,0-7.953-1.201-11.299-3.474l-66.646-45.245   c-1.237-0.838-1.976-2.237-1.976-3.742v-42.516c0-8.724-7.102-15.821-15.832-15.821h-23.54c-4.142,0-7.5,3.358-7.5,7.5v72.637   c0,6.404,3.145,12.405,8.408,16.048l46.124,31.979c3.404,2.359,8.077,1.513,10.437-1.89c2.36-3.404,1.514-8.077-1.89-10.437   l-46.128-31.982c-1.222-0.846-1.951-2.235-1.951-3.718v-65.137h16.039c0.458,0,0.832,0.368,0.832,0.821v42.516   c0,6.486,3.2,12.526,8.556,16.155l66.64,45.241c5.84,3.967,12.661,6.064,19.726,6.064h5.366c5.643,0,11.128-2.326,15.047-6.38   l2.254-2.331c2.749-2.837,4.193-6.572,4.066-10.518c-0.127-3.948-1.811-7.585-4.741-10.242l-30.836-27.946   c-0.039-0.036-0.143-0.129-0.148-0.327c-0.005-0.206,0.101-0.312,0.141-0.352l9.642-9.642l54.693,43.015   c1.061,0.834,1.668,2.084,1.668,3.427v88.844h-60.32v-24.995c0-6.607-3.24-12.792-8.658-16.538l-27.532-19.089   c-3.405-2.36-8.077-1.514-10.437,1.89s-1.514,8.077,1.89,10.437l27.541,19.095c1.375,0.951,2.196,2.522,2.196,4.205v24.995h-3.726   c-4.142,0-7.5,3.358-7.5,7.5v58.66c0,0.033,0.004,0.064,0.005,0.097V504.5c0,4.142,3.358,7.5,7.5,7.5h25.971   c4.142,0,7.5-3.358,7.5-7.5c0-4.142-3.358-7.5-7.5-7.5h-18.471v-47.64h71.535v8.07c0,0.016,0.002,0.032,0.002,0.048V497h-23.519   c-4.142,0-7.5,3.358-7.5,7.5c0,4.142,3.358,7.5,7.5,7.5h31.019c4.142,0,7.5-3.358,7.5-7.5v-62.64c0-0.016-0.002-0.032-0.002-0.048   v-42.92C248.293,398.853,248.298,398.815,248.298,398.776z M233.292,434.359h-71.54V406.27h3.62c0.036,0,0.07,0.005,0.106,0.005   h67.814V434.359z\"></path>	</g></g><g>	<g>		<path d=\"M455.147,197.92h-23.535c-8.728,0-15.828,7.101-15.828,15.828v42.51c0,1.501-0.742,2.9-1.984,3.744l-66.637,45.24   c-3.349,2.273-7.258,3.475-11.304,3.475h-5.362c-1.604,0-3.162-0.66-4.279-1.813l-1.862-1.922l30.408-27.549   c3.125-2.831,4.977-6.871,5.08-11.085c0.104-4.215-1.546-8.342-4.526-11.324l-14.354-14.354c-2.687-2.686-6.956-2.939-9.94-0.592   l-47.179,37.107l-12.747,10.025c-4.695,3.693-7.389,9.238-7.389,15.211v96.35c0,0.02,0.003,0.038,0.003,0.058v42.972   c0,0.02-0.003,0.038-0.003,0.058v62.64c0,4.142,3.357,7.5,7.5,7.5h86.538c4.143,0,7.5-3.358,7.5-7.5v-46.973   c0-0.033,0.005-0.064,0.005-0.097v-58.66c0-4.142-3.357-7.5-7.5-7.5h-3.729v-24.994c0-1.68,0.824-3.254,2.204-4.211l98.021-67.96   c5.26-3.647,8.4-9.646,8.4-16.046V205.42C462.647,201.278,459.29,197.92,455.147,197.92z M350.247,497h-71.538v-39.512   c0-0.02,0.003-0.038,0.003-0.058v-8.07h71.535V497z M350.252,434.36h-71.54v-28.088h67.811c0.013,0,0.026-0.002,0.039-0.002h3.69   V434.36z M447.65,278.059h-0.003c0,1.483-0.728,2.874-1.947,3.719l-98.021,67.961c-5.42,3.759-8.656,9.941-8.656,16.538v24.994   H278.71v-88.848c0-1.343,0.605-2.591,1.662-3.421l12.747-10.025l41.946-32.992l9.646,9.646c0.039,0.04,0.144,0.144,0.139,0.347   s-0.114,0.302-0.155,0.339l-30.83,27.931c-2.928,2.653-4.611,6.289-4.74,10.238c-0.128,3.95,1.314,7.688,4.065,10.527l2.256,2.328   c3.924,4.053,9.41,6.377,15.053,6.377h5.362c7.062,0,13.884-2.097,19.729-6.064l66.638-45.241   c5.359-3.639,8.559-9.677,8.559-16.154v-42.51c0-0.457,0.371-0.828,0.828-0.828h16.035V278.059z\"></path>	</g></g><g>	<g>		<path d=\"M256.002,0c-55.95,0-102.985,41.857-109.407,97.364c-0.476,4.115,2.474,7.836,6.588,8.313   c4.12,0.482,7.836-2.474,8.313-6.588C167.042,51.15,207.671,15,256.002,15c52.466,0,95.15,42.684,95.15,95.15   c0,41.507-26.532,77.917-66.021,90.603c-1.723,0.553-3.187,1.71-4.123,3.258l-25.006,41.333l-25.006-41.333   c-0.937-1.548-2.401-2.705-4.123-3.258c-33.804-10.859-58.561-39.313-64.609-74.259c-0.707-4.082-4.587-6.812-8.669-6.111   c-4.082,0.707-6.817,4.588-6.111,8.669c6.842,39.527,34.351,71.881,72.103,85.076l30,49.587c1.358,2.246,3.792,3.618,6.417,3.618   s5.059-1.372,6.417-3.618l29.999-49.587c44.219-15.453,73.732-56.883,73.732-103.978C366.152,49.413,316.739,0,256.002,0z\"></path>	</g></g><g>	<g>		<path d=\"M315.754,102.65h-10.565c-1.234-8.128-4.447-15.612-9.123-21.955l7.492-7.492c2.929-2.929,2.929-7.678,0-10.606   c-2.93-2.929-7.678-2.929-10.607,0l-7.491,7.491c-6.343-4.676-13.827-7.888-21.955-9.123V50.4c0-4.142-3.357-7.5-7.5-7.5   c-4.142,0-7.5,3.358-7.5,7.5v10.565c-8.128,1.234-15.612,4.447-21.955,9.123l-7.491-7.491c-2.929-2.929-7.678-2.929-10.606,0   c-2.929,2.929-2.929,7.678,0,10.606l7.491,7.491c-4.676,6.343-7.889,13.828-9.123,21.956c0,0-10.569,0-10.569,0   c-4.142,0-7.5,3.358-7.5,7.5c0,4.142,3.358,7.5,7.5,7.5h10.565c1.234,8.128,4.447,15.613,9.123,21.956l-7.491,7.491   c-2.929,2.929-2.929,7.678,0,10.606c1.464,1.464,3.384,2.197,5.303,2.197s3.839-0.732,5.303-2.197l7.491-7.491   c6.343,4.676,13.828,7.889,21.956,9.123V169.9c0,4.142,3.358,7.5,7.5,7.5c4.143,0,7.5-3.358,7.5-7.5v-10.565   c8.128-1.234,15.612-4.447,21.956-9.123l7.491,7.491c1.465,1.464,3.385,2.197,5.304,2.197c1.919,0,3.839-0.732,5.304-2.197   c2.929-2.929,2.929-7.678,0-10.606l-7.491-7.491c4.676-6.343,7.889-13.828,9.123-21.956h10.565c4.143,0,7.5-3.358,7.5-7.5   C323.254,106.008,319.897,102.65,315.754,102.65z M290.751,110.164c-0.007,19.151-15.586,34.731-34.738,34.738   c-0.004,0-0.009-0.001-0.013-0.001c-0.004,0-0.009,0.001-0.013,0.001c-19.151-0.007-34.731-15.586-34.738-34.738   c0-0.004,0.001-0.009,0.001-0.013c0-0.004-0.001-0.008-0.001-0.013c0.009-19.154,15.592-34.735,34.746-34.738   c0.002,0,0.004,0,0.006,0s0.004,0,0.006,0c19.155,0.004,34.737,15.584,34.744,34.738c0,0.004-0.001,0.008-0.001,0.013   C290.75,110.155,290.751,110.16,290.751,110.164z\"></path>	</g></g><g>	<g>		<path d=\"M256.002,85.119c-13.802,0-25.032,11.229-25.032,25.031c0,13.803,11.229,25.032,25.032,25.032   c13.803,0,25.031-11.229,25.031-25.031C281.033,96.348,269.804,85.119,256.002,85.119z M256.002,120.182   c-5.532,0-10.032-4.5-10.032-10.031c0-5.532,4.5-10.032,10.032-10.032c5.531,0,10.031,4.5,10.031,10.032   C266.033,115.682,261.533,120.182,256.002,120.182z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>							\n												<h5>\n													Goal Setting												</h5>\n											<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Relationship Improvement												</h5>\n											<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Skill Development												</h5>\n											<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Tailored Approaches												</h5>\n											<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.</p>										\n		Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:28:53', '2026-06-17 10:28:53', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=527', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(528, 1, '2026-06-17 10:28:53', '2026-06-17 10:28:53', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />																<h2>Psychotherapy</h2>		<ul style=\"margin-left: 18px;\">\n 	<li>Individual therapy</li>\n 	<li>Couples/marriage therapy</li>\n 	<li>Family therapy</li>\n 	<li>Child/teen therapy</li>\n 	<li>Online therapy</li>\n 	<li>COMMON SPECIALTIES &amp; approaches</li>\n 	<li>Anxiety therapy</li>\n 	<li>Cognitive behavioral therapy (CBT)</li>\n 	<li>Depression counseling</li>\n 	<li>Dialectical behavior therapy (DBT)</li>\n 	<li>Grief &amp; loss counseling</li>\n 	<li>Relational therapy</li>\n</ul>			<h3>Therapy can be highly beneficial for mental health for several reasons:</h3>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 64 64.1999969\" width=\"512\"><path d=\"m51.2529297 42.0226555c.6357422-.6357422.9863281-1.4804688.9863281-2.3808594 0-.8994141-.3500977-1.7441406-.9863281-2.3808594-1.3125-1.3125-3.4492188-1.3125-4.7617188 0l-9.3178711 9.3173828c-.7426758.7441406-1.1518555 1.7314453-1.1518555 2.7822266v11.6396484c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-5.109375l11.5913086-11.5917969c.1875-.1875.2929688-.4414062.2929688-.7070312v-11.5488281c0-2.0097656-1.6347656-3.6445312-3.6445312-3.6445312s-3.6450195 1.6347656-3.6450195 3.6445312v8.6582031l-4.2260742 4.2255859c-.1459961.1455078-.3828125.1435547-.527832 0-.1455078-.1455078-.1455078-.3818359 0-.5273438zm-3.7910156 4.3183594c.9243164.9248047 2.4306641.9267578 3.355957 0l4.519043-4.5185547c.1875-.1875.2929688-.4414062.2929688-.7070312v-9.0722656c0-.9072266.737793-1.6445312 1.6450195-1.6445312.9067383 0 1.6445312.7373047 1.6445312 1.6445312v11.1347656l-11.5913086 11.5917968c-.1875.1875-.2929688.4414062-.2929688.7070312v4.5234375h-9.0136719v-10.6396484c0-.5166016.2011719-1.0029297.5664062-1.3681641l9.3173828-9.3173828c.5332031-.5332031 1.4008789-.5332031 1.9331055 0 .2583008.2587891.4008789.6015625.4008789.9667969s-.1420898.7089844-.4003906.9667969l-2.3769531 2.3769531c-.9252929.9248047-.9252929 2.4306641.0000001 3.3554688z\"></path><path d=\"m6.7250977 28.398632c-2.0097656 0-3.6445312 1.6347656-3.6445312 3.6445312v11.5488281c0 .265625.1054688.5195312.2929688.7070312l11.5913086 11.5917969v5.109375c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-11.6396483c0-1.0507812-.4091797-2.0380859-1.1523438-2.7822266l-9.3173828-9.3173828c-1.3125-1.3125-3.4487305-1.3125-4.762207 0-.6357422.6367188-.9858398 1.4814453-.9858398 2.3808594 0 .9003906.3505859 1.7451172.9863281 2.3808594l2.3769531 2.3769531c.1455078.1455078.1455078.3818359 0 .5273438s-.3823242.1435547-.527832 0l-4.2260742-4.2255859v-8.6582031c-.0000002-2.0097657-1.6352541-3.6445314-3.6450197-3.6445314zm6.4570312 17.9423829c.925293.9267578 2.4316406.9257812 3.355957 0 .925293-.9248047.925293-2.4306641 0-3.3554688l-2.3769531-2.3769531c-.2583008-.2578125-.4003906-.6015625-.4003906-.9667969s.1425781-.7080078.4003906-.9667969c.5332031-.5332031 1.4003906-.5332031 1.9335938 0l9.3168945 9.3173828c.3657227.3652344.5668945.8515625.5668945 1.3681641v10.6396484h-9.0136719v-4.5234375c0-.265625-.1054688-.5195312-.2929688-.7070312l-11.5913085-11.5917969v-11.1347656c0-.9072266.737793-1.6445312 1.6445312-1.6445312.9072266 0 1.6450195.7373047 1.6450195 1.6445312v9.0722656c0 .265625.1054688.5195312.2929688.7070312z\"></path><path d=\"m32 2.0998046c-10.0986328 0-18.3144531 8.2158203-18.3144531 18.3144531s8.2158203 18.3144525 18.3144531 18.3144525 18.3144531-8.2158203 18.3144531-18.3144531-8.2158203-18.3144525-18.3144531-18.3144525zm0 2.0000003c7.614502 0 14.0088501 5.2510376 15.798584 12.3173819-3.1233521-2.2542105-8.8903809-3.70996-15.798584-3.70996s-12.6752319 1.4557495-15.798584 3.70996c1.7897339-7.0663443 8.184082-12.3173819 15.798584-12.3173819zm16.3144531 16.3144521c0 2.6992188-6.7001953 5.7070312-16.3144531 5.7070312s-16.3144531-3.0078125-16.3144531-5.7070312 6.7001953-5.7070302 16.3144531-5.7070302 16.3144531 3.0078115 16.3144531 5.7070302zm-16.3144531 16.3144532c-7.614502 0-14.0088501-5.2510376-15.798584-12.3173828 3.1233521 2.2542114 8.8903809 3.7099609 15.798584 3.7099609s12.6752319-1.4557495 15.798584-3.7099609c-1.7897339 7.0663452-8.184082 12.3173828-15.798584 12.3173828z\"></path></svg>							\n												<h5>\n													Safe Space												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"friendship-work\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><circle cx=\"72\" cy=\"102\" r=\"4\"></circle><circle cx=\"64\" cy=\"50\" r=\"4\"></circle><path d=\"m228 98h4v4c0 2.211 1.789 4 4 4s4-1.789 4-4v-4h4c2.211 0 4-1.789 4-4s-1.789-4-4-4h-4v-4c0-2.211-1.789-4-4-4s-4 1.789-4 4v4h-4c-2.211 0-4 1.789-4 4s1.789 4 4 4z\"></path><path d=\"m132 218h-16v-5.977c0-13.759-8.223-25.608-20-30.964v-35.059c0-.031-.017-.057-.018-.088 4.839-3.653 8.018-9.396 8.018-15.912 0-2.211-1.789-4-4-4h-30.707c-7.328 0-13.293 5.965-13.293 13.293v25.953c0 5.361 2.096 10.206 5.444 13.892-14.614 3.818-25.444 17.092-25.444 32.885v49.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-49.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v9.977c0 2.211 1.789 4 4 4h8v8h-20v-17.582c0-2.211-1.789-4-4-4s-4 1.789-4 4v21.582 24c0 2.211 1.789 4 4 4s4-1.789 4-4v-20h32c6.617 0 12-5.383 12-12s-5.383-12-12-12zm-68-78.707c0-2.918 2.375-5.293 5.293-5.293h26.023c-1.652 4.656-6.102 8-11.316 8h-20zm12.754 38.707c-7.031 0-12.754-5.723-12.754-12.754v-15.246h24v28zm55.246 56h-4v-8h4c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m56 210c-2.211 0-4 1.789-4 4v48c0 2.211 1.789 4 4 4s4-1.789 4-4v-48c0-2.211-1.789-4-4-4z\"></path><path d=\"m238.009 178.998c3.704-3.95 5.991-9.243 5.991-15.072v-9.926c0-11.027-8.973-20-20-20s-20 8.973-20 20v27.06c-11.777 5.355-20 17.205-20 30.964v45.976c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v45.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-15.99-11.1-29.402-25.991-33.025zm-26.009-.998v-24c0-6.617 5.383-12 12-12s12 5.383 12 12v9.926c0 7.762-6.312 14.074-14.074 14.074z\"></path><path d=\"m204 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m244 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m185.41 118.613c.102-.242.203-.488.301-.734 5.809-.832 10.289-5.844 10.289-11.879 0-1.206-.223-2.353-.555-3.452 10.229-11.777 15.466-22.512 15.466-31.899-.001-20.208-15.274-36.649-34.048-36.649-7.633 0-14.91 2.711-20.863 7.707-5.953-4.996-13.23-7.707-20.863-7.707-18.773 0-34.047 16.441-34.047 36.648 0 9.39 5.238 20.125 15.465 31.903-.333 1.098-.555 2.244-.555 3.449 0 6.035 4.48 11.047 10.289 11.879.098.246.199.488.301.73-3.516 4.699-3.141 11.406 1.125 15.672 4.27 4.27 10.98 4.633 15.672 1.129.242.102.488.203.734.301.832 5.809 5.844 10.289 11.879 10.289s11.047-4.48 11.879-10.289c.246-.098.492-.199.734-.301 4.688 3.504 11.398 3.141 15.672-1.129 4.262-4.261 4.641-10.965 1.125-15.668zm-50.273-76.613c6.707 0 13.09 2.82 17.965 7.945 1.516 1.586 4.281 1.586 5.797 0 4.874-5.125 11.257-7.945 17.964-7.945 14.363 0 26.047 12.852 26.047 28.648 0 6.991-4.298 15.714-12.379 25.343-1.433-.939-3.052-1.616-4.82-1.87-.098-.246-.199-.488-.301-.73 3.516-4.699 3.141-11.406-1.125-15.672-4.273-4.27-10.984-4.637-15.672-1.129-.242-.102-.488-.203-.734-.301-.832-5.809-5.844-10.289-11.879-10.289s-11.047 4.48-11.879 10.289c-.246.098-.492.199-.734.301-4.691-3.508-11.402-3.141-15.672 1.129-4.262 4.262-4.641 10.965-1.125 15.668-.102.242-.203.488-.301.734-1.769.253-3.387.931-4.821 1.87-8.079-9.625-12.378-18.35-12.378-25.343 0-15.796 11.683-28.648 26.047-28.648zm47.687 68c-1.77 0-3.328 1.16-3.832 2.855-.488 1.629-1.117 3.16-1.875 4.555-.848 1.562-.562 3.492.695 4.746l.812.812c1.562 1.559 1.562 4.098.004 5.656-1.562 1.566-4.098 1.559-5.66 0l-.82-.82c-1.254-1.254-3.18-1.535-4.73-.691-1.426.773-2.957 1.402-4.555 1.875-1.699.504-2.863 2.062-2.863 3.836v1.176c0 2.207-1.793 4-4 4s-4-1.793-4-4v-1.176c0-1.773-1.164-3.332-2.863-3.836-1.598-.473-3.129-1.102-4.555-1.875-.598-.324-1.254-.48-1.902-.48-1.035 0-2.059.402-2.828 1.172l-.82.82c-1.559 1.559-4.094 1.566-5.66 0-1.559-1.559-1.559-4.098-.008-5.648l.824-.82c1.258-1.254 1.543-3.184.695-4.746-.758-1.395-1.387-2.926-1.875-4.555-.504-1.695-2.062-2.855-3.832-2.855h-1.176c-2.207 0-4-1.793-4-4s1.793-4 4-4h1.176c1.77 0 3.328-1.16 3.832-2.855.488-1.629 1.117-3.16 1.875-4.555.848-1.562.562-3.492-.695-4.746l-.812-.812c-1.562-1.559-1.562-4.098-.004-5.656 1.57-1.562 4.105-1.559 5.66 0l.82.82c1.25 1.25 3.18 1.531 4.73.691 1.426-.773 2.957-1.402 4.555-1.875 1.699-.504 2.863-2.062 2.863-3.836v-1.177c0-2.207 1.793-4 4-4s4 1.793 4 4v1.176c0 1.773 1.164 3.332 2.863 3.836 1.598.473 3.129 1.102 4.555 1.875 1.555.844 3.48.562 4.73-.691l.82-.82c1.562-1.559 4.098-1.566 5.66 0 1.559 1.559 1.559 4.098.008 5.648l-.824.82c-1.258 1.254-1.543 3.184-.695 4.746.758 1.395 1.387 2.926 1.875 4.555.504 1.695 2.062 2.855 3.832 2.855h1.176c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m156 90c-8.824 0-16 7.176-16 16s7.176 16 16 16 16-7.176 16-16-7.176-16-16-16zm0 24c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path></g></svg>							\n												<h5>\n													Emotional Support												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m206.102 400.162c-46.373 0-92.751-17.652-128.056-52.957-34.207-34.208-53.046-79.687-53.046-128.061s18.839-93.853 53.046-128.06c70.615-70.615 185.512-70.605 256.117 0 70.614 70.614 70.614 185.507 0 256.121-35.305 35.305-81.683 52.957-128.061 52.957zm0-346.791c-42.47 0-84.94 16.167-117.271 48.498-64.665 64.666-64.665 169.885 0 234.551 64.666 64.666 169.891 64.661 234.547 0 31.328-31.328 48.578-72.978 48.578-117.276 0-44.297-17.25-85.947-48.578-117.275-32.33-32.331-74.801-48.498-117.276-48.498z\"></path><path d=\"m206.102 357.901c-37.063 0-71.905-14.435-98.109-40.643-54.098-54.1-54.098-142.128 0-196.227 54.1-54.1 142.124-54.09 196.223 0 54.1 54.099 54.1 142.128 0 196.227-26.208 26.208-61.051 40.643-98.114 40.643zm0-262.194c-31.626 0-63.25 12.036-87.324 36.109-48.151 48.156-48.151 126.502 0 174.657 23.323 23.328 54.338 36.174 87.324 36.174s64.001-12.845 87.329-36.174c48.151-48.156 48.151-126.502 0-174.657-24.078-24.073-55.703-36.109-87.329-36.109z\"></path><path d=\"m297.428 421.907c-8.813 0-17.618-3.352-24.326-10.061-2.978-2.978-2.978-7.805 0-10.785 2.98-2.98 7.806-2.98 10.786 0 7.468 7.468 19.619 7.468 27.087 0l77.045-77.05c3.615-3.62 5.606-8.427 5.606-13.54 0-5.115-1.991-9.921-5.606-13.541-2.979-2.98-2.979-7.805 0-10.785 2.98-2.979 7.806-2.979 10.785 0 13.412 13.412 13.412 35.241 0 48.652l-77.045 77.05c-6.709 6.707-15.523 10.06-24.332 10.06z\"></path><path d=\"m402.881 461.874c-12.275 0-23.809-4.783-32.489-13.462l-47.992-47.991c-2.979-2.98-2.979-7.805 0-10.785l54.194-54.193c2.979-2.979 7.805-2.979 10.785 0l47.992 47.991c8.679 8.68 13.461 20.215 13.461 32.49s-4.782 23.809-13.461 32.489c-8.68 8.679-20.216 13.461-32.49 13.461zm-64.303-66.846 42.599 42.599c11.967 11.967 31.442 11.967 43.408 0 11.968-11.968 11.968-31.442 0-43.408l-42.599-42.6z\"></path><path d=\"m467.373 461.874h-355.566c-4.211 0-7.627-3.417-7.627-7.628s3.416-7.627 7.627-7.627h355.566c4.211 0 7.627 3.416 7.627 7.627s-3.416 7.628-7.627 7.628z\"></path><path d=\"m401.258 421.926c-1.951 0-3.904-.744-5.392-2.234l-21.675-21.679c-2.98-2.979-2.98-7.806 0-10.786 2.979-2.979 7.805-2.979 10.785 0l21.675 21.68c2.98 2.979 2.98 7.805 0 10.785-1.491 1.489-3.442 2.234-5.393 2.234z\"></path><path d=\"m206.102 305.102c-.814 0-1.628-.129-2.413-.392-3.814-1.272-41.556-24.446-49.383-62.342-6.668-32.305 9.048-65.739 46.716-99.385 2.89-2.583 7.269-2.583 10.16 0 37.668 33.641 53.384 67.079 46.715 99.38-7.826 37.897-45.569 61.076-49.383 62.347-.783.263-1.598.392-2.412.392zm0-146.07c-27.603 26.133-40.27 51.358-37.674 75.049 3.138 28.626 28.11 47.967 37.674 54.392 9.564-6.426 34.541-25.762 37.679-54.392 2.597-23.691-10.075-48.916-37.679-75.049z\"></path><path d=\"m212.691 305.102c-3.48 0-5.675-.164-6.082-.198-2.652-.224-5.001-1.813-6.192-4.192-.029-.06-.243-.501-.268-.561-1.658-3.541-.373-7.757 2.979-9.768 10.835-6.515 63.212-41.869 30.112-98.402-1.073-1.832-1.331-4.027-.715-6.062.615-2.031 2.045-3.715 3.957-4.648 14.42-7.027 32.256-12.021 53.007-14.842 3.889-.571 7.478 1.927 8.427 5.685 11.51 45.499 7.364 80.353-12.324 103.586-22.525 26.577-58.58 29.402-72.901 29.402zm37.744-113.333c22.007 44.953-.696 78.336-19.848 96.52 13.933-2.384 31.348-8.268 43.364-22.45 15.403-18.178 19.019-46.169 10.775-83.267-12.915 2.146-24.4 5.225-34.291 9.197z\"></path><path d=\"m199.553 305.102c-14.291 0-50.42-2.82-72.944-29.416-19.678-23.233-23.824-58.082-12.314-103.571.948-3.758 4.509-6.256 8.422-5.685 20.756 2.821 38.592 7.816 53.012 14.842 1.912.933 3.342 2.617 3.958 4.648.615 2.035.358 4.23-.715 6.062-33.1 56.533 19.276 91.887 30.111 98.402 3.392 2.036 4.662 6.332 2.925 9.887-1.182 2.413-3.734 4.409-6.411 4.633-.408.035-2.589.198-6.044.198zm-72.07-122.529c-8.243 37.088-4.633 65.079 10.765 83.257 12.007 14.177 29.426 20.066 43.364 22.45-19.147-18.184-41.849-51.562-19.837-96.51-9.892-3.973-21.371-7.052-34.292-9.197z\"></path><path d=\"m205.154 304.547c-4.211 0-7.627-3.417-7.627-7.628v-71.533c0-4.211 3.416-7.627 7.627-7.627s7.628 3.416 7.628 7.627v71.533c-.001 4.211-3.417 7.628-7.628 7.628z\"></path></g></svg>							\n												<h5>\n													Self-Exploration												</h5>\n											<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m295.544 178.256a6.741 6.741 0 0 0 -3.689-3.623 6.718 6.718 0 0 0 -8.727 3.475c-.058.16-.123.319-.193.475a6.715 6.715 0 0 0 3.572 8.482q.238.087.473.192a6.789 6.789 0 0 0 8.569-9zm4.657-15.648a21.3 21.3 0 0 1 -18.927 38.018l-.027-.012a21.345 21.345 0 0 1 -11.856-27.305 7.1 7.1 0 0 1 .358-.879 21.238 21.238 0 0 1 11.277-11.14 21.465 21.465 0 0 1 4.89-1.409 108.471 108.471 0 0 1 110.169-79.395l-7.5-9.84a7.256 7.256 0 0 1 11.533-8.807l18.139 23.785a7.255 7.255 0 0 1 -1.364 10.17l-23.793 18.138a7.256 7.256 0 0 1 -8.8-11.532l9.821-7.488a94.123 94.123 0 0 0 -93.917 67.7zm-136.607 130.062c-1.181-.462-2.53-.937-4.2-1.439-1.749-.526-3.761-1.034-5.893-1.571-2.249-.568-4.622-1.167-6.887-1.817a81.221 81.221 0 0 1 -7.736-2.626 52.681 52.681 0 0 1 -7.96-3.915 57.093 57.093 0 0 1 -5.122-3.558 19.314 19.314 0 0 1 -2.1 3.175 29.979 29.979 0 0 1 -4.78 4.617c-1.583 1.254-3.581 2.64-5.787 4.091-1.069.7-2 1.305-2.835 1.842v15.331a30.06 30.06 0 0 0 7.975 20.595 25.087 25.087 0 0 0 37.345 0 30.056 30.056 0 0 0 7.976-20.595v-14.13zm-3.794 117.75q-.863.314-1.737.606a66.691 66.691 0 0 1 -42.171 0q-.874-.292-1.736-.606 8.1 16.046 22.822 31.483 14.722-15.438 22.822-31.483zm-44.516-66.689-1.446 6.36a26.013 26.013 0 0 1 -8.247 14.073q-.63.554-1.295 1.069a86.352 86.352 0 0 0 2.3 24.838 49.4 49.4 0 0 0 13.842 7.2 53.4 53.4 0 0 0 33.079 0 49.4 49.4 0 0 0 13.842-7.2 86.282 86.282 0 0 0 2.3-24.786q-.7-.539-1.362-1.121a26.01 26.01 0 0 1 -8.247-14.073l-1.446-6.36a39.133 39.133 0 0 1 -43.323 0zm102.131 19.247c21.553 5.007 34.482 13.526 35.172 45.641v.142h.028v79.966a7.273 7.273 0 0 1 -7.272 7.273h-216.795a7.273 7.273 0 0 1 -7.273-7.273v-79.966a7.309 7.309 0 0 1 .049-.842c.911-33.257 15.2-40.822 38.733-45.728.5-7.586 1.773-17.265 3.2-28.09 2.421-18.4 5.3-40.261 5.3-60.319a67.9 67.9 0 0 1 19.627-47.875 66.563 66.563 0 0 1 94.957 0 67.889 67.889 0 0 1 19.627 47.875c0 22.494 5.342 45.587 9.591 63.955 2.279 9.851 4.261 18.419 5.062 25.241zm-46.7-31.379a44.85 44.85 0 0 0 7.42-24.8v-18.92a7.275 7.275 0 0 0 -4.889-6.873c-1.2-.525-2.455-1.065-4.1-1.717-1.832-.726-3.692-1.4-5.606-1.978-2.014-.606-4.2-1.158-6.517-1.742-2.01-.507-4.13-1.042-6.433-1.7-2.252-.647-4.44-1.344-6.372-2.113a37.981 37.981 0 0 1 -5.745-2.837 66.527 66.527 0 0 1 -8.659-6.687c-.68-.593-.82-.722-1.072-.939l.012-.014a14.573 14.573 0 0 0 -4.812-3.1c-6.5-2.195-9.224.041-10.259 6.5a21.51 21.51 0 0 0 -.208 2.607 14.785 14.785 0 0 1 -.37 3.3 3.848 3.848 0 0 1 -.715 1.241 16.145 16.145 0 0 1 -2.507 2.344c-1.423 1.129-3.022 2.244-4.707 3.353-1.127.741-3.346 2.131-5.627 3.557a7.274 7.274 0 0 0 -3.8 6.392v19.327a44.847 44.847 0 0 0 7.42 24.8l-3.479 15.309a11.711 11.711 0 0 1 -3.7 6.345 18.2 18.2 0 0 1 -8.506 3.875c-3.592.726-8.189 1.542-12.649 2.326.575-6.608 1.632-14.641 2.8-23.479 2.5-19 5.467-41.557 5.467-62.194a53.45 53.45 0 0 1 15.423-37.7 52.155 52.155 0 0 1 74.275 0 53.45 53.45 0 0 1 15.423 37.7c0 24.013 5.564 48.064 9.989 67.193 1.675 7.243 3.177 13.738 4.1 19.051l-2.054-.362c-4.821-.846-9.929-1.744-13.842-2.535a18.2 18.2 0 0 1 -8.506-3.875 11.711 11.711 0 0 1 -3.7-6.345l-3.482-15.31zm-41.01 149.856h-45.614a7.289 7.289 0 0 0 -.715-1.2 26.958 26.958 0 0 1 -5.261-16.38q0-9.969 5.972-22.523a7.256 7.256 0 0 0 -13.125-6.193q-7.392 15.54-7.393 28.716a41.569 41.569 0 0 0 3.738 17.583h-31.487v-72.697c0-.137 0-.274-.012-.41.791-27.416 16-30.094 40.333-34.368 3.862-.679 7.947-1.4 13.53-2.518a102.527 102.527 0 0 0 9.229 40.627q10.013 22.326 30.808 43.123v26.24zm14.545-26.241q20.795-20.795 30.808-43.121a102.527 102.527 0 0 0 9.226-40.616c5.55 1.115 9.617 1.83 13.466 2.506 24.453 4.3 39.695 6.976 40.344 34.778h-.024v72.694h-31.422a41.554 41.554 0 0 0 3.738-17.583q0-13.176-7.392-28.716a7.256 7.256 0 1 0 -13.125 6.193q5.971 12.554 5.972 22.523a26.959 26.959 0 0 1 -5.262 16.38 7.359 7.359 0 0 0 -.715 1.2h-45.614zm314.57-424.669a17.825 17.825 0 0 1 12.368 4.889 15.841 15.841 0 0 1 4.992 11.445v162.839a15.841 15.841 0 0 1 -4.992 11.445 17.821 17.821 0 0 1 -12.368 4.889h-92.395a7.234 7.234 0 0 0 -3.9 1.136l-22.385 12.384q-.276.151-.532.323l-36.3 20.086v-26.656a7.273 7.273 0 0 0 -7.273-7.273h-55.544a17.824 17.824 0 0 1 -12.368-4.889 15.844 15.844 0 0 1 -4.991-11.445v-162.839a15.842 15.842 0 0 1 4.991-11.445 17.829 17.829 0 0 1 12.368-4.889zm-218.329-14.545h218.329a32.378 32.378 0 0 1 22.425 8.979 30.272 30.272 0 0 1 9.48 21.9v162.839a30.268 30.268 0 0 1 -9.48 21.9 32.375 32.375 0 0 1 -22.425 8.98h-90.544l-21.149 11.7q-.257.141-.518.259l-47.084 26.051a7.236 7.236 0 0 1 -10.73-6.335h-.037v-31.673h-48.267a32.378 32.378 0 0 1 -22.425-8.98 30.272 30.272 0 0 1 -9.48-21.9v-162.841a30.268 30.268 0 0 1 9.48-21.9 32.378 32.378 0 0 1 22.425-8.979zm53.254 72.778-10.193-10.192 10.193-10.193a7.272 7.272 0 0 0 -10.285-10.284l-10.192 10.191-10.192-10.19a7.272 7.272 0 0 0 -10.284 10.284l10.192 10.192-10.192 10.191a7.272 7.272 0 0 0 10.284 10.284l10.192-10.191 10.192 10.192a7.272 7.272 0 0 0 10.285-10.284zm123.469 89.042-10.192-10.192 10.192-10.193a7.272 7.272 0 0 0 -10.284-10.284l-10.192 10.192-10.192-10.191a7.272 7.272 0 1 0 -10.284 10.284l10.192 10.192-10.192 10.191a7.272 7.272 0 1 0 10.284 10.281l10.192-10.191 10.192 10.191a7.272 7.272 0 0 0 10.284-10.284z\" fill-rule=\"evenodd\"></path></svg>							\n												<h5>\n													Coping Strategies												</h5>\n											<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M248.298,398.776v-96.35c0-5.971-2.694-11.517-7.393-15.216l-59.928-47.132c-2.984-2.348-7.254-2.094-9.939,0.592   l-14.349,14.349c-2.986,2.985-4.637,7.118-4.53,11.338c0.106,4.215,1.961,8.252,5.079,11.069l30.406,27.556l-1.867,1.93   c-1.111,1.149-2.665,1.808-4.265,1.808h-5.366c-4.046,0-7.953-1.201-11.299-3.474l-66.646-45.245   c-1.237-0.838-1.976-2.237-1.976-3.742v-42.516c0-8.724-7.102-15.821-15.832-15.821h-23.54c-4.142,0-7.5,3.358-7.5,7.5v72.637   c0,6.404,3.145,12.405,8.408,16.048l46.124,31.979c3.404,2.359,8.077,1.513,10.437-1.89c2.36-3.404,1.514-8.077-1.89-10.437   l-46.128-31.982c-1.222-0.846-1.951-2.235-1.951-3.718v-65.137h16.039c0.458,0,0.832,0.368,0.832,0.821v42.516   c0,6.486,3.2,12.526,8.556,16.155l66.64,45.241c5.84,3.967,12.661,6.064,19.726,6.064h5.366c5.643,0,11.128-2.326,15.047-6.38   l2.254-2.331c2.749-2.837,4.193-6.572,4.066-10.518c-0.127-3.948-1.811-7.585-4.741-10.242l-30.836-27.946   c-0.039-0.036-0.143-0.129-0.148-0.327c-0.005-0.206,0.101-0.312,0.141-0.352l9.642-9.642l54.693,43.015   c1.061,0.834,1.668,2.084,1.668,3.427v88.844h-60.32v-24.995c0-6.607-3.24-12.792-8.658-16.538l-27.532-19.089   c-3.405-2.36-8.077-1.514-10.437,1.89s-1.514,8.077,1.89,10.437l27.541,19.095c1.375,0.951,2.196,2.522,2.196,4.205v24.995h-3.726   c-4.142,0-7.5,3.358-7.5,7.5v58.66c0,0.033,0.004,0.064,0.005,0.097V504.5c0,4.142,3.358,7.5,7.5,7.5h25.971   c4.142,0,7.5-3.358,7.5-7.5c0-4.142-3.358-7.5-7.5-7.5h-18.471v-47.64h71.535v8.07c0,0.016,0.002,0.032,0.002,0.048V497h-23.519   c-4.142,0-7.5,3.358-7.5,7.5c0,4.142,3.358,7.5,7.5,7.5h31.019c4.142,0,7.5-3.358,7.5-7.5v-62.64c0-0.016-0.002-0.032-0.002-0.048   v-42.92C248.293,398.853,248.298,398.815,248.298,398.776z M233.292,434.359h-71.54V406.27h3.62c0.036,0,0.07,0.005,0.106,0.005   h67.814V434.359z\"></path>	</g></g><g>	<g>		<path d=\"M455.147,197.92h-23.535c-8.728,0-15.828,7.101-15.828,15.828v42.51c0,1.501-0.742,2.9-1.984,3.744l-66.637,45.24   c-3.349,2.273-7.258,3.475-11.304,3.475h-5.362c-1.604,0-3.162-0.66-4.279-1.813l-1.862-1.922l30.408-27.549   c3.125-2.831,4.977-6.871,5.08-11.085c0.104-4.215-1.546-8.342-4.526-11.324l-14.354-14.354c-2.687-2.686-6.956-2.939-9.94-0.592   l-47.179,37.107l-12.747,10.025c-4.695,3.693-7.389,9.238-7.389,15.211v96.35c0,0.02,0.003,0.038,0.003,0.058v42.972   c0,0.02-0.003,0.038-0.003,0.058v62.64c0,4.142,3.357,7.5,7.5,7.5h86.538c4.143,0,7.5-3.358,7.5-7.5v-46.973   c0-0.033,0.005-0.064,0.005-0.097v-58.66c0-4.142-3.357-7.5-7.5-7.5h-3.729v-24.994c0-1.68,0.824-3.254,2.204-4.211l98.021-67.96   c5.26-3.647,8.4-9.646,8.4-16.046V205.42C462.647,201.278,459.29,197.92,455.147,197.92z M350.247,497h-71.538v-39.512   c0-0.02,0.003-0.038,0.003-0.058v-8.07h71.535V497z M350.252,434.36h-71.54v-28.088h67.811c0.013,0,0.026-0.002,0.039-0.002h3.69   V434.36z M447.65,278.059h-0.003c0,1.483-0.728,2.874-1.947,3.719l-98.021,67.961c-5.42,3.759-8.656,9.941-8.656,16.538v24.994   H278.71v-88.848c0-1.343,0.605-2.591,1.662-3.421l12.747-10.025l41.946-32.992l9.646,9.646c0.039,0.04,0.144,0.144,0.139,0.347   s-0.114,0.302-0.155,0.339l-30.83,27.931c-2.928,2.653-4.611,6.289-4.74,10.238c-0.128,3.95,1.314,7.688,4.065,10.527l2.256,2.328   c3.924,4.053,9.41,6.377,15.053,6.377h5.362c7.062,0,13.884-2.097,19.729-6.064l66.638-45.241   c5.359-3.639,8.559-9.677,8.559-16.154v-42.51c0-0.457,0.371-0.828,0.828-0.828h16.035V278.059z\"></path>	</g></g><g>	<g>		<path d=\"M256.002,0c-55.95,0-102.985,41.857-109.407,97.364c-0.476,4.115,2.474,7.836,6.588,8.313   c4.12,0.482,7.836-2.474,8.313-6.588C167.042,51.15,207.671,15,256.002,15c52.466,0,95.15,42.684,95.15,95.15   c0,41.507-26.532,77.917-66.021,90.603c-1.723,0.553-3.187,1.71-4.123,3.258l-25.006,41.333l-25.006-41.333   c-0.937-1.548-2.401-2.705-4.123-3.258c-33.804-10.859-58.561-39.313-64.609-74.259c-0.707-4.082-4.587-6.812-8.669-6.111   c-4.082,0.707-6.817,4.588-6.111,8.669c6.842,39.527,34.351,71.881,72.103,85.076l30,49.587c1.358,2.246,3.792,3.618,6.417,3.618   s5.059-1.372,6.417-3.618l29.999-49.587c44.219-15.453,73.732-56.883,73.732-103.978C366.152,49.413,316.739,0,256.002,0z\"></path>	</g></g><g>	<g>		<path d=\"M315.754,102.65h-10.565c-1.234-8.128-4.447-15.612-9.123-21.955l7.492-7.492c2.929-2.929,2.929-7.678,0-10.606   c-2.93-2.929-7.678-2.929-10.607,0l-7.491,7.491c-6.343-4.676-13.827-7.888-21.955-9.123V50.4c0-4.142-3.357-7.5-7.5-7.5   c-4.142,0-7.5,3.358-7.5,7.5v10.565c-8.128,1.234-15.612,4.447-21.955,9.123l-7.491-7.491c-2.929-2.929-7.678-2.929-10.606,0   c-2.929,2.929-2.929,7.678,0,10.606l7.491,7.491c-4.676,6.343-7.889,13.828-9.123,21.956c0,0-10.569,0-10.569,0   c-4.142,0-7.5,3.358-7.5,7.5c0,4.142,3.358,7.5,7.5,7.5h10.565c1.234,8.128,4.447,15.613,9.123,21.956l-7.491,7.491   c-2.929,2.929-2.929,7.678,0,10.606c1.464,1.464,3.384,2.197,5.303,2.197s3.839-0.732,5.303-2.197l7.491-7.491   c6.343,4.676,13.828,7.889,21.956,9.123V169.9c0,4.142,3.358,7.5,7.5,7.5c4.143,0,7.5-3.358,7.5-7.5v-10.565   c8.128-1.234,15.612-4.447,21.956-9.123l7.491,7.491c1.465,1.464,3.385,2.197,5.304,2.197c1.919,0,3.839-0.732,5.304-2.197   c2.929-2.929,2.929-7.678,0-10.606l-7.491-7.491c4.676-6.343,7.889-13.828,9.123-21.956h10.565c4.143,0,7.5-3.358,7.5-7.5   C323.254,106.008,319.897,102.65,315.754,102.65z M290.751,110.164c-0.007,19.151-15.586,34.731-34.738,34.738   c-0.004,0-0.009-0.001-0.013-0.001c-0.004,0-0.009,0.001-0.013,0.001c-19.151-0.007-34.731-15.586-34.738-34.738   c0-0.004,0.001-0.009,0.001-0.013c0-0.004-0.001-0.008-0.001-0.013c0.009-19.154,15.592-34.735,34.746-34.738   c0.002,0,0.004,0,0.006,0s0.004,0,0.006,0c19.155,0.004,34.737,15.584,34.744,34.738c0,0.004-0.001,0.008-0.001,0.013   C290.75,110.155,290.751,110.16,290.751,110.164z\"></path>	</g></g><g>	<g>		<path d=\"M256.002,85.119c-13.802,0-25.032,11.229-25.032,25.031c0,13.803,11.229,25.032,25.032,25.032   c13.803,0,25.031-11.229,25.031-25.031C281.033,96.348,269.804,85.119,256.002,85.119z M256.002,120.182   c-5.532,0-10.032-4.5-10.032-10.031c0-5.532,4.5-10.032,10.032-10.032c5.531,0,10.031,4.5,10.031,10.032   C266.033,115.682,261.533,120.182,256.002,120.182z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>							\n												<h5>\n													Goal Setting												</h5>\n											<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xodm=\"http://www.corel.com/coreldraw/odm/2003\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_2077007814064\"><g id=\"_200306976\"><path d=\"m256 319.44c-1.59 0-3.12-.63-4.24-1.75-11.13-11.13-22.33-21.98-33.17-32.48-62.94-60.98-117.31-113.65-117.31-179.39 0-44.31 36.05-80.35 80.36-80.35 37.74 0 57.46 18.43 74.36 48.87 16.9-30.44 36.62-48.87 74.35-48.87 44.31 0 80.36 36.04 80.36 80.35 0 65.74-54.36 118.41-117.31 179.39-10.83 10.49-22.03 21.35-33.16 32.48-1.12 1.12-2.65 1.75-4.24 1.75zm-74.36-281.97c-37.69 0-68.35 30.66-68.35 68.35 0 60.66 52.67 111.69 113.65 170.77 9.5 9.2 19.27 18.67 29.06 28.39 9.78-9.72 19.56-19.19 29.06-28.39 60.98-59.08 113.65-110.11 113.65-170.77 0-37.69-30.66-68.35-68.35-68.35-31.58 0-49.63 13.72-68.99 52.45-1.02 2.03-3.1 3.31-5.37 3.31s-4.35-1.28-5.37-3.31c-19.36-38.73-37.41-52.45-68.99-52.45z\"></path></g><g><g id=\"_200307000\"><path d=\"m268.35 249.13h-24.7c-3.32 0-6-2.68-6-6v-11.56c-2.07-.72-4.09-1.56-6.06-2.51l-8.18 8.18c-1.13 1.12-2.65 1.75-4.25 1.75-1.59 0-3.11-.63-4.24-1.75l-17.47-17.47c-2.34-2.34-2.34-6.14 0-8.49l8.18-8.18c-.95-1.97-1.79-3.99-2.51-6.06h-11.57c-3.31 0-6-2.68-6-6v-24.7c0-3.32 2.69-6 6-6h11.57c.72-2.07 1.56-4.09 2.51-6.06l-8.18-8.18c-1.13-1.13-1.76-2.65-1.76-4.24 0-1.6.63-3.12 1.76-4.25l17.47-17.47c2.34-2.34 6.14-2.34 8.49 0l8.18 8.18c1.96-.95 3.99-1.79 6.05-2.51v-11.56c0-3.32 2.69-6 6-6h24.71c3.31 0 6 2.68 6 6v11.56c2.07.72 4.09 1.56 6.06 2.51l8.18-8.18c1.12-1.12 2.65-1.76 4.24-1.76s3.12.64 4.24 1.76l17.48 17.47c1.12 1.13 1.75 2.65 1.75 4.25 0 1.59-.63 3.11-1.75 4.24l-8.19 8.18c.96 1.97 1.8 3.99 2.52 6.06h11.56c3.32 0 6 2.68 6 6v24.7c0 3.32-2.68 6-6 6h-11.56c-.72 2.07-1.56 4.09-2.52 6.06l8.19 8.18c1.12 1.13 1.75 2.65 1.75 4.24 0 1.6-.63 3.12-1.75 4.25l-17.47 17.47c-2.35 2.34-6.15 2.34-8.49 0l-8.18-8.18c-1.97.95-3.99 1.79-6.06 2.51v11.57c0 3.31-2.69 5.99-6 5.99zm-18.7-12h12.7v-10.02c0-2.74 1.86-5.14 4.52-5.82 4.06-1.03 7.95-2.64 11.56-4.79 2.36-1.4 5.37-1.02 7.31.92l7.09 7.09 8.99-8.99-7.09-7.09c-1.94-1.94-2.32-4.95-.92-7.31 2.15-3.6 3.76-7.49 4.79-11.56.68-2.66 3.07-4.52 5.82-4.52h10.02v-12.7h-10.02c-2.75 0-5.14-1.87-5.82-4.52-1.03-4.07-2.64-7.95-4.79-11.56-1.4-2.36-1.03-5.37.92-7.31l7.09-7.1-8.99-8.98-7.09 7.09c-1.94 1.94-4.95 2.32-7.31.92-3.61-2.15-7.5-3.77-11.56-4.8-2.66-.67-4.52-3.07-4.52-5.81v-10.03h-12.7v10.03c0 2.74-1.87 5.14-4.53 5.81-4.05 1.04-7.94 2.65-11.55 4.8-2.36 1.4-5.37 1.02-7.31-.92l-7.1-7.09-8.98 8.99 7.09 7.09c1.94 1.94 2.32 4.95.92 7.31-2.15 3.61-3.76 7.5-4.8 11.55-.67 2.66-3.07 4.53-5.81 4.53h-10.02v12.7h10.02c2.74 0 5.14 1.86 5.81 4.52 1.04 4.06 2.65 7.95 4.8 11.56 1.4 2.36 1.02 5.37-.92 7.31l-7.09 7.09 8.98 8.99 7.1-7.09c1.94-1.94 4.95-2.32 7.31-.92 3.61 2.15 7.5 3.76 11.56 4.79 2.66.68 4.52 3.08 4.52 5.82z\"></path></g><g id=\"_200306760\"><path d=\"m256 215.48c-20.29 0-36.8-16.5-36.8-36.79s16.51-36.8 36.8-36.8 36.79 16.51 36.79 36.8-16.5 36.79-36.79 36.79zm0-61.59c-13.67 0-24.8 11.13-24.8 24.8s11.13 24.79 24.8 24.79 24.79-11.12 24.79-24.79-11.12-24.8-24.79-24.8z\"></path></g></g><g id=\"_200306784\"><path d=\"m461.9 340.14c-.4 0-.8-.04-1.21-.12-2.77-.57-4.77-3.01-4.79-5.84-.01-.8-.54-16.35-18.14-25.35-4.77 6.05-14.98 15.83-31.26 15.83-7.09 0-14.53-1.91-22.17-5.68-1.97 2.49-4.39 6.45-4.71 11.19-.17 2.67-2.1 4.89-4.71 5.46-2.62.57-5.29-.67-6.56-3.03-.73-1.35-17.54-33.58 6.24-66.87.25-.34.54-.67.85-.95.53-.48 13.04-11.64 29.73-11.64 8.33 0 16.16 2.73 23.32 8.11 6.78.84 29.41 4.94 40.34 22.87 8.21 13.48 7.74 31.11-1.42 52.39-.96 2.24-3.15 3.63-5.51 3.63zm-26.24-44.82c.73 0 1.45.13 2.16.41 12.4 4.82 19.68 12.11 23.97 19.04 1.81-9.72.76-17.87-3.18-24.36-9.39-15.48-32.65-17.38-32.88-17.39-1.23-.09-2.4-.56-3.35-1.33-5.36-4.35-11.14-6.55-17.2-6.55-10.52 0-19.21 6.52-21.25 8.17-10.03 14.4-10.85 28.57-9.39 38.73 2.4-3.14 4.55-4.96 4.74-5.12 1.93-1.61 4.66-1.85 6.84-.59 7.27 4.2 14.13 6.33 20.38 6.33 15.81 0 23.56-13.64 23.88-14.22 1.09-1.97 3.15-3.12 5.28-3.12z\"></path></g><g id=\"_200307264\"><path d=\"m419.46 411.58c-.16 0-.32 0-.48 0-10.3-.15-20.06-5.17-28.23-14.52-7.44-8.5-13.2-20.37-16.78-34.51-9.81-1.95-15.33-9.01-16.53-15.9-1.66-9.54 3.98-18.57 14.03-22.48 3.08-1.2 6.56.33 7.76 3.42s-.33 6.56-3.41 7.77c-5.64 2.19-7.06 6.34-6.56 9.23.53 3.02 3.36 6.31 9.74 6.48 2.77.08 5.12 2.03 5.71 4.73 5.7 26.37 19.22 43.55 34.45 43.78h.29c14.2 0 26.75-15.15 32.81-39.65.62-2.5 2.75-4.32 5.31-4.54 5.81-.5 8.33-3.74 8.74-6.61.43-2.97-1.08-6.91-6.58-9.05-3.09-1.2-4.62-4.68-3.42-7.76 1.2-3.09 4.68-4.62 7.77-3.42 9.78 3.8 15.45 12.62 14.11 21.93-1.15 8.02-6.99 14.03-15.29 16.15-7.91 27.89-24.31 44.95-43.44 44.95z\"></path></g><g id=\"_200306808\"><path d=\"m332.55 486.53c-1.59 0-3.11-.63-4.24-1.75-1.12-1.13-1.76-2.65-1.76-4.25 0-44.88 21.25-52.28 38.32-58.24 13.67-4.77 23.55-8.21 24.07-29.7.08-3.31 2.86-5.89 6.15-5.85 3.31.08 5.93 2.83 5.85 6.15-.73 29.78-17.41 35.6-32.12 40.73-15.3 5.34-28.64 9.99-30.13 40.91h161.17c-1.49-30.92-14.83-35.57-30.13-40.91-14.73-5.13-31.42-10.96-32.12-40.8-.08-3.31 2.54-6.06 5.85-6.14 3.31-.11 6.06 2.54 6.14 5.86.51 21.53 10.4 24.98 24.08 29.75 17.07 5.96 38.32 13.36 38.32 58.24 0 3.31-2.69 6-6 6z\"></path></g><g id=\"_200306616\"><path d=\"m419.27 443.04c-15.8 0-30.68-6.12-41.9-17.25-2.36-2.33-2.38-6.13-.04-8.48 2.33-2.35 6.13-2.37 8.48-.04 8.96 8.88 20.85 13.77 33.46 13.77 12.62 0 24.5-4.89 33.46-13.77 2.36-2.33 6.16-2.31 8.49.04s2.31 6.15-.04 8.48c-11.22 11.13-26.11 17.25-41.91 17.25z\"></path></g><g id=\"_200307672\"><path d=\"m374.04 486.53c-3.32 0-6-2.68-6-6v-19.82c0-3.31 2.68-6 6-6 3.31 0 6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307888\"><path d=\"m464.51 486.53c-3.31 0-6-2.68-6-6v-19.82c0-3.31 2.69-6 6-6s6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307744\"><path d=\"m135.35 340.14c-.4 0-.8-.04-1.21-.12-2.77-.57-4.77-3.01-4.79-5.84-.01-.8-.54-16.35-18.14-25.35-4.77 6.05-14.98 15.83-31.26 15.83-7.09 0-14.53-1.91-22.17-5.68-1.97 2.49-4.39 6.45-4.7 11.19-.18 2.67-2.11 4.89-4.72 5.46-2.62.57-5.29-.67-6.56-3.03-.72-1.35-17.54-33.58 6.24-66.87.25-.34.54-.67.86-.95.52-.48 13.03-11.64 29.73-11.64 8.32 0 16.16 2.73 23.31 8.11 6.78.84 29.41 4.94 40.34 22.87 8.22 13.48 7.74 31.11-1.42 52.39-.96 2.24-3.15 3.63-5.51 3.63zm-26.25-44.82c.72 0 1.46.13 2.17.41 12.4 4.82 19.69 12.1 23.97 19.04 1.81-9.72.76-17.87-3.18-24.36-9.39-15.48-32.65-17.37-32.88-17.39-1.22-.09-2.4-.56-3.35-1.33-5.36-4.35-11.14-6.55-17.2-6.55-10.52 0-19.21 6.52-21.24 8.17-10.04 14.4-10.85 28.57-9.4 38.73 2.4-3.14 4.55-4.96 4.74-5.12 1.93-1.61 4.67-1.85 6.84-.59 7.27 4.2 14.13 6.33 20.38 6.33 16.01 0 23.79-14.05 23.86-14.2 1.08-1.98 3.14-3.14 5.29-3.14z\"></path></g><g id=\"_200307960\"><path d=\"m92.91 411.58c-.16 0-.32 0-.48 0-10.3-.15-20.06-5.17-28.23-14.52-7.44-8.5-13.2-20.37-16.79-34.51-9.8-1.95-15.32-9.01-16.52-15.9-1.66-9.54 3.98-18.57 14.03-22.48 3.08-1.2 6.56.33 7.76 3.42s-.33 6.56-3.41 7.77c-5.64 2.19-7.06 6.34-6.56 9.23.53 3.02 3.36 6.31 9.74 6.48 2.77.08 5.12 2.03 5.71 4.73 5.7 26.37 19.22 43.55 34.45 43.78h.29c14.2 0 26.75-15.15 32.81-39.65.62-2.5 2.75-4.32 5.31-4.54 5.81-.5 8.33-3.74 8.74-6.61.43-2.97-1.08-6.91-6.58-9.05-3.09-1.2-4.62-4.68-3.42-7.76 1.2-3.09 4.68-4.62 7.77-3.42 9.78 3.8 15.45 12.62 14.11 21.93-1.16 8.02-6.99 14.03-15.3 16.15-7.9 27.89-24.3 44.95-43.43 44.95z\"></path></g><g id=\"_200307408\"><path d=\"m6 486.53c-1.59 0-3.11-.63-4.24-1.75-1.12-1.13-1.76-2.65-1.76-4.25 0-44.88 21.25-52.28 38.32-58.24 13.67-4.77 23.55-8.21 24.08-29.7.08-3.31 2.82-5.89 6.14-5.85 3.31.08 5.93 2.83 5.85 6.15-.73 29.78-17.41 35.6-32.12 40.73-15.3 5.34-28.64 9.99-30.13 40.91h161.17c-1.5-30.92-14.83-35.57-30.13-40.91-14.73-5.13-31.42-10.96-32.12-40.8-.08-3.31 2.54-6.06 5.85-6.14 3.27-.11 6.06 2.54 6.14 5.86.51 21.53 10.4 24.98 24.08 29.75 17.07 5.96 38.32 13.36 38.32 58.24 0 3.31-2.69 6-6 6h-173.45z\"></path></g><g id=\"_200307648\"><path d=\"m92.73 443.04c-15.81 0-30.69-6.12-41.91-17.25-2.36-2.33-2.37-6.13-.04-8.48s6.13-2.37 8.48-.04c8.97 8.88 20.85 13.77 33.47 13.77 12.61 0 24.49-4.89 33.45-13.77 2.36-2.33 6.16-2.31 8.49.04s2.31 6.15-.04 8.48c-11.22 11.13-26.11 17.25-41.9 17.25z\"></path></g><g id=\"_200307720\"><path d=\"m47.49 486.53c-3.32 0-6-2.68-6-6v-19.82c0-3.31 2.68-6 6-6 3.31 0 6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307456\"><path d=\"m137.96 486.53c-3.31 0-6-2.68-6-6v-19.82c0-3.31 2.69-6 6-6s6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307840\"><path d=\"m94.44 269.46c-3.31 0-6-2.68-6-6v-23.34c0-8.01 6.52-14.53 14.53-14.53h70.38c3.31 0 6 2.69 6 6 0 3.32-2.69 6-6 6h-70.38c-1.37 0-2.53 1.16-2.53 2.53v23.34c0 3.32-2.68 6-6 6zm323.12-1.73c-3.32 0-6-2.69-6-6v-21.61c0-1.37-1.16-2.53-2.53-2.53h-70.38c-3.31 0-6-2.68-6-6 0-3.31 2.69-6 6-6h70.37c8.02 0 14.54 6.52 14.54 14.53v21.61c0 3.31-2.69 6-6 6z\"></path></g></g></g></svg>							\n												<h5>\n													Relationship Improvement												</h5>\n											<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Skill Development												</h5>\n											<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Tailored Approaches												</h5>\n											<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.</p>										\n		Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:28:53', '2026-06-17 10:28:53', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=528', 0, 'revision', '', 0),
(529, 1, '2026-06-17 10:29:19', '2026-06-17 10:29:19', '', 'mindful_18810720', '', 'inherit', 'closed', 'closed', '', 'mindful_18810720', '', '', '2026-06-17 10:29:19', '2026-06-17 10:29:19', '', 14, 'https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/mindful_18810720.svg', 0, 'attachment', 'image/svg+xml', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(530, 1, '2026-06-17 10:29:23', '2026-06-17 10:29:23', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />																<h2>Psychotherapy</h2>		<ul style=\"margin-left: 18px;\">\n 	<li>Individual therapy</li>\n 	<li>Couples/marriage therapy</li>\n 	<li>Family therapy</li>\n 	<li>Child/teen therapy</li>\n 	<li>Online therapy</li>\n 	<li>COMMON SPECIALTIES &amp; approaches</li>\n 	<li>Anxiety therapy</li>\n 	<li>Cognitive behavioral therapy (CBT)</li>\n 	<li>Depression counseling</li>\n 	<li>Dialectical behavior therapy (DBT)</li>\n 	<li>Grief &amp; loss counseling</li>\n 	<li>Relational therapy</li>\n</ul>			<h3>Therapy can be highly beneficial for mental health for several reasons:</h3>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 64 64.1999969\" width=\"512\"><path d=\"m51.2529297 42.0226555c.6357422-.6357422.9863281-1.4804688.9863281-2.3808594 0-.8994141-.3500977-1.7441406-.9863281-2.3808594-1.3125-1.3125-3.4492188-1.3125-4.7617188 0l-9.3178711 9.3173828c-.7426758.7441406-1.1518555 1.7314453-1.1518555 2.7822266v11.6396484c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-5.109375l11.5913086-11.5917969c.1875-.1875.2929688-.4414062.2929688-.7070312v-11.5488281c0-2.0097656-1.6347656-3.6445312-3.6445312-3.6445312s-3.6450195 1.6347656-3.6450195 3.6445312v8.6582031l-4.2260742 4.2255859c-.1459961.1455078-.3828125.1435547-.527832 0-.1455078-.1455078-.1455078-.3818359 0-.5273438zm-3.7910156 4.3183594c.9243164.9248047 2.4306641.9267578 3.355957 0l4.519043-4.5185547c.1875-.1875.2929688-.4414062.2929688-.7070312v-9.0722656c0-.9072266.737793-1.6445312 1.6450195-1.6445312.9067383 0 1.6445312.7373047 1.6445312 1.6445312v11.1347656l-11.5913086 11.5917968c-.1875.1875-.2929688.4414062-.2929688.7070312v4.5234375h-9.0136719v-10.6396484c0-.5166016.2011719-1.0029297.5664062-1.3681641l9.3173828-9.3173828c.5332031-.5332031 1.4008789-.5332031 1.9331055 0 .2583008.2587891.4008789.6015625.4008789.9667969s-.1420898.7089844-.4003906.9667969l-2.3769531 2.3769531c-.9252929.9248047-.9252929 2.4306641.0000001 3.3554688z\"></path><path d=\"m6.7250977 28.398632c-2.0097656 0-3.6445312 1.6347656-3.6445312 3.6445312v11.5488281c0 .265625.1054688.5195312.2929688.7070312l11.5913086 11.5917969v5.109375c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-11.6396483c0-1.0507812-.4091797-2.0380859-1.1523438-2.7822266l-9.3173828-9.3173828c-1.3125-1.3125-3.4487305-1.3125-4.762207 0-.6357422.6367188-.9858398 1.4814453-.9858398 2.3808594 0 .9003906.3505859 1.7451172.9863281 2.3808594l2.3769531 2.3769531c.1455078.1455078.1455078.3818359 0 .5273438s-.3823242.1435547-.527832 0l-4.2260742-4.2255859v-8.6582031c-.0000002-2.0097657-1.6352541-3.6445314-3.6450197-3.6445314zm6.4570312 17.9423829c.925293.9267578 2.4316406.9257812 3.355957 0 .925293-.9248047.925293-2.4306641 0-3.3554688l-2.3769531-2.3769531c-.2583008-.2578125-.4003906-.6015625-.4003906-.9667969s.1425781-.7080078.4003906-.9667969c.5332031-.5332031 1.4003906-.5332031 1.9335938 0l9.3168945 9.3173828c.3657227.3652344.5668945.8515625.5668945 1.3681641v10.6396484h-9.0136719v-4.5234375c0-.265625-.1054688-.5195312-.2929688-.7070312l-11.5913085-11.5917969v-11.1347656c0-.9072266.737793-1.6445312 1.6445312-1.6445312.9072266 0 1.6450195.7373047 1.6450195 1.6445312v9.0722656c0 .265625.1054688.5195312.2929688.7070312z\"></path><path d=\"m32 2.0998046c-10.0986328 0-18.3144531 8.2158203-18.3144531 18.3144531s8.2158203 18.3144525 18.3144531 18.3144525 18.3144531-8.2158203 18.3144531-18.3144531-8.2158203-18.3144525-18.3144531-18.3144525zm0 2.0000003c7.614502 0 14.0088501 5.2510376 15.798584 12.3173819-3.1233521-2.2542105-8.8903809-3.70996-15.798584-3.70996s-12.6752319 1.4557495-15.798584 3.70996c1.7897339-7.0663443 8.184082-12.3173819 15.798584-12.3173819zm16.3144531 16.3144521c0 2.6992188-6.7001953 5.7070312-16.3144531 5.7070312s-16.3144531-3.0078125-16.3144531-5.7070312 6.7001953-5.7070302 16.3144531-5.7070302 16.3144531 3.0078115 16.3144531 5.7070302zm-16.3144531 16.3144532c-7.614502 0-14.0088501-5.2510376-15.798584-12.3173828 3.1233521 2.2542114 8.8903809 3.7099609 15.798584 3.7099609s12.6752319-1.4557495 15.798584-3.7099609c-1.7897339 7.0663452-8.184082 12.3173828-15.798584 12.3173828z\"></path></svg>							\n												<h5>\n													Safe Space												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"friendship-work\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><circle cx=\"72\" cy=\"102\" r=\"4\"></circle><circle cx=\"64\" cy=\"50\" r=\"4\"></circle><path d=\"m228 98h4v4c0 2.211 1.789 4 4 4s4-1.789 4-4v-4h4c2.211 0 4-1.789 4-4s-1.789-4-4-4h-4v-4c0-2.211-1.789-4-4-4s-4 1.789-4 4v4h-4c-2.211 0-4 1.789-4 4s1.789 4 4 4z\"></path><path d=\"m132 218h-16v-5.977c0-13.759-8.223-25.608-20-30.964v-35.059c0-.031-.017-.057-.018-.088 4.839-3.653 8.018-9.396 8.018-15.912 0-2.211-1.789-4-4-4h-30.707c-7.328 0-13.293 5.965-13.293 13.293v25.953c0 5.361 2.096 10.206 5.444 13.892-14.614 3.818-25.444 17.092-25.444 32.885v49.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-49.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v9.977c0 2.211 1.789 4 4 4h8v8h-20v-17.582c0-2.211-1.789-4-4-4s-4 1.789-4 4v21.582 24c0 2.211 1.789 4 4 4s4-1.789 4-4v-20h32c6.617 0 12-5.383 12-12s-5.383-12-12-12zm-68-78.707c0-2.918 2.375-5.293 5.293-5.293h26.023c-1.652 4.656-6.102 8-11.316 8h-20zm12.754 38.707c-7.031 0-12.754-5.723-12.754-12.754v-15.246h24v28zm55.246 56h-4v-8h4c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m56 210c-2.211 0-4 1.789-4 4v48c0 2.211 1.789 4 4 4s4-1.789 4-4v-48c0-2.211-1.789-4-4-4z\"></path><path d=\"m238.009 178.998c3.704-3.95 5.991-9.243 5.991-15.072v-9.926c0-11.027-8.973-20-20-20s-20 8.973-20 20v27.06c-11.777 5.355-20 17.205-20 30.964v45.976c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v45.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-15.99-11.1-29.402-25.991-33.025zm-26.009-.998v-24c0-6.617 5.383-12 12-12s12 5.383 12 12v9.926c0 7.762-6.312 14.074-14.074 14.074z\"></path><path d=\"m204 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m244 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m185.41 118.613c.102-.242.203-.488.301-.734 5.809-.832 10.289-5.844 10.289-11.879 0-1.206-.223-2.353-.555-3.452 10.229-11.777 15.466-22.512 15.466-31.899-.001-20.208-15.274-36.649-34.048-36.649-7.633 0-14.91 2.711-20.863 7.707-5.953-4.996-13.23-7.707-20.863-7.707-18.773 0-34.047 16.441-34.047 36.648 0 9.39 5.238 20.125 15.465 31.903-.333 1.098-.555 2.244-.555 3.449 0 6.035 4.48 11.047 10.289 11.879.098.246.199.488.301.73-3.516 4.699-3.141 11.406 1.125 15.672 4.27 4.27 10.98 4.633 15.672 1.129.242.102.488.203.734.301.832 5.809 5.844 10.289 11.879 10.289s11.047-4.48 11.879-10.289c.246-.098.492-.199.734-.301 4.688 3.504 11.398 3.141 15.672-1.129 4.262-4.261 4.641-10.965 1.125-15.668zm-50.273-76.613c6.707 0 13.09 2.82 17.965 7.945 1.516 1.586 4.281 1.586 5.797 0 4.874-5.125 11.257-7.945 17.964-7.945 14.363 0 26.047 12.852 26.047 28.648 0 6.991-4.298 15.714-12.379 25.343-1.433-.939-3.052-1.616-4.82-1.87-.098-.246-.199-.488-.301-.73 3.516-4.699 3.141-11.406-1.125-15.672-4.273-4.27-10.984-4.637-15.672-1.129-.242-.102-.488-.203-.734-.301-.832-5.809-5.844-10.289-11.879-10.289s-11.047 4.48-11.879 10.289c-.246.098-.492.199-.734.301-4.691-3.508-11.402-3.141-15.672 1.129-4.262 4.262-4.641 10.965-1.125 15.668-.102.242-.203.488-.301.734-1.769.253-3.387.931-4.821 1.87-8.079-9.625-12.378-18.35-12.378-25.343 0-15.796 11.683-28.648 26.047-28.648zm47.687 68c-1.77 0-3.328 1.16-3.832 2.855-.488 1.629-1.117 3.16-1.875 4.555-.848 1.562-.562 3.492.695 4.746l.812.812c1.562 1.559 1.562 4.098.004 5.656-1.562 1.566-4.098 1.559-5.66 0l-.82-.82c-1.254-1.254-3.18-1.535-4.73-.691-1.426.773-2.957 1.402-4.555 1.875-1.699.504-2.863 2.062-2.863 3.836v1.176c0 2.207-1.793 4-4 4s-4-1.793-4-4v-1.176c0-1.773-1.164-3.332-2.863-3.836-1.598-.473-3.129-1.102-4.555-1.875-.598-.324-1.254-.48-1.902-.48-1.035 0-2.059.402-2.828 1.172l-.82.82c-1.559 1.559-4.094 1.566-5.66 0-1.559-1.559-1.559-4.098-.008-5.648l.824-.82c1.258-1.254 1.543-3.184.695-4.746-.758-1.395-1.387-2.926-1.875-4.555-.504-1.695-2.062-2.855-3.832-2.855h-1.176c-2.207 0-4-1.793-4-4s1.793-4 4-4h1.176c1.77 0 3.328-1.16 3.832-2.855.488-1.629 1.117-3.16 1.875-4.555.848-1.562.562-3.492-.695-4.746l-.812-.812c-1.562-1.559-1.562-4.098-.004-5.656 1.57-1.562 4.105-1.559 5.66 0l.82.82c1.25 1.25 3.18 1.531 4.73.691 1.426-.773 2.957-1.402 4.555-1.875 1.699-.504 2.863-2.062 2.863-3.836v-1.177c0-2.207 1.793-4 4-4s4 1.793 4 4v1.176c0 1.773 1.164 3.332 2.863 3.836 1.598.473 3.129 1.102 4.555 1.875 1.555.844 3.48.562 4.73-.691l.82-.82c1.562-1.559 4.098-1.566 5.66 0 1.559 1.559 1.559 4.098.008 5.648l-.824.82c-1.258 1.254-1.543 3.184-.695 4.746.758 1.395 1.387 2.926 1.875 4.555.504 1.695 2.062 2.855 3.832 2.855h1.176c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m156 90c-8.824 0-16 7.176-16 16s7.176 16 16 16 16-7.176 16-16-7.176-16-16-16zm0 24c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path></g></svg>							\n												<h5>\n													Emotional Support												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m206.102 400.162c-46.373 0-92.751-17.652-128.056-52.957-34.207-34.208-53.046-79.687-53.046-128.061s18.839-93.853 53.046-128.06c70.615-70.615 185.512-70.605 256.117 0 70.614 70.614 70.614 185.507 0 256.121-35.305 35.305-81.683 52.957-128.061 52.957zm0-346.791c-42.47 0-84.94 16.167-117.271 48.498-64.665 64.666-64.665 169.885 0 234.551 64.666 64.666 169.891 64.661 234.547 0 31.328-31.328 48.578-72.978 48.578-117.276 0-44.297-17.25-85.947-48.578-117.275-32.33-32.331-74.801-48.498-117.276-48.498z\"></path><path d=\"m206.102 357.901c-37.063 0-71.905-14.435-98.109-40.643-54.098-54.1-54.098-142.128 0-196.227 54.1-54.1 142.124-54.09 196.223 0 54.1 54.099 54.1 142.128 0 196.227-26.208 26.208-61.051 40.643-98.114 40.643zm0-262.194c-31.626 0-63.25 12.036-87.324 36.109-48.151 48.156-48.151 126.502 0 174.657 23.323 23.328 54.338 36.174 87.324 36.174s64.001-12.845 87.329-36.174c48.151-48.156 48.151-126.502 0-174.657-24.078-24.073-55.703-36.109-87.329-36.109z\"></path><path d=\"m297.428 421.907c-8.813 0-17.618-3.352-24.326-10.061-2.978-2.978-2.978-7.805 0-10.785 2.98-2.98 7.806-2.98 10.786 0 7.468 7.468 19.619 7.468 27.087 0l77.045-77.05c3.615-3.62 5.606-8.427 5.606-13.54 0-5.115-1.991-9.921-5.606-13.541-2.979-2.98-2.979-7.805 0-10.785 2.98-2.979 7.806-2.979 10.785 0 13.412 13.412 13.412 35.241 0 48.652l-77.045 77.05c-6.709 6.707-15.523 10.06-24.332 10.06z\"></path><path d=\"m402.881 461.874c-12.275 0-23.809-4.783-32.489-13.462l-47.992-47.991c-2.979-2.98-2.979-7.805 0-10.785l54.194-54.193c2.979-2.979 7.805-2.979 10.785 0l47.992 47.991c8.679 8.68 13.461 20.215 13.461 32.49s-4.782 23.809-13.461 32.489c-8.68 8.679-20.216 13.461-32.49 13.461zm-64.303-66.846 42.599 42.599c11.967 11.967 31.442 11.967 43.408 0 11.968-11.968 11.968-31.442 0-43.408l-42.599-42.6z\"></path><path d=\"m467.373 461.874h-355.566c-4.211 0-7.627-3.417-7.627-7.628s3.416-7.627 7.627-7.627h355.566c4.211 0 7.627 3.416 7.627 7.627s-3.416 7.628-7.627 7.628z\"></path><path d=\"m401.258 421.926c-1.951 0-3.904-.744-5.392-2.234l-21.675-21.679c-2.98-2.979-2.98-7.806 0-10.786 2.979-2.979 7.805-2.979 10.785 0l21.675 21.68c2.98 2.979 2.98 7.805 0 10.785-1.491 1.489-3.442 2.234-5.393 2.234z\"></path><path d=\"m206.102 305.102c-.814 0-1.628-.129-2.413-.392-3.814-1.272-41.556-24.446-49.383-62.342-6.668-32.305 9.048-65.739 46.716-99.385 2.89-2.583 7.269-2.583 10.16 0 37.668 33.641 53.384 67.079 46.715 99.38-7.826 37.897-45.569 61.076-49.383 62.347-.783.263-1.598.392-2.412.392zm0-146.07c-27.603 26.133-40.27 51.358-37.674 75.049 3.138 28.626 28.11 47.967 37.674 54.392 9.564-6.426 34.541-25.762 37.679-54.392 2.597-23.691-10.075-48.916-37.679-75.049z\"></path><path d=\"m212.691 305.102c-3.48 0-5.675-.164-6.082-.198-2.652-.224-5.001-1.813-6.192-4.192-.029-.06-.243-.501-.268-.561-1.658-3.541-.373-7.757 2.979-9.768 10.835-6.515 63.212-41.869 30.112-98.402-1.073-1.832-1.331-4.027-.715-6.062.615-2.031 2.045-3.715 3.957-4.648 14.42-7.027 32.256-12.021 53.007-14.842 3.889-.571 7.478 1.927 8.427 5.685 11.51 45.499 7.364 80.353-12.324 103.586-22.525 26.577-58.58 29.402-72.901 29.402zm37.744-113.333c22.007 44.953-.696 78.336-19.848 96.52 13.933-2.384 31.348-8.268 43.364-22.45 15.403-18.178 19.019-46.169 10.775-83.267-12.915 2.146-24.4 5.225-34.291 9.197z\"></path><path d=\"m199.553 305.102c-14.291 0-50.42-2.82-72.944-29.416-19.678-23.233-23.824-58.082-12.314-103.571.948-3.758 4.509-6.256 8.422-5.685 20.756 2.821 38.592 7.816 53.012 14.842 1.912.933 3.342 2.617 3.958 4.648.615 2.035.358 4.23-.715 6.062-33.1 56.533 19.276 91.887 30.111 98.402 3.392 2.036 4.662 6.332 2.925 9.887-1.182 2.413-3.734 4.409-6.411 4.633-.408.035-2.589.198-6.044.198zm-72.07-122.529c-8.243 37.088-4.633 65.079 10.765 83.257 12.007 14.177 29.426 20.066 43.364 22.45-19.147-18.184-41.849-51.562-19.837-96.51-9.892-3.973-21.371-7.052-34.292-9.197z\"></path><path d=\"m205.154 304.547c-4.211 0-7.627-3.417-7.627-7.628v-71.533c0-4.211 3.416-7.627 7.627-7.627s7.628 3.416 7.628 7.627v71.533c-.001 4.211-3.417 7.628-7.628 7.628z\"></path></g></svg>							\n												<h5>\n													Self-Exploration												</h5>\n											<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m295.544 178.256a6.741 6.741 0 0 0 -3.689-3.623 6.718 6.718 0 0 0 -8.727 3.475c-.058.16-.123.319-.193.475a6.715 6.715 0 0 0 3.572 8.482q.238.087.473.192a6.789 6.789 0 0 0 8.569-9zm4.657-15.648a21.3 21.3 0 0 1 -18.927 38.018l-.027-.012a21.345 21.345 0 0 1 -11.856-27.305 7.1 7.1 0 0 1 .358-.879 21.238 21.238 0 0 1 11.277-11.14 21.465 21.465 0 0 1 4.89-1.409 108.471 108.471 0 0 1 110.169-79.395l-7.5-9.84a7.256 7.256 0 0 1 11.533-8.807l18.139 23.785a7.255 7.255 0 0 1 -1.364 10.17l-23.793 18.138a7.256 7.256 0 0 1 -8.8-11.532l9.821-7.488a94.123 94.123 0 0 0 -93.917 67.7zm-136.607 130.062c-1.181-.462-2.53-.937-4.2-1.439-1.749-.526-3.761-1.034-5.893-1.571-2.249-.568-4.622-1.167-6.887-1.817a81.221 81.221 0 0 1 -7.736-2.626 52.681 52.681 0 0 1 -7.96-3.915 57.093 57.093 0 0 1 -5.122-3.558 19.314 19.314 0 0 1 -2.1 3.175 29.979 29.979 0 0 1 -4.78 4.617c-1.583 1.254-3.581 2.64-5.787 4.091-1.069.7-2 1.305-2.835 1.842v15.331a30.06 30.06 0 0 0 7.975 20.595 25.087 25.087 0 0 0 37.345 0 30.056 30.056 0 0 0 7.976-20.595v-14.13zm-3.794 117.75q-.863.314-1.737.606a66.691 66.691 0 0 1 -42.171 0q-.874-.292-1.736-.606 8.1 16.046 22.822 31.483 14.722-15.438 22.822-31.483zm-44.516-66.689-1.446 6.36a26.013 26.013 0 0 1 -8.247 14.073q-.63.554-1.295 1.069a86.352 86.352 0 0 0 2.3 24.838 49.4 49.4 0 0 0 13.842 7.2 53.4 53.4 0 0 0 33.079 0 49.4 49.4 0 0 0 13.842-7.2 86.282 86.282 0 0 0 2.3-24.786q-.7-.539-1.362-1.121a26.01 26.01 0 0 1 -8.247-14.073l-1.446-6.36a39.133 39.133 0 0 1 -43.323 0zm102.131 19.247c21.553 5.007 34.482 13.526 35.172 45.641v.142h.028v79.966a7.273 7.273 0 0 1 -7.272 7.273h-216.795a7.273 7.273 0 0 1 -7.273-7.273v-79.966a7.309 7.309 0 0 1 .049-.842c.911-33.257 15.2-40.822 38.733-45.728.5-7.586 1.773-17.265 3.2-28.09 2.421-18.4 5.3-40.261 5.3-60.319a67.9 67.9 0 0 1 19.627-47.875 66.563 66.563 0 0 1 94.957 0 67.889 67.889 0 0 1 19.627 47.875c0 22.494 5.342 45.587 9.591 63.955 2.279 9.851 4.261 18.419 5.062 25.241zm-46.7-31.379a44.85 44.85 0 0 0 7.42-24.8v-18.92a7.275 7.275 0 0 0 -4.889-6.873c-1.2-.525-2.455-1.065-4.1-1.717-1.832-.726-3.692-1.4-5.606-1.978-2.014-.606-4.2-1.158-6.517-1.742-2.01-.507-4.13-1.042-6.433-1.7-2.252-.647-4.44-1.344-6.372-2.113a37.981 37.981 0 0 1 -5.745-2.837 66.527 66.527 0 0 1 -8.659-6.687c-.68-.593-.82-.722-1.072-.939l.012-.014a14.573 14.573 0 0 0 -4.812-3.1c-6.5-2.195-9.224.041-10.259 6.5a21.51 21.51 0 0 0 -.208 2.607 14.785 14.785 0 0 1 -.37 3.3 3.848 3.848 0 0 1 -.715 1.241 16.145 16.145 0 0 1 -2.507 2.344c-1.423 1.129-3.022 2.244-4.707 3.353-1.127.741-3.346 2.131-5.627 3.557a7.274 7.274 0 0 0 -3.8 6.392v19.327a44.847 44.847 0 0 0 7.42 24.8l-3.479 15.309a11.711 11.711 0 0 1 -3.7 6.345 18.2 18.2 0 0 1 -8.506 3.875c-3.592.726-8.189 1.542-12.649 2.326.575-6.608 1.632-14.641 2.8-23.479 2.5-19 5.467-41.557 5.467-62.194a53.45 53.45 0 0 1 15.423-37.7 52.155 52.155 0 0 1 74.275 0 53.45 53.45 0 0 1 15.423 37.7c0 24.013 5.564 48.064 9.989 67.193 1.675 7.243 3.177 13.738 4.1 19.051l-2.054-.362c-4.821-.846-9.929-1.744-13.842-2.535a18.2 18.2 0 0 1 -8.506-3.875 11.711 11.711 0 0 1 -3.7-6.345l-3.482-15.31zm-41.01 149.856h-45.614a7.289 7.289 0 0 0 -.715-1.2 26.958 26.958 0 0 1 -5.261-16.38q0-9.969 5.972-22.523a7.256 7.256 0 0 0 -13.125-6.193q-7.392 15.54-7.393 28.716a41.569 41.569 0 0 0 3.738 17.583h-31.487v-72.697c0-.137 0-.274-.012-.41.791-27.416 16-30.094 40.333-34.368 3.862-.679 7.947-1.4 13.53-2.518a102.527 102.527 0 0 0 9.229 40.627q10.013 22.326 30.808 43.123v26.24zm14.545-26.241q20.795-20.795 30.808-43.121a102.527 102.527 0 0 0 9.226-40.616c5.55 1.115 9.617 1.83 13.466 2.506 24.453 4.3 39.695 6.976 40.344 34.778h-.024v72.694h-31.422a41.554 41.554 0 0 0 3.738-17.583q0-13.176-7.392-28.716a7.256 7.256 0 1 0 -13.125 6.193q5.971 12.554 5.972 22.523a26.959 26.959 0 0 1 -5.262 16.38 7.359 7.359 0 0 0 -.715 1.2h-45.614zm314.57-424.669a17.825 17.825 0 0 1 12.368 4.889 15.841 15.841 0 0 1 4.992 11.445v162.839a15.841 15.841 0 0 1 -4.992 11.445 17.821 17.821 0 0 1 -12.368 4.889h-92.395a7.234 7.234 0 0 0 -3.9 1.136l-22.385 12.384q-.276.151-.532.323l-36.3 20.086v-26.656a7.273 7.273 0 0 0 -7.273-7.273h-55.544a17.824 17.824 0 0 1 -12.368-4.889 15.844 15.844 0 0 1 -4.991-11.445v-162.839a15.842 15.842 0 0 1 4.991-11.445 17.829 17.829 0 0 1 12.368-4.889zm-218.329-14.545h218.329a32.378 32.378 0 0 1 22.425 8.979 30.272 30.272 0 0 1 9.48 21.9v162.839a30.268 30.268 0 0 1 -9.48 21.9 32.375 32.375 0 0 1 -22.425 8.98h-90.544l-21.149 11.7q-.257.141-.518.259l-47.084 26.051a7.236 7.236 0 0 1 -10.73-6.335h-.037v-31.673h-48.267a32.378 32.378 0 0 1 -22.425-8.98 30.272 30.272 0 0 1 -9.48-21.9v-162.841a30.268 30.268 0 0 1 9.48-21.9 32.378 32.378 0 0 1 22.425-8.979zm53.254 72.778-10.193-10.192 10.193-10.193a7.272 7.272 0 0 0 -10.285-10.284l-10.192 10.191-10.192-10.19a7.272 7.272 0 0 0 -10.284 10.284l10.192 10.192-10.192 10.191a7.272 7.272 0 0 0 10.284 10.284l10.192-10.191 10.192 10.192a7.272 7.272 0 0 0 10.285-10.284zm123.469 89.042-10.192-10.192 10.192-10.193a7.272 7.272 0 0 0 -10.284-10.284l-10.192 10.192-10.192-10.191a7.272 7.272 0 1 0 -10.284 10.284l10.192 10.192-10.192 10.191a7.272 7.272 0 1 0 10.284 10.281l10.192-10.191 10.192 10.191a7.272 7.272 0 0 0 10.284-10.284z\" fill-rule=\"evenodd\"></path></svg>							\n												<h5>\n													Coping Strategies												</h5>\n											<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M248.298,398.776v-96.35c0-5.971-2.694-11.517-7.393-15.216l-59.928-47.132c-2.984-2.348-7.254-2.094-9.939,0.592   l-14.349,14.349c-2.986,2.985-4.637,7.118-4.53,11.338c0.106,4.215,1.961,8.252,5.079,11.069l30.406,27.556l-1.867,1.93   c-1.111,1.149-2.665,1.808-4.265,1.808h-5.366c-4.046,0-7.953-1.201-11.299-3.474l-66.646-45.245   c-1.237-0.838-1.976-2.237-1.976-3.742v-42.516c0-8.724-7.102-15.821-15.832-15.821h-23.54c-4.142,0-7.5,3.358-7.5,7.5v72.637   c0,6.404,3.145,12.405,8.408,16.048l46.124,31.979c3.404,2.359,8.077,1.513,10.437-1.89c2.36-3.404,1.514-8.077-1.89-10.437   l-46.128-31.982c-1.222-0.846-1.951-2.235-1.951-3.718v-65.137h16.039c0.458,0,0.832,0.368,0.832,0.821v42.516   c0,6.486,3.2,12.526,8.556,16.155l66.64,45.241c5.84,3.967,12.661,6.064,19.726,6.064h5.366c5.643,0,11.128-2.326,15.047-6.38   l2.254-2.331c2.749-2.837,4.193-6.572,4.066-10.518c-0.127-3.948-1.811-7.585-4.741-10.242l-30.836-27.946   c-0.039-0.036-0.143-0.129-0.148-0.327c-0.005-0.206,0.101-0.312,0.141-0.352l9.642-9.642l54.693,43.015   c1.061,0.834,1.668,2.084,1.668,3.427v88.844h-60.32v-24.995c0-6.607-3.24-12.792-8.658-16.538l-27.532-19.089   c-3.405-2.36-8.077-1.514-10.437,1.89s-1.514,8.077,1.89,10.437l27.541,19.095c1.375,0.951,2.196,2.522,2.196,4.205v24.995h-3.726   c-4.142,0-7.5,3.358-7.5,7.5v58.66c0,0.033,0.004,0.064,0.005,0.097V504.5c0,4.142,3.358,7.5,7.5,7.5h25.971   c4.142,0,7.5-3.358,7.5-7.5c0-4.142-3.358-7.5-7.5-7.5h-18.471v-47.64h71.535v8.07c0,0.016,0.002,0.032,0.002,0.048V497h-23.519   c-4.142,0-7.5,3.358-7.5,7.5c0,4.142,3.358,7.5,7.5,7.5h31.019c4.142,0,7.5-3.358,7.5-7.5v-62.64c0-0.016-0.002-0.032-0.002-0.048   v-42.92C248.293,398.853,248.298,398.815,248.298,398.776z M233.292,434.359h-71.54V406.27h3.62c0.036,0,0.07,0.005,0.106,0.005   h67.814V434.359z\"></path>	</g></g><g>	<g>		<path d=\"M455.147,197.92h-23.535c-8.728,0-15.828,7.101-15.828,15.828v42.51c0,1.501-0.742,2.9-1.984,3.744l-66.637,45.24   c-3.349,2.273-7.258,3.475-11.304,3.475h-5.362c-1.604,0-3.162-0.66-4.279-1.813l-1.862-1.922l30.408-27.549   c3.125-2.831,4.977-6.871,5.08-11.085c0.104-4.215-1.546-8.342-4.526-11.324l-14.354-14.354c-2.687-2.686-6.956-2.939-9.94-0.592   l-47.179,37.107l-12.747,10.025c-4.695,3.693-7.389,9.238-7.389,15.211v96.35c0,0.02,0.003,0.038,0.003,0.058v42.972   c0,0.02-0.003,0.038-0.003,0.058v62.64c0,4.142,3.357,7.5,7.5,7.5h86.538c4.143,0,7.5-3.358,7.5-7.5v-46.973   c0-0.033,0.005-0.064,0.005-0.097v-58.66c0-4.142-3.357-7.5-7.5-7.5h-3.729v-24.994c0-1.68,0.824-3.254,2.204-4.211l98.021-67.96   c5.26-3.647,8.4-9.646,8.4-16.046V205.42C462.647,201.278,459.29,197.92,455.147,197.92z M350.247,497h-71.538v-39.512   c0-0.02,0.003-0.038,0.003-0.058v-8.07h71.535V497z M350.252,434.36h-71.54v-28.088h67.811c0.013,0,0.026-0.002,0.039-0.002h3.69   V434.36z M447.65,278.059h-0.003c0,1.483-0.728,2.874-1.947,3.719l-98.021,67.961c-5.42,3.759-8.656,9.941-8.656,16.538v24.994   H278.71v-88.848c0-1.343,0.605-2.591,1.662-3.421l12.747-10.025l41.946-32.992l9.646,9.646c0.039,0.04,0.144,0.144,0.139,0.347   s-0.114,0.302-0.155,0.339l-30.83,27.931c-2.928,2.653-4.611,6.289-4.74,10.238c-0.128,3.95,1.314,7.688,4.065,10.527l2.256,2.328   c3.924,4.053,9.41,6.377,15.053,6.377h5.362c7.062,0,13.884-2.097,19.729-6.064l66.638-45.241   c5.359-3.639,8.559-9.677,8.559-16.154v-42.51c0-0.457,0.371-0.828,0.828-0.828h16.035V278.059z\"></path>	</g></g><g>	<g>		<path d=\"M256.002,0c-55.95,0-102.985,41.857-109.407,97.364c-0.476,4.115,2.474,7.836,6.588,8.313   c4.12,0.482,7.836-2.474,8.313-6.588C167.042,51.15,207.671,15,256.002,15c52.466,0,95.15,42.684,95.15,95.15   c0,41.507-26.532,77.917-66.021,90.603c-1.723,0.553-3.187,1.71-4.123,3.258l-25.006,41.333l-25.006-41.333   c-0.937-1.548-2.401-2.705-4.123-3.258c-33.804-10.859-58.561-39.313-64.609-74.259c-0.707-4.082-4.587-6.812-8.669-6.111   c-4.082,0.707-6.817,4.588-6.111,8.669c6.842,39.527,34.351,71.881,72.103,85.076l30,49.587c1.358,2.246,3.792,3.618,6.417,3.618   s5.059-1.372,6.417-3.618l29.999-49.587c44.219-15.453,73.732-56.883,73.732-103.978C366.152,49.413,316.739,0,256.002,0z\"></path>	</g></g><g>	<g>		<path d=\"M315.754,102.65h-10.565c-1.234-8.128-4.447-15.612-9.123-21.955l7.492-7.492c2.929-2.929,2.929-7.678,0-10.606   c-2.93-2.929-7.678-2.929-10.607,0l-7.491,7.491c-6.343-4.676-13.827-7.888-21.955-9.123V50.4c0-4.142-3.357-7.5-7.5-7.5   c-4.142,0-7.5,3.358-7.5,7.5v10.565c-8.128,1.234-15.612,4.447-21.955,9.123l-7.491-7.491c-2.929-2.929-7.678-2.929-10.606,0   c-2.929,2.929-2.929,7.678,0,10.606l7.491,7.491c-4.676,6.343-7.889,13.828-9.123,21.956c0,0-10.569,0-10.569,0   c-4.142,0-7.5,3.358-7.5,7.5c0,4.142,3.358,7.5,7.5,7.5h10.565c1.234,8.128,4.447,15.613,9.123,21.956l-7.491,7.491   c-2.929,2.929-2.929,7.678,0,10.606c1.464,1.464,3.384,2.197,5.303,2.197s3.839-0.732,5.303-2.197l7.491-7.491   c6.343,4.676,13.828,7.889,21.956,9.123V169.9c0,4.142,3.358,7.5,7.5,7.5c4.143,0,7.5-3.358,7.5-7.5v-10.565   c8.128-1.234,15.612-4.447,21.956-9.123l7.491,7.491c1.465,1.464,3.385,2.197,5.304,2.197c1.919,0,3.839-0.732,5.304-2.197   c2.929-2.929,2.929-7.678,0-10.606l-7.491-7.491c4.676-6.343,7.889-13.828,9.123-21.956h10.565c4.143,0,7.5-3.358,7.5-7.5   C323.254,106.008,319.897,102.65,315.754,102.65z M290.751,110.164c-0.007,19.151-15.586,34.731-34.738,34.738   c-0.004,0-0.009-0.001-0.013-0.001c-0.004,0-0.009,0.001-0.013,0.001c-19.151-0.007-34.731-15.586-34.738-34.738   c0-0.004,0.001-0.009,0.001-0.013c0-0.004-0.001-0.008-0.001-0.013c0.009-19.154,15.592-34.735,34.746-34.738   c0.002,0,0.004,0,0.006,0s0.004,0,0.006,0c19.155,0.004,34.737,15.584,34.744,34.738c0,0.004-0.001,0.008-0.001,0.013   C290.75,110.155,290.751,110.16,290.751,110.164z\"></path>	</g></g><g>	<g>		<path d=\"M256.002,85.119c-13.802,0-25.032,11.229-25.032,25.031c0,13.803,11.229,25.032,25.032,25.032   c13.803,0,25.031-11.229,25.031-25.031C281.033,96.348,269.804,85.119,256.002,85.119z M256.002,120.182   c-5.532,0-10.032-4.5-10.032-10.031c0-5.532,4.5-10.032,10.032-10.032c5.531,0,10.031,4.5,10.031,10.032   C266.033,115.682,261.533,120.182,256.002,120.182z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>							\n												<h5>\n													Goal Setting												</h5>\n											<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xodm=\"http://www.corel.com/coreldraw/odm/2003\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_2077007814064\"><g id=\"_200306976\"><path d=\"m256 319.44c-1.59 0-3.12-.63-4.24-1.75-11.13-11.13-22.33-21.98-33.17-32.48-62.94-60.98-117.31-113.65-117.31-179.39 0-44.31 36.05-80.35 80.36-80.35 37.74 0 57.46 18.43 74.36 48.87 16.9-30.44 36.62-48.87 74.35-48.87 44.31 0 80.36 36.04 80.36 80.35 0 65.74-54.36 118.41-117.31 179.39-10.83 10.49-22.03 21.35-33.16 32.48-1.12 1.12-2.65 1.75-4.24 1.75zm-74.36-281.97c-37.69 0-68.35 30.66-68.35 68.35 0 60.66 52.67 111.69 113.65 170.77 9.5 9.2 19.27 18.67 29.06 28.39 9.78-9.72 19.56-19.19 29.06-28.39 60.98-59.08 113.65-110.11 113.65-170.77 0-37.69-30.66-68.35-68.35-68.35-31.58 0-49.63 13.72-68.99 52.45-1.02 2.03-3.1 3.31-5.37 3.31s-4.35-1.28-5.37-3.31c-19.36-38.73-37.41-52.45-68.99-52.45z\"></path></g><g><g id=\"_200307000\"><path d=\"m268.35 249.13h-24.7c-3.32 0-6-2.68-6-6v-11.56c-2.07-.72-4.09-1.56-6.06-2.51l-8.18 8.18c-1.13 1.12-2.65 1.75-4.25 1.75-1.59 0-3.11-.63-4.24-1.75l-17.47-17.47c-2.34-2.34-2.34-6.14 0-8.49l8.18-8.18c-.95-1.97-1.79-3.99-2.51-6.06h-11.57c-3.31 0-6-2.68-6-6v-24.7c0-3.32 2.69-6 6-6h11.57c.72-2.07 1.56-4.09 2.51-6.06l-8.18-8.18c-1.13-1.13-1.76-2.65-1.76-4.24 0-1.6.63-3.12 1.76-4.25l17.47-17.47c2.34-2.34 6.14-2.34 8.49 0l8.18 8.18c1.96-.95 3.99-1.79 6.05-2.51v-11.56c0-3.32 2.69-6 6-6h24.71c3.31 0 6 2.68 6 6v11.56c2.07.72 4.09 1.56 6.06 2.51l8.18-8.18c1.12-1.12 2.65-1.76 4.24-1.76s3.12.64 4.24 1.76l17.48 17.47c1.12 1.13 1.75 2.65 1.75 4.25 0 1.59-.63 3.11-1.75 4.24l-8.19 8.18c.96 1.97 1.8 3.99 2.52 6.06h11.56c3.32 0 6 2.68 6 6v24.7c0 3.32-2.68 6-6 6h-11.56c-.72 2.07-1.56 4.09-2.52 6.06l8.19 8.18c1.12 1.13 1.75 2.65 1.75 4.24 0 1.6-.63 3.12-1.75 4.25l-17.47 17.47c-2.35 2.34-6.15 2.34-8.49 0l-8.18-8.18c-1.97.95-3.99 1.79-6.06 2.51v11.57c0 3.31-2.69 5.99-6 5.99zm-18.7-12h12.7v-10.02c0-2.74 1.86-5.14 4.52-5.82 4.06-1.03 7.95-2.64 11.56-4.79 2.36-1.4 5.37-1.02 7.31.92l7.09 7.09 8.99-8.99-7.09-7.09c-1.94-1.94-2.32-4.95-.92-7.31 2.15-3.6 3.76-7.49 4.79-11.56.68-2.66 3.07-4.52 5.82-4.52h10.02v-12.7h-10.02c-2.75 0-5.14-1.87-5.82-4.52-1.03-4.07-2.64-7.95-4.79-11.56-1.4-2.36-1.03-5.37.92-7.31l7.09-7.1-8.99-8.98-7.09 7.09c-1.94 1.94-4.95 2.32-7.31.92-3.61-2.15-7.5-3.77-11.56-4.8-2.66-.67-4.52-3.07-4.52-5.81v-10.03h-12.7v10.03c0 2.74-1.87 5.14-4.53 5.81-4.05 1.04-7.94 2.65-11.55 4.8-2.36 1.4-5.37 1.02-7.31-.92l-7.1-7.09-8.98 8.99 7.09 7.09c1.94 1.94 2.32 4.95.92 7.31-2.15 3.61-3.76 7.5-4.8 11.55-.67 2.66-3.07 4.53-5.81 4.53h-10.02v12.7h10.02c2.74 0 5.14 1.86 5.81 4.52 1.04 4.06 2.65 7.95 4.8 11.56 1.4 2.36 1.02 5.37-.92 7.31l-7.09 7.09 8.98 8.99 7.1-7.09c1.94-1.94 4.95-2.32 7.31-.92 3.61 2.15 7.5 3.76 11.56 4.79 2.66.68 4.52 3.08 4.52 5.82z\"></path></g><g id=\"_200306760\"><path d=\"m256 215.48c-20.29 0-36.8-16.5-36.8-36.79s16.51-36.8 36.8-36.8 36.79 16.51 36.79 36.8-16.5 36.79-36.79 36.79zm0-61.59c-13.67 0-24.8 11.13-24.8 24.8s11.13 24.79 24.8 24.79 24.79-11.12 24.79-24.79-11.12-24.8-24.79-24.8z\"></path></g></g><g id=\"_200306784\"><path d=\"m461.9 340.14c-.4 0-.8-.04-1.21-.12-2.77-.57-4.77-3.01-4.79-5.84-.01-.8-.54-16.35-18.14-25.35-4.77 6.05-14.98 15.83-31.26 15.83-7.09 0-14.53-1.91-22.17-5.68-1.97 2.49-4.39 6.45-4.71 11.19-.17 2.67-2.1 4.89-4.71 5.46-2.62.57-5.29-.67-6.56-3.03-.73-1.35-17.54-33.58 6.24-66.87.25-.34.54-.67.85-.95.53-.48 13.04-11.64 29.73-11.64 8.33 0 16.16 2.73 23.32 8.11 6.78.84 29.41 4.94 40.34 22.87 8.21 13.48 7.74 31.11-1.42 52.39-.96 2.24-3.15 3.63-5.51 3.63zm-26.24-44.82c.73 0 1.45.13 2.16.41 12.4 4.82 19.68 12.11 23.97 19.04 1.81-9.72.76-17.87-3.18-24.36-9.39-15.48-32.65-17.38-32.88-17.39-1.23-.09-2.4-.56-3.35-1.33-5.36-4.35-11.14-6.55-17.2-6.55-10.52 0-19.21 6.52-21.25 8.17-10.03 14.4-10.85 28.57-9.39 38.73 2.4-3.14 4.55-4.96 4.74-5.12 1.93-1.61 4.66-1.85 6.84-.59 7.27 4.2 14.13 6.33 20.38 6.33 15.81 0 23.56-13.64 23.88-14.22 1.09-1.97 3.15-3.12 5.28-3.12z\"></path></g><g id=\"_200307264\"><path d=\"m419.46 411.58c-.16 0-.32 0-.48 0-10.3-.15-20.06-5.17-28.23-14.52-7.44-8.5-13.2-20.37-16.78-34.51-9.81-1.95-15.33-9.01-16.53-15.9-1.66-9.54 3.98-18.57 14.03-22.48 3.08-1.2 6.56.33 7.76 3.42s-.33 6.56-3.41 7.77c-5.64 2.19-7.06 6.34-6.56 9.23.53 3.02 3.36 6.31 9.74 6.48 2.77.08 5.12 2.03 5.71 4.73 5.7 26.37 19.22 43.55 34.45 43.78h.29c14.2 0 26.75-15.15 32.81-39.65.62-2.5 2.75-4.32 5.31-4.54 5.81-.5 8.33-3.74 8.74-6.61.43-2.97-1.08-6.91-6.58-9.05-3.09-1.2-4.62-4.68-3.42-7.76 1.2-3.09 4.68-4.62 7.77-3.42 9.78 3.8 15.45 12.62 14.11 21.93-1.15 8.02-6.99 14.03-15.29 16.15-7.91 27.89-24.31 44.95-43.44 44.95z\"></path></g><g id=\"_200306808\"><path d=\"m332.55 486.53c-1.59 0-3.11-.63-4.24-1.75-1.12-1.13-1.76-2.65-1.76-4.25 0-44.88 21.25-52.28 38.32-58.24 13.67-4.77 23.55-8.21 24.07-29.7.08-3.31 2.86-5.89 6.15-5.85 3.31.08 5.93 2.83 5.85 6.15-.73 29.78-17.41 35.6-32.12 40.73-15.3 5.34-28.64 9.99-30.13 40.91h161.17c-1.49-30.92-14.83-35.57-30.13-40.91-14.73-5.13-31.42-10.96-32.12-40.8-.08-3.31 2.54-6.06 5.85-6.14 3.31-.11 6.06 2.54 6.14 5.86.51 21.53 10.4 24.98 24.08 29.75 17.07 5.96 38.32 13.36 38.32 58.24 0 3.31-2.69 6-6 6z\"></path></g><g id=\"_200306616\"><path d=\"m419.27 443.04c-15.8 0-30.68-6.12-41.9-17.25-2.36-2.33-2.38-6.13-.04-8.48 2.33-2.35 6.13-2.37 8.48-.04 8.96 8.88 20.85 13.77 33.46 13.77 12.62 0 24.5-4.89 33.46-13.77 2.36-2.33 6.16-2.31 8.49.04s2.31 6.15-.04 8.48c-11.22 11.13-26.11 17.25-41.91 17.25z\"></path></g><g id=\"_200307672\"><path d=\"m374.04 486.53c-3.32 0-6-2.68-6-6v-19.82c0-3.31 2.68-6 6-6 3.31 0 6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307888\"><path d=\"m464.51 486.53c-3.31 0-6-2.68-6-6v-19.82c0-3.31 2.69-6 6-6s6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307744\"><path d=\"m135.35 340.14c-.4 0-.8-.04-1.21-.12-2.77-.57-4.77-3.01-4.79-5.84-.01-.8-.54-16.35-18.14-25.35-4.77 6.05-14.98 15.83-31.26 15.83-7.09 0-14.53-1.91-22.17-5.68-1.97 2.49-4.39 6.45-4.7 11.19-.18 2.67-2.11 4.89-4.72 5.46-2.62.57-5.29-.67-6.56-3.03-.72-1.35-17.54-33.58 6.24-66.87.25-.34.54-.67.86-.95.52-.48 13.03-11.64 29.73-11.64 8.32 0 16.16 2.73 23.31 8.11 6.78.84 29.41 4.94 40.34 22.87 8.22 13.48 7.74 31.11-1.42 52.39-.96 2.24-3.15 3.63-5.51 3.63zm-26.25-44.82c.72 0 1.46.13 2.17.41 12.4 4.82 19.69 12.1 23.97 19.04 1.81-9.72.76-17.87-3.18-24.36-9.39-15.48-32.65-17.37-32.88-17.39-1.22-.09-2.4-.56-3.35-1.33-5.36-4.35-11.14-6.55-17.2-6.55-10.52 0-19.21 6.52-21.24 8.17-10.04 14.4-10.85 28.57-9.4 38.73 2.4-3.14 4.55-4.96 4.74-5.12 1.93-1.61 4.67-1.85 6.84-.59 7.27 4.2 14.13 6.33 20.38 6.33 16.01 0 23.79-14.05 23.86-14.2 1.08-1.98 3.14-3.14 5.29-3.14z\"></path></g><g id=\"_200307960\"><path d=\"m92.91 411.58c-.16 0-.32 0-.48 0-10.3-.15-20.06-5.17-28.23-14.52-7.44-8.5-13.2-20.37-16.79-34.51-9.8-1.95-15.32-9.01-16.52-15.9-1.66-9.54 3.98-18.57 14.03-22.48 3.08-1.2 6.56.33 7.76 3.42s-.33 6.56-3.41 7.77c-5.64 2.19-7.06 6.34-6.56 9.23.53 3.02 3.36 6.31 9.74 6.48 2.77.08 5.12 2.03 5.71 4.73 5.7 26.37 19.22 43.55 34.45 43.78h.29c14.2 0 26.75-15.15 32.81-39.65.62-2.5 2.75-4.32 5.31-4.54 5.81-.5 8.33-3.74 8.74-6.61.43-2.97-1.08-6.91-6.58-9.05-3.09-1.2-4.62-4.68-3.42-7.76 1.2-3.09 4.68-4.62 7.77-3.42 9.78 3.8 15.45 12.62 14.11 21.93-1.16 8.02-6.99 14.03-15.3 16.15-7.9 27.89-24.3 44.95-43.43 44.95z\"></path></g><g id=\"_200307408\"><path d=\"m6 486.53c-1.59 0-3.11-.63-4.24-1.75-1.12-1.13-1.76-2.65-1.76-4.25 0-44.88 21.25-52.28 38.32-58.24 13.67-4.77 23.55-8.21 24.08-29.7.08-3.31 2.82-5.89 6.14-5.85 3.31.08 5.93 2.83 5.85 6.15-.73 29.78-17.41 35.6-32.12 40.73-15.3 5.34-28.64 9.99-30.13 40.91h161.17c-1.5-30.92-14.83-35.57-30.13-40.91-14.73-5.13-31.42-10.96-32.12-40.8-.08-3.31 2.54-6.06 5.85-6.14 3.27-.11 6.06 2.54 6.14 5.86.51 21.53 10.4 24.98 24.08 29.75 17.07 5.96 38.32 13.36 38.32 58.24 0 3.31-2.69 6-6 6h-173.45z\"></path></g><g id=\"_200307648\"><path d=\"m92.73 443.04c-15.81 0-30.69-6.12-41.91-17.25-2.36-2.33-2.37-6.13-.04-8.48s6.13-2.37 8.48-.04c8.97 8.88 20.85 13.77 33.47 13.77 12.61 0 24.49-4.89 33.45-13.77 2.36-2.33 6.16-2.31 8.49.04s2.31 6.15-.04 8.48c-11.22 11.13-26.11 17.25-41.9 17.25z\"></path></g><g id=\"_200307720\"><path d=\"m47.49 486.53c-3.32 0-6-2.68-6-6v-19.82c0-3.31 2.68-6 6-6 3.31 0 6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307456\"><path d=\"m137.96 486.53c-3.31 0-6-2.68-6-6v-19.82c0-3.31 2.69-6 6-6s6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307840\"><path d=\"m94.44 269.46c-3.31 0-6-2.68-6-6v-23.34c0-8.01 6.52-14.53 14.53-14.53h70.38c3.31 0 6 2.69 6 6 0 3.32-2.69 6-6 6h-70.38c-1.37 0-2.53 1.16-2.53 2.53v23.34c0 3.32-2.68 6-6 6zm323.12-1.73c-3.32 0-6-2.69-6-6v-21.61c0-1.37-1.16-2.53-2.53-2.53h-70.38c-3.31 0-6-2.68-6-6 0-3.31 2.69-6 6-6h70.37c8.02 0 14.54 6.52 14.54 14.53v21.61c0 3.31-2.69 6-6 6z\"></path></g></g></g></svg>							\n												<h5>\n													Relationship Improvement												</h5>\n											<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Skill Development												</h5>\n											<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Tailored Approaches												</h5>\n											<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.</p>										\n		Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:29:23', '2026-06-17 10:29:23', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=530', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-06-17 10:29:23', '2026-06-17 10:29:23', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />																<h2>Psychotherapy</h2>		<ul style=\"margin-left: 18px;\">\n 	<li>Individual therapy</li>\n 	<li>Couples/marriage therapy</li>\n 	<li>Family therapy</li>\n 	<li>Child/teen therapy</li>\n 	<li>Online therapy</li>\n 	<li>COMMON SPECIALTIES &amp; approaches</li>\n 	<li>Anxiety therapy</li>\n 	<li>Cognitive behavioral therapy (CBT)</li>\n 	<li>Depression counseling</li>\n 	<li>Dialectical behavior therapy (DBT)</li>\n 	<li>Grief &amp; loss counseling</li>\n 	<li>Relational therapy</li>\n</ul>			<h3>Therapy can be highly beneficial for mental health for several reasons:</h3>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 64 64.1999969\" width=\"512\"><path d=\"m51.2529297 42.0226555c.6357422-.6357422.9863281-1.4804688.9863281-2.3808594 0-.8994141-.3500977-1.7441406-.9863281-2.3808594-1.3125-1.3125-3.4492188-1.3125-4.7617188 0l-9.3178711 9.3173828c-.7426758.7441406-1.1518555 1.7314453-1.1518555 2.7822266v11.6396484c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-5.109375l11.5913086-11.5917969c.1875-.1875.2929688-.4414062.2929688-.7070312v-11.5488281c0-2.0097656-1.6347656-3.6445312-3.6445312-3.6445312s-3.6450195 1.6347656-3.6450195 3.6445312v8.6582031l-4.2260742 4.2255859c-.1459961.1455078-.3828125.1435547-.527832 0-.1455078-.1455078-.1455078-.3818359 0-.5273438zm-3.7910156 4.3183594c.9243164.9248047 2.4306641.9267578 3.355957 0l4.519043-4.5185547c.1875-.1875.2929688-.4414062.2929688-.7070312v-9.0722656c0-.9072266.737793-1.6445312 1.6450195-1.6445312.9067383 0 1.6445312.7373047 1.6445312 1.6445312v11.1347656l-11.5913086 11.5917968c-.1875.1875-.2929688.4414062-.2929688.7070312v4.5234375h-9.0136719v-10.6396484c0-.5166016.2011719-1.0029297.5664062-1.3681641l9.3173828-9.3173828c.5332031-.5332031 1.4008789-.5332031 1.9331055 0 .2583008.2587891.4008789.6015625.4008789.9667969s-.1420898.7089844-.4003906.9667969l-2.3769531 2.3769531c-.9252929.9248047-.9252929 2.4306641.0000001 3.3554688z\"></path><path d=\"m6.7250977 28.398632c-2.0097656 0-3.6445312 1.6347656-3.6445312 3.6445312v11.5488281c0 .265625.1054688.5195312.2929688.7070312l11.5913086 11.5917969v5.109375c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-11.6396483c0-1.0507812-.4091797-2.0380859-1.1523438-2.7822266l-9.3173828-9.3173828c-1.3125-1.3125-3.4487305-1.3125-4.762207 0-.6357422.6367188-.9858398 1.4814453-.9858398 2.3808594 0 .9003906.3505859 1.7451172.9863281 2.3808594l2.3769531 2.3769531c.1455078.1455078.1455078.3818359 0 .5273438s-.3823242.1435547-.527832 0l-4.2260742-4.2255859v-8.6582031c-.0000002-2.0097657-1.6352541-3.6445314-3.6450197-3.6445314zm6.4570312 17.9423829c.925293.9267578 2.4316406.9257812 3.355957 0 .925293-.9248047.925293-2.4306641 0-3.3554688l-2.3769531-2.3769531c-.2583008-.2578125-.4003906-.6015625-.4003906-.9667969s.1425781-.7080078.4003906-.9667969c.5332031-.5332031 1.4003906-.5332031 1.9335938 0l9.3168945 9.3173828c.3657227.3652344.5668945.8515625.5668945 1.3681641v10.6396484h-9.0136719v-4.5234375c0-.265625-.1054688-.5195312-.2929688-.7070312l-11.5913085-11.5917969v-11.1347656c0-.9072266.737793-1.6445312 1.6445312-1.6445312.9072266 0 1.6450195.7373047 1.6450195 1.6445312v9.0722656c0 .265625.1054688.5195312.2929688.7070312z\"></path><path d=\"m32 2.0998046c-10.0986328 0-18.3144531 8.2158203-18.3144531 18.3144531s8.2158203 18.3144525 18.3144531 18.3144525 18.3144531-8.2158203 18.3144531-18.3144531-8.2158203-18.3144525-18.3144531-18.3144525zm0 2.0000003c7.614502 0 14.0088501 5.2510376 15.798584 12.3173819-3.1233521-2.2542105-8.8903809-3.70996-15.798584-3.70996s-12.6752319 1.4557495-15.798584 3.70996c1.7897339-7.0663443 8.184082-12.3173819 15.798584-12.3173819zm16.3144531 16.3144521c0 2.6992188-6.7001953 5.7070312-16.3144531 5.7070312s-16.3144531-3.0078125-16.3144531-5.7070312 6.7001953-5.7070302 16.3144531-5.7070302 16.3144531 3.0078115 16.3144531 5.7070302zm-16.3144531 16.3144532c-7.614502 0-14.0088501-5.2510376-15.798584-12.3173828 3.1233521 2.2542114 8.8903809 3.7099609 15.798584 3.7099609s12.6752319-1.4557495 15.798584-3.7099609c-1.7897339 7.0663452-8.184082 12.3173828-15.798584 12.3173828z\"></path></svg>							\n												<h5>\n													Safe Space												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"friendship-work\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><circle cx=\"72\" cy=\"102\" r=\"4\"></circle><circle cx=\"64\" cy=\"50\" r=\"4\"></circle><path d=\"m228 98h4v4c0 2.211 1.789 4 4 4s4-1.789 4-4v-4h4c2.211 0 4-1.789 4-4s-1.789-4-4-4h-4v-4c0-2.211-1.789-4-4-4s-4 1.789-4 4v4h-4c-2.211 0-4 1.789-4 4s1.789 4 4 4z\"></path><path d=\"m132 218h-16v-5.977c0-13.759-8.223-25.608-20-30.964v-35.059c0-.031-.017-.057-.018-.088 4.839-3.653 8.018-9.396 8.018-15.912 0-2.211-1.789-4-4-4h-30.707c-7.328 0-13.293 5.965-13.293 13.293v25.953c0 5.361 2.096 10.206 5.444 13.892-14.614 3.818-25.444 17.092-25.444 32.885v49.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-49.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v9.977c0 2.211 1.789 4 4 4h8v8h-20v-17.582c0-2.211-1.789-4-4-4s-4 1.789-4 4v21.582 24c0 2.211 1.789 4 4 4s4-1.789 4-4v-20h32c6.617 0 12-5.383 12-12s-5.383-12-12-12zm-68-78.707c0-2.918 2.375-5.293 5.293-5.293h26.023c-1.652 4.656-6.102 8-11.316 8h-20zm12.754 38.707c-7.031 0-12.754-5.723-12.754-12.754v-15.246h24v28zm55.246 56h-4v-8h4c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m56 210c-2.211 0-4 1.789-4 4v48c0 2.211 1.789 4 4 4s4-1.789 4-4v-48c0-2.211-1.789-4-4-4z\"></path><path d=\"m238.009 178.998c3.704-3.95 5.991-9.243 5.991-15.072v-9.926c0-11.027-8.973-20-20-20s-20 8.973-20 20v27.06c-11.777 5.355-20 17.205-20 30.964v45.976c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v45.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-15.99-11.1-29.402-25.991-33.025zm-26.009-.998v-24c0-6.617 5.383-12 12-12s12 5.383 12 12v9.926c0 7.762-6.312 14.074-14.074 14.074z\"></path><path d=\"m204 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m244 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m185.41 118.613c.102-.242.203-.488.301-.734 5.809-.832 10.289-5.844 10.289-11.879 0-1.206-.223-2.353-.555-3.452 10.229-11.777 15.466-22.512 15.466-31.899-.001-20.208-15.274-36.649-34.048-36.649-7.633 0-14.91 2.711-20.863 7.707-5.953-4.996-13.23-7.707-20.863-7.707-18.773 0-34.047 16.441-34.047 36.648 0 9.39 5.238 20.125 15.465 31.903-.333 1.098-.555 2.244-.555 3.449 0 6.035 4.48 11.047 10.289 11.879.098.246.199.488.301.73-3.516 4.699-3.141 11.406 1.125 15.672 4.27 4.27 10.98 4.633 15.672 1.129.242.102.488.203.734.301.832 5.809 5.844 10.289 11.879 10.289s11.047-4.48 11.879-10.289c.246-.098.492-.199.734-.301 4.688 3.504 11.398 3.141 15.672-1.129 4.262-4.261 4.641-10.965 1.125-15.668zm-50.273-76.613c6.707 0 13.09 2.82 17.965 7.945 1.516 1.586 4.281 1.586 5.797 0 4.874-5.125 11.257-7.945 17.964-7.945 14.363 0 26.047 12.852 26.047 28.648 0 6.991-4.298 15.714-12.379 25.343-1.433-.939-3.052-1.616-4.82-1.87-.098-.246-.199-.488-.301-.73 3.516-4.699 3.141-11.406-1.125-15.672-4.273-4.27-10.984-4.637-15.672-1.129-.242-.102-.488-.203-.734-.301-.832-5.809-5.844-10.289-11.879-10.289s-11.047 4.48-11.879 10.289c-.246.098-.492.199-.734.301-4.691-3.508-11.402-3.141-15.672 1.129-4.262 4.262-4.641 10.965-1.125 15.668-.102.242-.203.488-.301.734-1.769.253-3.387.931-4.821 1.87-8.079-9.625-12.378-18.35-12.378-25.343 0-15.796 11.683-28.648 26.047-28.648zm47.687 68c-1.77 0-3.328 1.16-3.832 2.855-.488 1.629-1.117 3.16-1.875 4.555-.848 1.562-.562 3.492.695 4.746l.812.812c1.562 1.559 1.562 4.098.004 5.656-1.562 1.566-4.098 1.559-5.66 0l-.82-.82c-1.254-1.254-3.18-1.535-4.73-.691-1.426.773-2.957 1.402-4.555 1.875-1.699.504-2.863 2.062-2.863 3.836v1.176c0 2.207-1.793 4-4 4s-4-1.793-4-4v-1.176c0-1.773-1.164-3.332-2.863-3.836-1.598-.473-3.129-1.102-4.555-1.875-.598-.324-1.254-.48-1.902-.48-1.035 0-2.059.402-2.828 1.172l-.82.82c-1.559 1.559-4.094 1.566-5.66 0-1.559-1.559-1.559-4.098-.008-5.648l.824-.82c1.258-1.254 1.543-3.184.695-4.746-.758-1.395-1.387-2.926-1.875-4.555-.504-1.695-2.062-2.855-3.832-2.855h-1.176c-2.207 0-4-1.793-4-4s1.793-4 4-4h1.176c1.77 0 3.328-1.16 3.832-2.855.488-1.629 1.117-3.16 1.875-4.555.848-1.562.562-3.492-.695-4.746l-.812-.812c-1.562-1.559-1.562-4.098-.004-5.656 1.57-1.562 4.105-1.559 5.66 0l.82.82c1.25 1.25 3.18 1.531 4.73.691 1.426-.773 2.957-1.402 4.555-1.875 1.699-.504 2.863-2.062 2.863-3.836v-1.177c0-2.207 1.793-4 4-4s4 1.793 4 4v1.176c0 1.773 1.164 3.332 2.863 3.836 1.598.473 3.129 1.102 4.555 1.875 1.555.844 3.48.562 4.73-.691l.82-.82c1.562-1.559 4.098-1.566 5.66 0 1.559 1.559 1.559 4.098.008 5.648l-.824.82c-1.258 1.254-1.543 3.184-.695 4.746.758 1.395 1.387 2.926 1.875 4.555.504 1.695 2.062 2.855 3.832 2.855h1.176c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m156 90c-8.824 0-16 7.176-16 16s7.176 16 16 16 16-7.176 16-16-7.176-16-16-16zm0 24c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path></g></svg>							\n												<h5>\n													Emotional Support												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m206.102 400.162c-46.373 0-92.751-17.652-128.056-52.957-34.207-34.208-53.046-79.687-53.046-128.061s18.839-93.853 53.046-128.06c70.615-70.615 185.512-70.605 256.117 0 70.614 70.614 70.614 185.507 0 256.121-35.305 35.305-81.683 52.957-128.061 52.957zm0-346.791c-42.47 0-84.94 16.167-117.271 48.498-64.665 64.666-64.665 169.885 0 234.551 64.666 64.666 169.891 64.661 234.547 0 31.328-31.328 48.578-72.978 48.578-117.276 0-44.297-17.25-85.947-48.578-117.275-32.33-32.331-74.801-48.498-117.276-48.498z\"></path><path d=\"m206.102 357.901c-37.063 0-71.905-14.435-98.109-40.643-54.098-54.1-54.098-142.128 0-196.227 54.1-54.1 142.124-54.09 196.223 0 54.1 54.099 54.1 142.128 0 196.227-26.208 26.208-61.051 40.643-98.114 40.643zm0-262.194c-31.626 0-63.25 12.036-87.324 36.109-48.151 48.156-48.151 126.502 0 174.657 23.323 23.328 54.338 36.174 87.324 36.174s64.001-12.845 87.329-36.174c48.151-48.156 48.151-126.502 0-174.657-24.078-24.073-55.703-36.109-87.329-36.109z\"></path><path d=\"m297.428 421.907c-8.813 0-17.618-3.352-24.326-10.061-2.978-2.978-2.978-7.805 0-10.785 2.98-2.98 7.806-2.98 10.786 0 7.468 7.468 19.619 7.468 27.087 0l77.045-77.05c3.615-3.62 5.606-8.427 5.606-13.54 0-5.115-1.991-9.921-5.606-13.541-2.979-2.98-2.979-7.805 0-10.785 2.98-2.979 7.806-2.979 10.785 0 13.412 13.412 13.412 35.241 0 48.652l-77.045 77.05c-6.709 6.707-15.523 10.06-24.332 10.06z\"></path><path d=\"m402.881 461.874c-12.275 0-23.809-4.783-32.489-13.462l-47.992-47.991c-2.979-2.98-2.979-7.805 0-10.785l54.194-54.193c2.979-2.979 7.805-2.979 10.785 0l47.992 47.991c8.679 8.68 13.461 20.215 13.461 32.49s-4.782 23.809-13.461 32.489c-8.68 8.679-20.216 13.461-32.49 13.461zm-64.303-66.846 42.599 42.599c11.967 11.967 31.442 11.967 43.408 0 11.968-11.968 11.968-31.442 0-43.408l-42.599-42.6z\"></path><path d=\"m467.373 461.874h-355.566c-4.211 0-7.627-3.417-7.627-7.628s3.416-7.627 7.627-7.627h355.566c4.211 0 7.627 3.416 7.627 7.627s-3.416 7.628-7.627 7.628z\"></path><path d=\"m401.258 421.926c-1.951 0-3.904-.744-5.392-2.234l-21.675-21.679c-2.98-2.979-2.98-7.806 0-10.786 2.979-2.979 7.805-2.979 10.785 0l21.675 21.68c2.98 2.979 2.98 7.805 0 10.785-1.491 1.489-3.442 2.234-5.393 2.234z\"></path><path d=\"m206.102 305.102c-.814 0-1.628-.129-2.413-.392-3.814-1.272-41.556-24.446-49.383-62.342-6.668-32.305 9.048-65.739 46.716-99.385 2.89-2.583 7.269-2.583 10.16 0 37.668 33.641 53.384 67.079 46.715 99.38-7.826 37.897-45.569 61.076-49.383 62.347-.783.263-1.598.392-2.412.392zm0-146.07c-27.603 26.133-40.27 51.358-37.674 75.049 3.138 28.626 28.11 47.967 37.674 54.392 9.564-6.426 34.541-25.762 37.679-54.392 2.597-23.691-10.075-48.916-37.679-75.049z\"></path><path d=\"m212.691 305.102c-3.48 0-5.675-.164-6.082-.198-2.652-.224-5.001-1.813-6.192-4.192-.029-.06-.243-.501-.268-.561-1.658-3.541-.373-7.757 2.979-9.768 10.835-6.515 63.212-41.869 30.112-98.402-1.073-1.832-1.331-4.027-.715-6.062.615-2.031 2.045-3.715 3.957-4.648 14.42-7.027 32.256-12.021 53.007-14.842 3.889-.571 7.478 1.927 8.427 5.685 11.51 45.499 7.364 80.353-12.324 103.586-22.525 26.577-58.58 29.402-72.901 29.402zm37.744-113.333c22.007 44.953-.696 78.336-19.848 96.52 13.933-2.384 31.348-8.268 43.364-22.45 15.403-18.178 19.019-46.169 10.775-83.267-12.915 2.146-24.4 5.225-34.291 9.197z\"></path><path d=\"m199.553 305.102c-14.291 0-50.42-2.82-72.944-29.416-19.678-23.233-23.824-58.082-12.314-103.571.948-3.758 4.509-6.256 8.422-5.685 20.756 2.821 38.592 7.816 53.012 14.842 1.912.933 3.342 2.617 3.958 4.648.615 2.035.358 4.23-.715 6.062-33.1 56.533 19.276 91.887 30.111 98.402 3.392 2.036 4.662 6.332 2.925 9.887-1.182 2.413-3.734 4.409-6.411 4.633-.408.035-2.589.198-6.044.198zm-72.07-122.529c-8.243 37.088-4.633 65.079 10.765 83.257 12.007 14.177 29.426 20.066 43.364 22.45-19.147-18.184-41.849-51.562-19.837-96.51-9.892-3.973-21.371-7.052-34.292-9.197z\"></path><path d=\"m205.154 304.547c-4.211 0-7.627-3.417-7.627-7.628v-71.533c0-4.211 3.416-7.627 7.627-7.627s7.628 3.416 7.628 7.627v71.533c-.001 4.211-3.417 7.628-7.628 7.628z\"></path></g></svg>							\n												<h5>\n													Self-Exploration												</h5>\n											<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m295.544 178.256a6.741 6.741 0 0 0 -3.689-3.623 6.718 6.718 0 0 0 -8.727 3.475c-.058.16-.123.319-.193.475a6.715 6.715 0 0 0 3.572 8.482q.238.087.473.192a6.789 6.789 0 0 0 8.569-9zm4.657-15.648a21.3 21.3 0 0 1 -18.927 38.018l-.027-.012a21.345 21.345 0 0 1 -11.856-27.305 7.1 7.1 0 0 1 .358-.879 21.238 21.238 0 0 1 11.277-11.14 21.465 21.465 0 0 1 4.89-1.409 108.471 108.471 0 0 1 110.169-79.395l-7.5-9.84a7.256 7.256 0 0 1 11.533-8.807l18.139 23.785a7.255 7.255 0 0 1 -1.364 10.17l-23.793 18.138a7.256 7.256 0 0 1 -8.8-11.532l9.821-7.488a94.123 94.123 0 0 0 -93.917 67.7zm-136.607 130.062c-1.181-.462-2.53-.937-4.2-1.439-1.749-.526-3.761-1.034-5.893-1.571-2.249-.568-4.622-1.167-6.887-1.817a81.221 81.221 0 0 1 -7.736-2.626 52.681 52.681 0 0 1 -7.96-3.915 57.093 57.093 0 0 1 -5.122-3.558 19.314 19.314 0 0 1 -2.1 3.175 29.979 29.979 0 0 1 -4.78 4.617c-1.583 1.254-3.581 2.64-5.787 4.091-1.069.7-2 1.305-2.835 1.842v15.331a30.06 30.06 0 0 0 7.975 20.595 25.087 25.087 0 0 0 37.345 0 30.056 30.056 0 0 0 7.976-20.595v-14.13zm-3.794 117.75q-.863.314-1.737.606a66.691 66.691 0 0 1 -42.171 0q-.874-.292-1.736-.606 8.1 16.046 22.822 31.483 14.722-15.438 22.822-31.483zm-44.516-66.689-1.446 6.36a26.013 26.013 0 0 1 -8.247 14.073q-.63.554-1.295 1.069a86.352 86.352 0 0 0 2.3 24.838 49.4 49.4 0 0 0 13.842 7.2 53.4 53.4 0 0 0 33.079 0 49.4 49.4 0 0 0 13.842-7.2 86.282 86.282 0 0 0 2.3-24.786q-.7-.539-1.362-1.121a26.01 26.01 0 0 1 -8.247-14.073l-1.446-6.36a39.133 39.133 0 0 1 -43.323 0zm102.131 19.247c21.553 5.007 34.482 13.526 35.172 45.641v.142h.028v79.966a7.273 7.273 0 0 1 -7.272 7.273h-216.795a7.273 7.273 0 0 1 -7.273-7.273v-79.966a7.309 7.309 0 0 1 .049-.842c.911-33.257 15.2-40.822 38.733-45.728.5-7.586 1.773-17.265 3.2-28.09 2.421-18.4 5.3-40.261 5.3-60.319a67.9 67.9 0 0 1 19.627-47.875 66.563 66.563 0 0 1 94.957 0 67.889 67.889 0 0 1 19.627 47.875c0 22.494 5.342 45.587 9.591 63.955 2.279 9.851 4.261 18.419 5.062 25.241zm-46.7-31.379a44.85 44.85 0 0 0 7.42-24.8v-18.92a7.275 7.275 0 0 0 -4.889-6.873c-1.2-.525-2.455-1.065-4.1-1.717-1.832-.726-3.692-1.4-5.606-1.978-2.014-.606-4.2-1.158-6.517-1.742-2.01-.507-4.13-1.042-6.433-1.7-2.252-.647-4.44-1.344-6.372-2.113a37.981 37.981 0 0 1 -5.745-2.837 66.527 66.527 0 0 1 -8.659-6.687c-.68-.593-.82-.722-1.072-.939l.012-.014a14.573 14.573 0 0 0 -4.812-3.1c-6.5-2.195-9.224.041-10.259 6.5a21.51 21.51 0 0 0 -.208 2.607 14.785 14.785 0 0 1 -.37 3.3 3.848 3.848 0 0 1 -.715 1.241 16.145 16.145 0 0 1 -2.507 2.344c-1.423 1.129-3.022 2.244-4.707 3.353-1.127.741-3.346 2.131-5.627 3.557a7.274 7.274 0 0 0 -3.8 6.392v19.327a44.847 44.847 0 0 0 7.42 24.8l-3.479 15.309a11.711 11.711 0 0 1 -3.7 6.345 18.2 18.2 0 0 1 -8.506 3.875c-3.592.726-8.189 1.542-12.649 2.326.575-6.608 1.632-14.641 2.8-23.479 2.5-19 5.467-41.557 5.467-62.194a53.45 53.45 0 0 1 15.423-37.7 52.155 52.155 0 0 1 74.275 0 53.45 53.45 0 0 1 15.423 37.7c0 24.013 5.564 48.064 9.989 67.193 1.675 7.243 3.177 13.738 4.1 19.051l-2.054-.362c-4.821-.846-9.929-1.744-13.842-2.535a18.2 18.2 0 0 1 -8.506-3.875 11.711 11.711 0 0 1 -3.7-6.345l-3.482-15.31zm-41.01 149.856h-45.614a7.289 7.289 0 0 0 -.715-1.2 26.958 26.958 0 0 1 -5.261-16.38q0-9.969 5.972-22.523a7.256 7.256 0 0 0 -13.125-6.193q-7.392 15.54-7.393 28.716a41.569 41.569 0 0 0 3.738 17.583h-31.487v-72.697c0-.137 0-.274-.012-.41.791-27.416 16-30.094 40.333-34.368 3.862-.679 7.947-1.4 13.53-2.518a102.527 102.527 0 0 0 9.229 40.627q10.013 22.326 30.808 43.123v26.24zm14.545-26.241q20.795-20.795 30.808-43.121a102.527 102.527 0 0 0 9.226-40.616c5.55 1.115 9.617 1.83 13.466 2.506 24.453 4.3 39.695 6.976 40.344 34.778h-.024v72.694h-31.422a41.554 41.554 0 0 0 3.738-17.583q0-13.176-7.392-28.716a7.256 7.256 0 1 0 -13.125 6.193q5.971 12.554 5.972 22.523a26.959 26.959 0 0 1 -5.262 16.38 7.359 7.359 0 0 0 -.715 1.2h-45.614zm314.57-424.669a17.825 17.825 0 0 1 12.368 4.889 15.841 15.841 0 0 1 4.992 11.445v162.839a15.841 15.841 0 0 1 -4.992 11.445 17.821 17.821 0 0 1 -12.368 4.889h-92.395a7.234 7.234 0 0 0 -3.9 1.136l-22.385 12.384q-.276.151-.532.323l-36.3 20.086v-26.656a7.273 7.273 0 0 0 -7.273-7.273h-55.544a17.824 17.824 0 0 1 -12.368-4.889 15.844 15.844 0 0 1 -4.991-11.445v-162.839a15.842 15.842 0 0 1 4.991-11.445 17.829 17.829 0 0 1 12.368-4.889zm-218.329-14.545h218.329a32.378 32.378 0 0 1 22.425 8.979 30.272 30.272 0 0 1 9.48 21.9v162.839a30.268 30.268 0 0 1 -9.48 21.9 32.375 32.375 0 0 1 -22.425 8.98h-90.544l-21.149 11.7q-.257.141-.518.259l-47.084 26.051a7.236 7.236 0 0 1 -10.73-6.335h-.037v-31.673h-48.267a32.378 32.378 0 0 1 -22.425-8.98 30.272 30.272 0 0 1 -9.48-21.9v-162.841a30.268 30.268 0 0 1 9.48-21.9 32.378 32.378 0 0 1 22.425-8.979zm53.254 72.778-10.193-10.192 10.193-10.193a7.272 7.272 0 0 0 -10.285-10.284l-10.192 10.191-10.192-10.19a7.272 7.272 0 0 0 -10.284 10.284l10.192 10.192-10.192 10.191a7.272 7.272 0 0 0 10.284 10.284l10.192-10.191 10.192 10.192a7.272 7.272 0 0 0 10.285-10.284zm123.469 89.042-10.192-10.192 10.192-10.193a7.272 7.272 0 0 0 -10.284-10.284l-10.192 10.192-10.192-10.191a7.272 7.272 0 1 0 -10.284 10.284l10.192 10.192-10.192 10.191a7.272 7.272 0 1 0 10.284 10.281l10.192-10.191 10.192 10.191a7.272 7.272 0 0 0 10.284-10.284z\" fill-rule=\"evenodd\"></path></svg>							\n												<h5>\n													Coping Strategies												</h5>\n											<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M248.298,398.776v-96.35c0-5.971-2.694-11.517-7.393-15.216l-59.928-47.132c-2.984-2.348-7.254-2.094-9.939,0.592   l-14.349,14.349c-2.986,2.985-4.637,7.118-4.53,11.338c0.106,4.215,1.961,8.252,5.079,11.069l30.406,27.556l-1.867,1.93   c-1.111,1.149-2.665,1.808-4.265,1.808h-5.366c-4.046,0-7.953-1.201-11.299-3.474l-66.646-45.245   c-1.237-0.838-1.976-2.237-1.976-3.742v-42.516c0-8.724-7.102-15.821-15.832-15.821h-23.54c-4.142,0-7.5,3.358-7.5,7.5v72.637   c0,6.404,3.145,12.405,8.408,16.048l46.124,31.979c3.404,2.359,8.077,1.513,10.437-1.89c2.36-3.404,1.514-8.077-1.89-10.437   l-46.128-31.982c-1.222-0.846-1.951-2.235-1.951-3.718v-65.137h16.039c0.458,0,0.832,0.368,0.832,0.821v42.516   c0,6.486,3.2,12.526,8.556,16.155l66.64,45.241c5.84,3.967,12.661,6.064,19.726,6.064h5.366c5.643,0,11.128-2.326,15.047-6.38   l2.254-2.331c2.749-2.837,4.193-6.572,4.066-10.518c-0.127-3.948-1.811-7.585-4.741-10.242l-30.836-27.946   c-0.039-0.036-0.143-0.129-0.148-0.327c-0.005-0.206,0.101-0.312,0.141-0.352l9.642-9.642l54.693,43.015   c1.061,0.834,1.668,2.084,1.668,3.427v88.844h-60.32v-24.995c0-6.607-3.24-12.792-8.658-16.538l-27.532-19.089   c-3.405-2.36-8.077-1.514-10.437,1.89s-1.514,8.077,1.89,10.437l27.541,19.095c1.375,0.951,2.196,2.522,2.196,4.205v24.995h-3.726   c-4.142,0-7.5,3.358-7.5,7.5v58.66c0,0.033,0.004,0.064,0.005,0.097V504.5c0,4.142,3.358,7.5,7.5,7.5h25.971   c4.142,0,7.5-3.358,7.5-7.5c0-4.142-3.358-7.5-7.5-7.5h-18.471v-47.64h71.535v8.07c0,0.016,0.002,0.032,0.002,0.048V497h-23.519   c-4.142,0-7.5,3.358-7.5,7.5c0,4.142,3.358,7.5,7.5,7.5h31.019c4.142,0,7.5-3.358,7.5-7.5v-62.64c0-0.016-0.002-0.032-0.002-0.048   v-42.92C248.293,398.853,248.298,398.815,248.298,398.776z M233.292,434.359h-71.54V406.27h3.62c0.036,0,0.07,0.005,0.106,0.005   h67.814V434.359z\"></path>	</g></g><g>	<g>		<path d=\"M455.147,197.92h-23.535c-8.728,0-15.828,7.101-15.828,15.828v42.51c0,1.501-0.742,2.9-1.984,3.744l-66.637,45.24   c-3.349,2.273-7.258,3.475-11.304,3.475h-5.362c-1.604,0-3.162-0.66-4.279-1.813l-1.862-1.922l30.408-27.549   c3.125-2.831,4.977-6.871,5.08-11.085c0.104-4.215-1.546-8.342-4.526-11.324l-14.354-14.354c-2.687-2.686-6.956-2.939-9.94-0.592   l-47.179,37.107l-12.747,10.025c-4.695,3.693-7.389,9.238-7.389,15.211v96.35c0,0.02,0.003,0.038,0.003,0.058v42.972   c0,0.02-0.003,0.038-0.003,0.058v62.64c0,4.142,3.357,7.5,7.5,7.5h86.538c4.143,0,7.5-3.358,7.5-7.5v-46.973   c0-0.033,0.005-0.064,0.005-0.097v-58.66c0-4.142-3.357-7.5-7.5-7.5h-3.729v-24.994c0-1.68,0.824-3.254,2.204-4.211l98.021-67.96   c5.26-3.647,8.4-9.646,8.4-16.046V205.42C462.647,201.278,459.29,197.92,455.147,197.92z M350.247,497h-71.538v-39.512   c0-0.02,0.003-0.038,0.003-0.058v-8.07h71.535V497z M350.252,434.36h-71.54v-28.088h67.811c0.013,0,0.026-0.002,0.039-0.002h3.69   V434.36z M447.65,278.059h-0.003c0,1.483-0.728,2.874-1.947,3.719l-98.021,67.961c-5.42,3.759-8.656,9.941-8.656,16.538v24.994   H278.71v-88.848c0-1.343,0.605-2.591,1.662-3.421l12.747-10.025l41.946-32.992l9.646,9.646c0.039,0.04,0.144,0.144,0.139,0.347   s-0.114,0.302-0.155,0.339l-30.83,27.931c-2.928,2.653-4.611,6.289-4.74,10.238c-0.128,3.95,1.314,7.688,4.065,10.527l2.256,2.328   c3.924,4.053,9.41,6.377,15.053,6.377h5.362c7.062,0,13.884-2.097,19.729-6.064l66.638-45.241   c5.359-3.639,8.559-9.677,8.559-16.154v-42.51c0-0.457,0.371-0.828,0.828-0.828h16.035V278.059z\"></path>	</g></g><g>	<g>		<path d=\"M256.002,0c-55.95,0-102.985,41.857-109.407,97.364c-0.476,4.115,2.474,7.836,6.588,8.313   c4.12,0.482,7.836-2.474,8.313-6.588C167.042,51.15,207.671,15,256.002,15c52.466,0,95.15,42.684,95.15,95.15   c0,41.507-26.532,77.917-66.021,90.603c-1.723,0.553-3.187,1.71-4.123,3.258l-25.006,41.333l-25.006-41.333   c-0.937-1.548-2.401-2.705-4.123-3.258c-33.804-10.859-58.561-39.313-64.609-74.259c-0.707-4.082-4.587-6.812-8.669-6.111   c-4.082,0.707-6.817,4.588-6.111,8.669c6.842,39.527,34.351,71.881,72.103,85.076l30,49.587c1.358,2.246,3.792,3.618,6.417,3.618   s5.059-1.372,6.417-3.618l29.999-49.587c44.219-15.453,73.732-56.883,73.732-103.978C366.152,49.413,316.739,0,256.002,0z\"></path>	</g></g><g>	<g>		<path d=\"M315.754,102.65h-10.565c-1.234-8.128-4.447-15.612-9.123-21.955l7.492-7.492c2.929-2.929,2.929-7.678,0-10.606   c-2.93-2.929-7.678-2.929-10.607,0l-7.491,7.491c-6.343-4.676-13.827-7.888-21.955-9.123V50.4c0-4.142-3.357-7.5-7.5-7.5   c-4.142,0-7.5,3.358-7.5,7.5v10.565c-8.128,1.234-15.612,4.447-21.955,9.123l-7.491-7.491c-2.929-2.929-7.678-2.929-10.606,0   c-2.929,2.929-2.929,7.678,0,10.606l7.491,7.491c-4.676,6.343-7.889,13.828-9.123,21.956c0,0-10.569,0-10.569,0   c-4.142,0-7.5,3.358-7.5,7.5c0,4.142,3.358,7.5,7.5,7.5h10.565c1.234,8.128,4.447,15.613,9.123,21.956l-7.491,7.491   c-2.929,2.929-2.929,7.678,0,10.606c1.464,1.464,3.384,2.197,5.303,2.197s3.839-0.732,5.303-2.197l7.491-7.491   c6.343,4.676,13.828,7.889,21.956,9.123V169.9c0,4.142,3.358,7.5,7.5,7.5c4.143,0,7.5-3.358,7.5-7.5v-10.565   c8.128-1.234,15.612-4.447,21.956-9.123l7.491,7.491c1.465,1.464,3.385,2.197,5.304,2.197c1.919,0,3.839-0.732,5.304-2.197   c2.929-2.929,2.929-7.678,0-10.606l-7.491-7.491c4.676-6.343,7.889-13.828,9.123-21.956h10.565c4.143,0,7.5-3.358,7.5-7.5   C323.254,106.008,319.897,102.65,315.754,102.65z M290.751,110.164c-0.007,19.151-15.586,34.731-34.738,34.738   c-0.004,0-0.009-0.001-0.013-0.001c-0.004,0-0.009,0.001-0.013,0.001c-19.151-0.007-34.731-15.586-34.738-34.738   c0-0.004,0.001-0.009,0.001-0.013c0-0.004-0.001-0.008-0.001-0.013c0.009-19.154,15.592-34.735,34.746-34.738   c0.002,0,0.004,0,0.006,0s0.004,0,0.006,0c19.155,0.004,34.737,15.584,34.744,34.738c0,0.004-0.001,0.008-0.001,0.013   C290.75,110.155,290.751,110.16,290.751,110.164z\"></path>	</g></g><g>	<g>		<path d=\"M256.002,85.119c-13.802,0-25.032,11.229-25.032,25.031c0,13.803,11.229,25.032,25.032,25.032   c13.803,0,25.031-11.229,25.031-25.031C281.033,96.348,269.804,85.119,256.002,85.119z M256.002,120.182   c-5.532,0-10.032-4.5-10.032-10.031c0-5.532,4.5-10.032,10.032-10.032c5.531,0,10.031,4.5,10.031,10.032   C266.033,115.682,261.533,120.182,256.002,120.182z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>							\n												<h5>\n													Goal Setting												</h5>\n											<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xodm=\"http://www.corel.com/coreldraw/odm/2003\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_2077007814064\"><g id=\"_200306976\"><path d=\"m256 319.44c-1.59 0-3.12-.63-4.24-1.75-11.13-11.13-22.33-21.98-33.17-32.48-62.94-60.98-117.31-113.65-117.31-179.39 0-44.31 36.05-80.35 80.36-80.35 37.74 0 57.46 18.43 74.36 48.87 16.9-30.44 36.62-48.87 74.35-48.87 44.31 0 80.36 36.04 80.36 80.35 0 65.74-54.36 118.41-117.31 179.39-10.83 10.49-22.03 21.35-33.16 32.48-1.12 1.12-2.65 1.75-4.24 1.75zm-74.36-281.97c-37.69 0-68.35 30.66-68.35 68.35 0 60.66 52.67 111.69 113.65 170.77 9.5 9.2 19.27 18.67 29.06 28.39 9.78-9.72 19.56-19.19 29.06-28.39 60.98-59.08 113.65-110.11 113.65-170.77 0-37.69-30.66-68.35-68.35-68.35-31.58 0-49.63 13.72-68.99 52.45-1.02 2.03-3.1 3.31-5.37 3.31s-4.35-1.28-5.37-3.31c-19.36-38.73-37.41-52.45-68.99-52.45z\"></path></g><g><g id=\"_200307000\"><path d=\"m268.35 249.13h-24.7c-3.32 0-6-2.68-6-6v-11.56c-2.07-.72-4.09-1.56-6.06-2.51l-8.18 8.18c-1.13 1.12-2.65 1.75-4.25 1.75-1.59 0-3.11-.63-4.24-1.75l-17.47-17.47c-2.34-2.34-2.34-6.14 0-8.49l8.18-8.18c-.95-1.97-1.79-3.99-2.51-6.06h-11.57c-3.31 0-6-2.68-6-6v-24.7c0-3.32 2.69-6 6-6h11.57c.72-2.07 1.56-4.09 2.51-6.06l-8.18-8.18c-1.13-1.13-1.76-2.65-1.76-4.24 0-1.6.63-3.12 1.76-4.25l17.47-17.47c2.34-2.34 6.14-2.34 8.49 0l8.18 8.18c1.96-.95 3.99-1.79 6.05-2.51v-11.56c0-3.32 2.69-6 6-6h24.71c3.31 0 6 2.68 6 6v11.56c2.07.72 4.09 1.56 6.06 2.51l8.18-8.18c1.12-1.12 2.65-1.76 4.24-1.76s3.12.64 4.24 1.76l17.48 17.47c1.12 1.13 1.75 2.65 1.75 4.25 0 1.59-.63 3.11-1.75 4.24l-8.19 8.18c.96 1.97 1.8 3.99 2.52 6.06h11.56c3.32 0 6 2.68 6 6v24.7c0 3.32-2.68 6-6 6h-11.56c-.72 2.07-1.56 4.09-2.52 6.06l8.19 8.18c1.12 1.13 1.75 2.65 1.75 4.24 0 1.6-.63 3.12-1.75 4.25l-17.47 17.47c-2.35 2.34-6.15 2.34-8.49 0l-8.18-8.18c-1.97.95-3.99 1.79-6.06 2.51v11.57c0 3.31-2.69 5.99-6 5.99zm-18.7-12h12.7v-10.02c0-2.74 1.86-5.14 4.52-5.82 4.06-1.03 7.95-2.64 11.56-4.79 2.36-1.4 5.37-1.02 7.31.92l7.09 7.09 8.99-8.99-7.09-7.09c-1.94-1.94-2.32-4.95-.92-7.31 2.15-3.6 3.76-7.49 4.79-11.56.68-2.66 3.07-4.52 5.82-4.52h10.02v-12.7h-10.02c-2.75 0-5.14-1.87-5.82-4.52-1.03-4.07-2.64-7.95-4.79-11.56-1.4-2.36-1.03-5.37.92-7.31l7.09-7.1-8.99-8.98-7.09 7.09c-1.94 1.94-4.95 2.32-7.31.92-3.61-2.15-7.5-3.77-11.56-4.8-2.66-.67-4.52-3.07-4.52-5.81v-10.03h-12.7v10.03c0 2.74-1.87 5.14-4.53 5.81-4.05 1.04-7.94 2.65-11.55 4.8-2.36 1.4-5.37 1.02-7.31-.92l-7.1-7.09-8.98 8.99 7.09 7.09c1.94 1.94 2.32 4.95.92 7.31-2.15 3.61-3.76 7.5-4.8 11.55-.67 2.66-3.07 4.53-5.81 4.53h-10.02v12.7h10.02c2.74 0 5.14 1.86 5.81 4.52 1.04 4.06 2.65 7.95 4.8 11.56 1.4 2.36 1.02 5.37-.92 7.31l-7.09 7.09 8.98 8.99 7.1-7.09c1.94-1.94 4.95-2.32 7.31-.92 3.61 2.15 7.5 3.76 11.56 4.79 2.66.68 4.52 3.08 4.52 5.82z\"></path></g><g id=\"_200306760\"><path d=\"m256 215.48c-20.29 0-36.8-16.5-36.8-36.79s16.51-36.8 36.8-36.8 36.79 16.51 36.79 36.8-16.5 36.79-36.79 36.79zm0-61.59c-13.67 0-24.8 11.13-24.8 24.8s11.13 24.79 24.8 24.79 24.79-11.12 24.79-24.79-11.12-24.8-24.79-24.8z\"></path></g></g><g id=\"_200306784\"><path d=\"m461.9 340.14c-.4 0-.8-.04-1.21-.12-2.77-.57-4.77-3.01-4.79-5.84-.01-.8-.54-16.35-18.14-25.35-4.77 6.05-14.98 15.83-31.26 15.83-7.09 0-14.53-1.91-22.17-5.68-1.97 2.49-4.39 6.45-4.71 11.19-.17 2.67-2.1 4.89-4.71 5.46-2.62.57-5.29-.67-6.56-3.03-.73-1.35-17.54-33.58 6.24-66.87.25-.34.54-.67.85-.95.53-.48 13.04-11.64 29.73-11.64 8.33 0 16.16 2.73 23.32 8.11 6.78.84 29.41 4.94 40.34 22.87 8.21 13.48 7.74 31.11-1.42 52.39-.96 2.24-3.15 3.63-5.51 3.63zm-26.24-44.82c.73 0 1.45.13 2.16.41 12.4 4.82 19.68 12.11 23.97 19.04 1.81-9.72.76-17.87-3.18-24.36-9.39-15.48-32.65-17.38-32.88-17.39-1.23-.09-2.4-.56-3.35-1.33-5.36-4.35-11.14-6.55-17.2-6.55-10.52 0-19.21 6.52-21.25 8.17-10.03 14.4-10.85 28.57-9.39 38.73 2.4-3.14 4.55-4.96 4.74-5.12 1.93-1.61 4.66-1.85 6.84-.59 7.27 4.2 14.13 6.33 20.38 6.33 15.81 0 23.56-13.64 23.88-14.22 1.09-1.97 3.15-3.12 5.28-3.12z\"></path></g><g id=\"_200307264\"><path d=\"m419.46 411.58c-.16 0-.32 0-.48 0-10.3-.15-20.06-5.17-28.23-14.52-7.44-8.5-13.2-20.37-16.78-34.51-9.81-1.95-15.33-9.01-16.53-15.9-1.66-9.54 3.98-18.57 14.03-22.48 3.08-1.2 6.56.33 7.76 3.42s-.33 6.56-3.41 7.77c-5.64 2.19-7.06 6.34-6.56 9.23.53 3.02 3.36 6.31 9.74 6.48 2.77.08 5.12 2.03 5.71 4.73 5.7 26.37 19.22 43.55 34.45 43.78h.29c14.2 0 26.75-15.15 32.81-39.65.62-2.5 2.75-4.32 5.31-4.54 5.81-.5 8.33-3.74 8.74-6.61.43-2.97-1.08-6.91-6.58-9.05-3.09-1.2-4.62-4.68-3.42-7.76 1.2-3.09 4.68-4.62 7.77-3.42 9.78 3.8 15.45 12.62 14.11 21.93-1.15 8.02-6.99 14.03-15.29 16.15-7.91 27.89-24.31 44.95-43.44 44.95z\"></path></g><g id=\"_200306808\"><path d=\"m332.55 486.53c-1.59 0-3.11-.63-4.24-1.75-1.12-1.13-1.76-2.65-1.76-4.25 0-44.88 21.25-52.28 38.32-58.24 13.67-4.77 23.55-8.21 24.07-29.7.08-3.31 2.86-5.89 6.15-5.85 3.31.08 5.93 2.83 5.85 6.15-.73 29.78-17.41 35.6-32.12 40.73-15.3 5.34-28.64 9.99-30.13 40.91h161.17c-1.49-30.92-14.83-35.57-30.13-40.91-14.73-5.13-31.42-10.96-32.12-40.8-.08-3.31 2.54-6.06 5.85-6.14 3.31-.11 6.06 2.54 6.14 5.86.51 21.53 10.4 24.98 24.08 29.75 17.07 5.96 38.32 13.36 38.32 58.24 0 3.31-2.69 6-6 6z\"></path></g><g id=\"_200306616\"><path d=\"m419.27 443.04c-15.8 0-30.68-6.12-41.9-17.25-2.36-2.33-2.38-6.13-.04-8.48 2.33-2.35 6.13-2.37 8.48-.04 8.96 8.88 20.85 13.77 33.46 13.77 12.62 0 24.5-4.89 33.46-13.77 2.36-2.33 6.16-2.31 8.49.04s2.31 6.15-.04 8.48c-11.22 11.13-26.11 17.25-41.91 17.25z\"></path></g><g id=\"_200307672\"><path d=\"m374.04 486.53c-3.32 0-6-2.68-6-6v-19.82c0-3.31 2.68-6 6-6 3.31 0 6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307888\"><path d=\"m464.51 486.53c-3.31 0-6-2.68-6-6v-19.82c0-3.31 2.69-6 6-6s6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307744\"><path d=\"m135.35 340.14c-.4 0-.8-.04-1.21-.12-2.77-.57-4.77-3.01-4.79-5.84-.01-.8-.54-16.35-18.14-25.35-4.77 6.05-14.98 15.83-31.26 15.83-7.09 0-14.53-1.91-22.17-5.68-1.97 2.49-4.39 6.45-4.7 11.19-.18 2.67-2.11 4.89-4.72 5.46-2.62.57-5.29-.67-6.56-3.03-.72-1.35-17.54-33.58 6.24-66.87.25-.34.54-.67.86-.95.52-.48 13.03-11.64 29.73-11.64 8.32 0 16.16 2.73 23.31 8.11 6.78.84 29.41 4.94 40.34 22.87 8.22 13.48 7.74 31.11-1.42 52.39-.96 2.24-3.15 3.63-5.51 3.63zm-26.25-44.82c.72 0 1.46.13 2.17.41 12.4 4.82 19.69 12.1 23.97 19.04 1.81-9.72.76-17.87-3.18-24.36-9.39-15.48-32.65-17.37-32.88-17.39-1.22-.09-2.4-.56-3.35-1.33-5.36-4.35-11.14-6.55-17.2-6.55-10.52 0-19.21 6.52-21.24 8.17-10.04 14.4-10.85 28.57-9.4 38.73 2.4-3.14 4.55-4.96 4.74-5.12 1.93-1.61 4.67-1.85 6.84-.59 7.27 4.2 14.13 6.33 20.38 6.33 16.01 0 23.79-14.05 23.86-14.2 1.08-1.98 3.14-3.14 5.29-3.14z\"></path></g><g id=\"_200307960\"><path d=\"m92.91 411.58c-.16 0-.32 0-.48 0-10.3-.15-20.06-5.17-28.23-14.52-7.44-8.5-13.2-20.37-16.79-34.51-9.8-1.95-15.32-9.01-16.52-15.9-1.66-9.54 3.98-18.57 14.03-22.48 3.08-1.2 6.56.33 7.76 3.42s-.33 6.56-3.41 7.77c-5.64 2.19-7.06 6.34-6.56 9.23.53 3.02 3.36 6.31 9.74 6.48 2.77.08 5.12 2.03 5.71 4.73 5.7 26.37 19.22 43.55 34.45 43.78h.29c14.2 0 26.75-15.15 32.81-39.65.62-2.5 2.75-4.32 5.31-4.54 5.81-.5 8.33-3.74 8.74-6.61.43-2.97-1.08-6.91-6.58-9.05-3.09-1.2-4.62-4.68-3.42-7.76 1.2-3.09 4.68-4.62 7.77-3.42 9.78 3.8 15.45 12.62 14.11 21.93-1.16 8.02-6.99 14.03-15.3 16.15-7.9 27.89-24.3 44.95-43.43 44.95z\"></path></g><g id=\"_200307408\"><path d=\"m6 486.53c-1.59 0-3.11-.63-4.24-1.75-1.12-1.13-1.76-2.65-1.76-4.25 0-44.88 21.25-52.28 38.32-58.24 13.67-4.77 23.55-8.21 24.08-29.7.08-3.31 2.82-5.89 6.14-5.85 3.31.08 5.93 2.83 5.85 6.15-.73 29.78-17.41 35.6-32.12 40.73-15.3 5.34-28.64 9.99-30.13 40.91h161.17c-1.5-30.92-14.83-35.57-30.13-40.91-14.73-5.13-31.42-10.96-32.12-40.8-.08-3.31 2.54-6.06 5.85-6.14 3.27-.11 6.06 2.54 6.14 5.86.51 21.53 10.4 24.98 24.08 29.75 17.07 5.96 38.32 13.36 38.32 58.24 0 3.31-2.69 6-6 6h-173.45z\"></path></g><g id=\"_200307648\"><path d=\"m92.73 443.04c-15.81 0-30.69-6.12-41.91-17.25-2.36-2.33-2.37-6.13-.04-8.48s6.13-2.37 8.48-.04c8.97 8.88 20.85 13.77 33.47 13.77 12.61 0 24.49-4.89 33.45-13.77 2.36-2.33 6.16-2.31 8.49.04s2.31 6.15-.04 8.48c-11.22 11.13-26.11 17.25-41.9 17.25z\"></path></g><g id=\"_200307720\"><path d=\"m47.49 486.53c-3.32 0-6-2.68-6-6v-19.82c0-3.31 2.68-6 6-6 3.31 0 6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307456\"><path d=\"m137.96 486.53c-3.31 0-6-2.68-6-6v-19.82c0-3.31 2.69-6 6-6s6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307840\"><path d=\"m94.44 269.46c-3.31 0-6-2.68-6-6v-23.34c0-8.01 6.52-14.53 14.53-14.53h70.38c3.31 0 6 2.69 6 6 0 3.32-2.69 6-6 6h-70.38c-1.37 0-2.53 1.16-2.53 2.53v23.34c0 3.32-2.68 6-6 6zm323.12-1.73c-3.32 0-6-2.69-6-6v-21.61c0-1.37-1.16-2.53-2.53-2.53h-70.38c-3.31 0-6-2.68-6-6 0-3.31 2.69-6 6-6h70.37c8.02 0 14.54 6.52 14.54 14.53v21.61c0 3.31-2.69 6-6 6z\"></path></g></g></g></svg>							\n												<h5>\n													Relationship Improvement												</h5>\n											<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Skill Development												</h5>\n											<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Tailored Approaches												</h5>\n											<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.</p>										\n		Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:29:23', '2026-06-17 10:29:23', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=531', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(536, 1, '2026-06-17 10:30:01', '2026-06-17 10:30:01', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />																<h2>Psychotherapy</h2>		<ul style=\"margin-left: 18px;\">\n 	<li>Individual therapy</li>\n 	<li>Couples/marriage therapy</li>\n 	<li>Family therapy</li>\n 	<li>Child/teen therapy</li>\n 	<li>Online therapy</li>\n 	<li>COMMON SPECIALTIES &amp; approaches</li>\n 	<li>Anxiety therapy</li>\n 	<li>Cognitive behavioral therapy (CBT)</li>\n 	<li>Depression counseling</li>\n 	<li>Dialectical behavior therapy (DBT)</li>\n 	<li>Grief &amp; loss counseling</li>\n 	<li>Relational therapy</li>\n</ul>			<h3>Therapy can be highly beneficial for mental health for several reasons:</h3>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 64 64.1999969\" width=\"512\"><path d=\"m51.2529297 42.0226555c.6357422-.6357422.9863281-1.4804688.9863281-2.3808594 0-.8994141-.3500977-1.7441406-.9863281-2.3808594-1.3125-1.3125-3.4492188-1.3125-4.7617188 0l-9.3178711 9.3173828c-.7426758.7441406-1.1518555 1.7314453-1.1518555 2.7822266v11.6396484c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-5.109375l11.5913086-11.5917969c.1875-.1875.2929688-.4414062.2929688-.7070312v-11.5488281c0-2.0097656-1.6347656-3.6445312-3.6445312-3.6445312s-3.6450195 1.6347656-3.6450195 3.6445312v8.6582031l-4.2260742 4.2255859c-.1459961.1455078-.3828125.1435547-.527832 0-.1455078-.1455078-.1455078-.3818359 0-.5273438zm-3.7910156 4.3183594c.9243164.9248047 2.4306641.9267578 3.355957 0l4.519043-4.5185547c.1875-.1875.2929688-.4414062.2929688-.7070312v-9.0722656c0-.9072266.737793-1.6445312 1.6450195-1.6445312.9067383 0 1.6445312.7373047 1.6445312 1.6445312v11.1347656l-11.5913086 11.5917968c-.1875.1875-.2929688.4414062-.2929688.7070312v4.5234375h-9.0136719v-10.6396484c0-.5166016.2011719-1.0029297.5664062-1.3681641l9.3173828-9.3173828c.5332031-.5332031 1.4008789-.5332031 1.9331055 0 .2583008.2587891.4008789.6015625.4008789.9667969s-.1420898.7089844-.4003906.9667969l-2.3769531 2.3769531c-.9252929.9248047-.9252929 2.4306641.0000001 3.3554688z\"></path><path d=\"m6.7250977 28.398632c-2.0097656 0-3.6445312 1.6347656-3.6445312 3.6445312v11.5488281c0 .265625.1054688.5195312.2929688.7070312l11.5913086 11.5917969v5.109375c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-11.6396483c0-1.0507812-.4091797-2.0380859-1.1523438-2.7822266l-9.3173828-9.3173828c-1.3125-1.3125-3.4487305-1.3125-4.762207 0-.6357422.6367188-.9858398 1.4814453-.9858398 2.3808594 0 .9003906.3505859 1.7451172.9863281 2.3808594l2.3769531 2.3769531c.1455078.1455078.1455078.3818359 0 .5273438s-.3823242.1435547-.527832 0l-4.2260742-4.2255859v-8.6582031c-.0000002-2.0097657-1.6352541-3.6445314-3.6450197-3.6445314zm6.4570312 17.9423829c.925293.9267578 2.4316406.9257812 3.355957 0 .925293-.9248047.925293-2.4306641 0-3.3554688l-2.3769531-2.3769531c-.2583008-.2578125-.4003906-.6015625-.4003906-.9667969s.1425781-.7080078.4003906-.9667969c.5332031-.5332031 1.4003906-.5332031 1.9335938 0l9.3168945 9.3173828c.3657227.3652344.5668945.8515625.5668945 1.3681641v10.6396484h-9.0136719v-4.5234375c0-.265625-.1054688-.5195312-.2929688-.7070312l-11.5913085-11.5917969v-11.1347656c0-.9072266.737793-1.6445312 1.6445312-1.6445312.9072266 0 1.6450195.7373047 1.6450195 1.6445312v9.0722656c0 .265625.1054688.5195312.2929688.7070312z\"></path><path d=\"m32 2.0998046c-10.0986328 0-18.3144531 8.2158203-18.3144531 18.3144531s8.2158203 18.3144525 18.3144531 18.3144525 18.3144531-8.2158203 18.3144531-18.3144531-8.2158203-18.3144525-18.3144531-18.3144525zm0 2.0000003c7.614502 0 14.0088501 5.2510376 15.798584 12.3173819-3.1233521-2.2542105-8.8903809-3.70996-15.798584-3.70996s-12.6752319 1.4557495-15.798584 3.70996c1.7897339-7.0663443 8.184082-12.3173819 15.798584-12.3173819zm16.3144531 16.3144521c0 2.6992188-6.7001953 5.7070312-16.3144531 5.7070312s-16.3144531-3.0078125-16.3144531-5.7070312 6.7001953-5.7070302 16.3144531-5.7070302 16.3144531 3.0078115 16.3144531 5.7070302zm-16.3144531 16.3144532c-7.614502 0-14.0088501-5.2510376-15.798584-12.3173828 3.1233521 2.2542114 8.8903809 3.7099609 15.798584 3.7099609s12.6752319-1.4557495 15.798584-3.7099609c-1.7897339 7.0663452-8.184082 12.3173828-15.798584 12.3173828z\"></path></svg>							\n												<h5>\n													Safe Space												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"friendship-work\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><circle cx=\"72\" cy=\"102\" r=\"4\"></circle><circle cx=\"64\" cy=\"50\" r=\"4\"></circle><path d=\"m228 98h4v4c0 2.211 1.789 4 4 4s4-1.789 4-4v-4h4c2.211 0 4-1.789 4-4s-1.789-4-4-4h-4v-4c0-2.211-1.789-4-4-4s-4 1.789-4 4v4h-4c-2.211 0-4 1.789-4 4s1.789 4 4 4z\"></path><path d=\"m132 218h-16v-5.977c0-13.759-8.223-25.608-20-30.964v-35.059c0-.031-.017-.057-.018-.088 4.839-3.653 8.018-9.396 8.018-15.912 0-2.211-1.789-4-4-4h-30.707c-7.328 0-13.293 5.965-13.293 13.293v25.953c0 5.361 2.096 10.206 5.444 13.892-14.614 3.818-25.444 17.092-25.444 32.885v49.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-49.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v9.977c0 2.211 1.789 4 4 4h8v8h-20v-17.582c0-2.211-1.789-4-4-4s-4 1.789-4 4v21.582 24c0 2.211 1.789 4 4 4s4-1.789 4-4v-20h32c6.617 0 12-5.383 12-12s-5.383-12-12-12zm-68-78.707c0-2.918 2.375-5.293 5.293-5.293h26.023c-1.652 4.656-6.102 8-11.316 8h-20zm12.754 38.707c-7.031 0-12.754-5.723-12.754-12.754v-15.246h24v28zm55.246 56h-4v-8h4c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m56 210c-2.211 0-4 1.789-4 4v48c0 2.211 1.789 4 4 4s4-1.789 4-4v-48c0-2.211-1.789-4-4-4z\"></path><path d=\"m238.009 178.998c3.704-3.95 5.991-9.243 5.991-15.072v-9.926c0-11.027-8.973-20-20-20s-20 8.973-20 20v27.06c-11.777 5.355-20 17.205-20 30.964v45.976c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v45.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-15.99-11.1-29.402-25.991-33.025zm-26.009-.998v-24c0-6.617 5.383-12 12-12s12 5.383 12 12v9.926c0 7.762-6.312 14.074-14.074 14.074z\"></path><path d=\"m204 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m244 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m185.41 118.613c.102-.242.203-.488.301-.734 5.809-.832 10.289-5.844 10.289-11.879 0-1.206-.223-2.353-.555-3.452 10.229-11.777 15.466-22.512 15.466-31.899-.001-20.208-15.274-36.649-34.048-36.649-7.633 0-14.91 2.711-20.863 7.707-5.953-4.996-13.23-7.707-20.863-7.707-18.773 0-34.047 16.441-34.047 36.648 0 9.39 5.238 20.125 15.465 31.903-.333 1.098-.555 2.244-.555 3.449 0 6.035 4.48 11.047 10.289 11.879.098.246.199.488.301.73-3.516 4.699-3.141 11.406 1.125 15.672 4.27 4.27 10.98 4.633 15.672 1.129.242.102.488.203.734.301.832 5.809 5.844 10.289 11.879 10.289s11.047-4.48 11.879-10.289c.246-.098.492-.199.734-.301 4.688 3.504 11.398 3.141 15.672-1.129 4.262-4.261 4.641-10.965 1.125-15.668zm-50.273-76.613c6.707 0 13.09 2.82 17.965 7.945 1.516 1.586 4.281 1.586 5.797 0 4.874-5.125 11.257-7.945 17.964-7.945 14.363 0 26.047 12.852 26.047 28.648 0 6.991-4.298 15.714-12.379 25.343-1.433-.939-3.052-1.616-4.82-1.87-.098-.246-.199-.488-.301-.73 3.516-4.699 3.141-11.406-1.125-15.672-4.273-4.27-10.984-4.637-15.672-1.129-.242-.102-.488-.203-.734-.301-.832-5.809-5.844-10.289-11.879-10.289s-11.047 4.48-11.879 10.289c-.246.098-.492.199-.734.301-4.691-3.508-11.402-3.141-15.672 1.129-4.262 4.262-4.641 10.965-1.125 15.668-.102.242-.203.488-.301.734-1.769.253-3.387.931-4.821 1.87-8.079-9.625-12.378-18.35-12.378-25.343 0-15.796 11.683-28.648 26.047-28.648zm47.687 68c-1.77 0-3.328 1.16-3.832 2.855-.488 1.629-1.117 3.16-1.875 4.555-.848 1.562-.562 3.492.695 4.746l.812.812c1.562 1.559 1.562 4.098.004 5.656-1.562 1.566-4.098 1.559-5.66 0l-.82-.82c-1.254-1.254-3.18-1.535-4.73-.691-1.426.773-2.957 1.402-4.555 1.875-1.699.504-2.863 2.062-2.863 3.836v1.176c0 2.207-1.793 4-4 4s-4-1.793-4-4v-1.176c0-1.773-1.164-3.332-2.863-3.836-1.598-.473-3.129-1.102-4.555-1.875-.598-.324-1.254-.48-1.902-.48-1.035 0-2.059.402-2.828 1.172l-.82.82c-1.559 1.559-4.094 1.566-5.66 0-1.559-1.559-1.559-4.098-.008-5.648l.824-.82c1.258-1.254 1.543-3.184.695-4.746-.758-1.395-1.387-2.926-1.875-4.555-.504-1.695-2.062-2.855-3.832-2.855h-1.176c-2.207 0-4-1.793-4-4s1.793-4 4-4h1.176c1.77 0 3.328-1.16 3.832-2.855.488-1.629 1.117-3.16 1.875-4.555.848-1.562.562-3.492-.695-4.746l-.812-.812c-1.562-1.559-1.562-4.098-.004-5.656 1.57-1.562 4.105-1.559 5.66 0l.82.82c1.25 1.25 3.18 1.531 4.73.691 1.426-.773 2.957-1.402 4.555-1.875 1.699-.504 2.863-2.062 2.863-3.836v-1.177c0-2.207 1.793-4 4-4s4 1.793 4 4v1.176c0 1.773 1.164 3.332 2.863 3.836 1.598.473 3.129 1.102 4.555 1.875 1.555.844 3.48.562 4.73-.691l.82-.82c1.562-1.559 4.098-1.566 5.66 0 1.559 1.559 1.559 4.098.008 5.648l-.824.82c-1.258 1.254-1.543 3.184-.695 4.746.758 1.395 1.387 2.926 1.875 4.555.504 1.695 2.062 2.855 3.832 2.855h1.176c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m156 90c-8.824 0-16 7.176-16 16s7.176 16 16 16 16-7.176 16-16-7.176-16-16-16zm0 24c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path></g></svg>							\n												<h5>\n													Emotional Support												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m206.102 400.162c-46.373 0-92.751-17.652-128.056-52.957-34.207-34.208-53.046-79.687-53.046-128.061s18.839-93.853 53.046-128.06c70.615-70.615 185.512-70.605 256.117 0 70.614 70.614 70.614 185.507 0 256.121-35.305 35.305-81.683 52.957-128.061 52.957zm0-346.791c-42.47 0-84.94 16.167-117.271 48.498-64.665 64.666-64.665 169.885 0 234.551 64.666 64.666 169.891 64.661 234.547 0 31.328-31.328 48.578-72.978 48.578-117.276 0-44.297-17.25-85.947-48.578-117.275-32.33-32.331-74.801-48.498-117.276-48.498z\"></path><path d=\"m206.102 357.901c-37.063 0-71.905-14.435-98.109-40.643-54.098-54.1-54.098-142.128 0-196.227 54.1-54.1 142.124-54.09 196.223 0 54.1 54.099 54.1 142.128 0 196.227-26.208 26.208-61.051 40.643-98.114 40.643zm0-262.194c-31.626 0-63.25 12.036-87.324 36.109-48.151 48.156-48.151 126.502 0 174.657 23.323 23.328 54.338 36.174 87.324 36.174s64.001-12.845 87.329-36.174c48.151-48.156 48.151-126.502 0-174.657-24.078-24.073-55.703-36.109-87.329-36.109z\"></path><path d=\"m297.428 421.907c-8.813 0-17.618-3.352-24.326-10.061-2.978-2.978-2.978-7.805 0-10.785 2.98-2.98 7.806-2.98 10.786 0 7.468 7.468 19.619 7.468 27.087 0l77.045-77.05c3.615-3.62 5.606-8.427 5.606-13.54 0-5.115-1.991-9.921-5.606-13.541-2.979-2.98-2.979-7.805 0-10.785 2.98-2.979 7.806-2.979 10.785 0 13.412 13.412 13.412 35.241 0 48.652l-77.045 77.05c-6.709 6.707-15.523 10.06-24.332 10.06z\"></path><path d=\"m402.881 461.874c-12.275 0-23.809-4.783-32.489-13.462l-47.992-47.991c-2.979-2.98-2.979-7.805 0-10.785l54.194-54.193c2.979-2.979 7.805-2.979 10.785 0l47.992 47.991c8.679 8.68 13.461 20.215 13.461 32.49s-4.782 23.809-13.461 32.489c-8.68 8.679-20.216 13.461-32.49 13.461zm-64.303-66.846 42.599 42.599c11.967 11.967 31.442 11.967 43.408 0 11.968-11.968 11.968-31.442 0-43.408l-42.599-42.6z\"></path><path d=\"m467.373 461.874h-355.566c-4.211 0-7.627-3.417-7.627-7.628s3.416-7.627 7.627-7.627h355.566c4.211 0 7.627 3.416 7.627 7.627s-3.416 7.628-7.627 7.628z\"></path><path d=\"m401.258 421.926c-1.951 0-3.904-.744-5.392-2.234l-21.675-21.679c-2.98-2.979-2.98-7.806 0-10.786 2.979-2.979 7.805-2.979 10.785 0l21.675 21.68c2.98 2.979 2.98 7.805 0 10.785-1.491 1.489-3.442 2.234-5.393 2.234z\"></path><path d=\"m206.102 305.102c-.814 0-1.628-.129-2.413-.392-3.814-1.272-41.556-24.446-49.383-62.342-6.668-32.305 9.048-65.739 46.716-99.385 2.89-2.583 7.269-2.583 10.16 0 37.668 33.641 53.384 67.079 46.715 99.38-7.826 37.897-45.569 61.076-49.383 62.347-.783.263-1.598.392-2.412.392zm0-146.07c-27.603 26.133-40.27 51.358-37.674 75.049 3.138 28.626 28.11 47.967 37.674 54.392 9.564-6.426 34.541-25.762 37.679-54.392 2.597-23.691-10.075-48.916-37.679-75.049z\"></path><path d=\"m212.691 305.102c-3.48 0-5.675-.164-6.082-.198-2.652-.224-5.001-1.813-6.192-4.192-.029-.06-.243-.501-.268-.561-1.658-3.541-.373-7.757 2.979-9.768 10.835-6.515 63.212-41.869 30.112-98.402-1.073-1.832-1.331-4.027-.715-6.062.615-2.031 2.045-3.715 3.957-4.648 14.42-7.027 32.256-12.021 53.007-14.842 3.889-.571 7.478 1.927 8.427 5.685 11.51 45.499 7.364 80.353-12.324 103.586-22.525 26.577-58.58 29.402-72.901 29.402zm37.744-113.333c22.007 44.953-.696 78.336-19.848 96.52 13.933-2.384 31.348-8.268 43.364-22.45 15.403-18.178 19.019-46.169 10.775-83.267-12.915 2.146-24.4 5.225-34.291 9.197z\"></path><path d=\"m199.553 305.102c-14.291 0-50.42-2.82-72.944-29.416-19.678-23.233-23.824-58.082-12.314-103.571.948-3.758 4.509-6.256 8.422-5.685 20.756 2.821 38.592 7.816 53.012 14.842 1.912.933 3.342 2.617 3.958 4.648.615 2.035.358 4.23-.715 6.062-33.1 56.533 19.276 91.887 30.111 98.402 3.392 2.036 4.662 6.332 2.925 9.887-1.182 2.413-3.734 4.409-6.411 4.633-.408.035-2.589.198-6.044.198zm-72.07-122.529c-8.243 37.088-4.633 65.079 10.765 83.257 12.007 14.177 29.426 20.066 43.364 22.45-19.147-18.184-41.849-51.562-19.837-96.51-9.892-3.973-21.371-7.052-34.292-9.197z\"></path><path d=\"m205.154 304.547c-4.211 0-7.627-3.417-7.627-7.628v-71.533c0-4.211 3.416-7.627 7.627-7.627s7.628 3.416 7.628 7.627v71.533c-.001 4.211-3.417 7.628-7.628 7.628z\"></path></g></svg>							\n												<h5>\n													Self-Exploration												</h5>\n											<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m295.544 178.256a6.741 6.741 0 0 0 -3.689-3.623 6.718 6.718 0 0 0 -8.727 3.475c-.058.16-.123.319-.193.475a6.715 6.715 0 0 0 3.572 8.482q.238.087.473.192a6.789 6.789 0 0 0 8.569-9zm4.657-15.648a21.3 21.3 0 0 1 -18.927 38.018l-.027-.012a21.345 21.345 0 0 1 -11.856-27.305 7.1 7.1 0 0 1 .358-.879 21.238 21.238 0 0 1 11.277-11.14 21.465 21.465 0 0 1 4.89-1.409 108.471 108.471 0 0 1 110.169-79.395l-7.5-9.84a7.256 7.256 0 0 1 11.533-8.807l18.139 23.785a7.255 7.255 0 0 1 -1.364 10.17l-23.793 18.138a7.256 7.256 0 0 1 -8.8-11.532l9.821-7.488a94.123 94.123 0 0 0 -93.917 67.7zm-136.607 130.062c-1.181-.462-2.53-.937-4.2-1.439-1.749-.526-3.761-1.034-5.893-1.571-2.249-.568-4.622-1.167-6.887-1.817a81.221 81.221 0 0 1 -7.736-2.626 52.681 52.681 0 0 1 -7.96-3.915 57.093 57.093 0 0 1 -5.122-3.558 19.314 19.314 0 0 1 -2.1 3.175 29.979 29.979 0 0 1 -4.78 4.617c-1.583 1.254-3.581 2.64-5.787 4.091-1.069.7-2 1.305-2.835 1.842v15.331a30.06 30.06 0 0 0 7.975 20.595 25.087 25.087 0 0 0 37.345 0 30.056 30.056 0 0 0 7.976-20.595v-14.13zm-3.794 117.75q-.863.314-1.737.606a66.691 66.691 0 0 1 -42.171 0q-.874-.292-1.736-.606 8.1 16.046 22.822 31.483 14.722-15.438 22.822-31.483zm-44.516-66.689-1.446 6.36a26.013 26.013 0 0 1 -8.247 14.073q-.63.554-1.295 1.069a86.352 86.352 0 0 0 2.3 24.838 49.4 49.4 0 0 0 13.842 7.2 53.4 53.4 0 0 0 33.079 0 49.4 49.4 0 0 0 13.842-7.2 86.282 86.282 0 0 0 2.3-24.786q-.7-.539-1.362-1.121a26.01 26.01 0 0 1 -8.247-14.073l-1.446-6.36a39.133 39.133 0 0 1 -43.323 0zm102.131 19.247c21.553 5.007 34.482 13.526 35.172 45.641v.142h.028v79.966a7.273 7.273 0 0 1 -7.272 7.273h-216.795a7.273 7.273 0 0 1 -7.273-7.273v-79.966a7.309 7.309 0 0 1 .049-.842c.911-33.257 15.2-40.822 38.733-45.728.5-7.586 1.773-17.265 3.2-28.09 2.421-18.4 5.3-40.261 5.3-60.319a67.9 67.9 0 0 1 19.627-47.875 66.563 66.563 0 0 1 94.957 0 67.889 67.889 0 0 1 19.627 47.875c0 22.494 5.342 45.587 9.591 63.955 2.279 9.851 4.261 18.419 5.062 25.241zm-46.7-31.379a44.85 44.85 0 0 0 7.42-24.8v-18.92a7.275 7.275 0 0 0 -4.889-6.873c-1.2-.525-2.455-1.065-4.1-1.717-1.832-.726-3.692-1.4-5.606-1.978-2.014-.606-4.2-1.158-6.517-1.742-2.01-.507-4.13-1.042-6.433-1.7-2.252-.647-4.44-1.344-6.372-2.113a37.981 37.981 0 0 1 -5.745-2.837 66.527 66.527 0 0 1 -8.659-6.687c-.68-.593-.82-.722-1.072-.939l.012-.014a14.573 14.573 0 0 0 -4.812-3.1c-6.5-2.195-9.224.041-10.259 6.5a21.51 21.51 0 0 0 -.208 2.607 14.785 14.785 0 0 1 -.37 3.3 3.848 3.848 0 0 1 -.715 1.241 16.145 16.145 0 0 1 -2.507 2.344c-1.423 1.129-3.022 2.244-4.707 3.353-1.127.741-3.346 2.131-5.627 3.557a7.274 7.274 0 0 0 -3.8 6.392v19.327a44.847 44.847 0 0 0 7.42 24.8l-3.479 15.309a11.711 11.711 0 0 1 -3.7 6.345 18.2 18.2 0 0 1 -8.506 3.875c-3.592.726-8.189 1.542-12.649 2.326.575-6.608 1.632-14.641 2.8-23.479 2.5-19 5.467-41.557 5.467-62.194a53.45 53.45 0 0 1 15.423-37.7 52.155 52.155 0 0 1 74.275 0 53.45 53.45 0 0 1 15.423 37.7c0 24.013 5.564 48.064 9.989 67.193 1.675 7.243 3.177 13.738 4.1 19.051l-2.054-.362c-4.821-.846-9.929-1.744-13.842-2.535a18.2 18.2 0 0 1 -8.506-3.875 11.711 11.711 0 0 1 -3.7-6.345l-3.482-15.31zm-41.01 149.856h-45.614a7.289 7.289 0 0 0 -.715-1.2 26.958 26.958 0 0 1 -5.261-16.38q0-9.969 5.972-22.523a7.256 7.256 0 0 0 -13.125-6.193q-7.392 15.54-7.393 28.716a41.569 41.569 0 0 0 3.738 17.583h-31.487v-72.697c0-.137 0-.274-.012-.41.791-27.416 16-30.094 40.333-34.368 3.862-.679 7.947-1.4 13.53-2.518a102.527 102.527 0 0 0 9.229 40.627q10.013 22.326 30.808 43.123v26.24zm14.545-26.241q20.795-20.795 30.808-43.121a102.527 102.527 0 0 0 9.226-40.616c5.55 1.115 9.617 1.83 13.466 2.506 24.453 4.3 39.695 6.976 40.344 34.778h-.024v72.694h-31.422a41.554 41.554 0 0 0 3.738-17.583q0-13.176-7.392-28.716a7.256 7.256 0 1 0 -13.125 6.193q5.971 12.554 5.972 22.523a26.959 26.959 0 0 1 -5.262 16.38 7.359 7.359 0 0 0 -.715 1.2h-45.614zm314.57-424.669a17.825 17.825 0 0 1 12.368 4.889 15.841 15.841 0 0 1 4.992 11.445v162.839a15.841 15.841 0 0 1 -4.992 11.445 17.821 17.821 0 0 1 -12.368 4.889h-92.395a7.234 7.234 0 0 0 -3.9 1.136l-22.385 12.384q-.276.151-.532.323l-36.3 20.086v-26.656a7.273 7.273 0 0 0 -7.273-7.273h-55.544a17.824 17.824 0 0 1 -12.368-4.889 15.844 15.844 0 0 1 -4.991-11.445v-162.839a15.842 15.842 0 0 1 4.991-11.445 17.829 17.829 0 0 1 12.368-4.889zm-218.329-14.545h218.329a32.378 32.378 0 0 1 22.425 8.979 30.272 30.272 0 0 1 9.48 21.9v162.839a30.268 30.268 0 0 1 -9.48 21.9 32.375 32.375 0 0 1 -22.425 8.98h-90.544l-21.149 11.7q-.257.141-.518.259l-47.084 26.051a7.236 7.236 0 0 1 -10.73-6.335h-.037v-31.673h-48.267a32.378 32.378 0 0 1 -22.425-8.98 30.272 30.272 0 0 1 -9.48-21.9v-162.841a30.268 30.268 0 0 1 9.48-21.9 32.378 32.378 0 0 1 22.425-8.979zm53.254 72.778-10.193-10.192 10.193-10.193a7.272 7.272 0 0 0 -10.285-10.284l-10.192 10.191-10.192-10.19a7.272 7.272 0 0 0 -10.284 10.284l10.192 10.192-10.192 10.191a7.272 7.272 0 0 0 10.284 10.284l10.192-10.191 10.192 10.192a7.272 7.272 0 0 0 10.285-10.284zm123.469 89.042-10.192-10.192 10.192-10.193a7.272 7.272 0 0 0 -10.284-10.284l-10.192 10.192-10.192-10.191a7.272 7.272 0 1 0 -10.284 10.284l10.192 10.192-10.192 10.191a7.272 7.272 0 1 0 10.284 10.281l10.192-10.191 10.192 10.191a7.272 7.272 0 0 0 10.284-10.284z\" fill-rule=\"evenodd\"></path></svg>							\n												<h5>\n													Coping Strategies												</h5>\n											<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M248.298,398.776v-96.35c0-5.971-2.694-11.517-7.393-15.216l-59.928-47.132c-2.984-2.348-7.254-2.094-9.939,0.592   l-14.349,14.349c-2.986,2.985-4.637,7.118-4.53,11.338c0.106,4.215,1.961,8.252,5.079,11.069l30.406,27.556l-1.867,1.93   c-1.111,1.149-2.665,1.808-4.265,1.808h-5.366c-4.046,0-7.953-1.201-11.299-3.474l-66.646-45.245   c-1.237-0.838-1.976-2.237-1.976-3.742v-42.516c0-8.724-7.102-15.821-15.832-15.821h-23.54c-4.142,0-7.5,3.358-7.5,7.5v72.637   c0,6.404,3.145,12.405,8.408,16.048l46.124,31.979c3.404,2.359,8.077,1.513,10.437-1.89c2.36-3.404,1.514-8.077-1.89-10.437   l-46.128-31.982c-1.222-0.846-1.951-2.235-1.951-3.718v-65.137h16.039c0.458,0,0.832,0.368,0.832,0.821v42.516   c0,6.486,3.2,12.526,8.556,16.155l66.64,45.241c5.84,3.967,12.661,6.064,19.726,6.064h5.366c5.643,0,11.128-2.326,15.047-6.38   l2.254-2.331c2.749-2.837,4.193-6.572,4.066-10.518c-0.127-3.948-1.811-7.585-4.741-10.242l-30.836-27.946   c-0.039-0.036-0.143-0.129-0.148-0.327c-0.005-0.206,0.101-0.312,0.141-0.352l9.642-9.642l54.693,43.015   c1.061,0.834,1.668,2.084,1.668,3.427v88.844h-60.32v-24.995c0-6.607-3.24-12.792-8.658-16.538l-27.532-19.089   c-3.405-2.36-8.077-1.514-10.437,1.89s-1.514,8.077,1.89,10.437l27.541,19.095c1.375,0.951,2.196,2.522,2.196,4.205v24.995h-3.726   c-4.142,0-7.5,3.358-7.5,7.5v58.66c0,0.033,0.004,0.064,0.005,0.097V504.5c0,4.142,3.358,7.5,7.5,7.5h25.971   c4.142,0,7.5-3.358,7.5-7.5c0-4.142-3.358-7.5-7.5-7.5h-18.471v-47.64h71.535v8.07c0,0.016,0.002,0.032,0.002,0.048V497h-23.519   c-4.142,0-7.5,3.358-7.5,7.5c0,4.142,3.358,7.5,7.5,7.5h31.019c4.142,0,7.5-3.358,7.5-7.5v-62.64c0-0.016-0.002-0.032-0.002-0.048   v-42.92C248.293,398.853,248.298,398.815,248.298,398.776z M233.292,434.359h-71.54V406.27h3.62c0.036,0,0.07,0.005,0.106,0.005   h67.814V434.359z\"></path>	</g></g><g>	<g>		<path d=\"M455.147,197.92h-23.535c-8.728,0-15.828,7.101-15.828,15.828v42.51c0,1.501-0.742,2.9-1.984,3.744l-66.637,45.24   c-3.349,2.273-7.258,3.475-11.304,3.475h-5.362c-1.604,0-3.162-0.66-4.279-1.813l-1.862-1.922l30.408-27.549   c3.125-2.831,4.977-6.871,5.08-11.085c0.104-4.215-1.546-8.342-4.526-11.324l-14.354-14.354c-2.687-2.686-6.956-2.939-9.94-0.592   l-47.179,37.107l-12.747,10.025c-4.695,3.693-7.389,9.238-7.389,15.211v96.35c0,0.02,0.003,0.038,0.003,0.058v42.972   c0,0.02-0.003,0.038-0.003,0.058v62.64c0,4.142,3.357,7.5,7.5,7.5h86.538c4.143,0,7.5-3.358,7.5-7.5v-46.973   c0-0.033,0.005-0.064,0.005-0.097v-58.66c0-4.142-3.357-7.5-7.5-7.5h-3.729v-24.994c0-1.68,0.824-3.254,2.204-4.211l98.021-67.96   c5.26-3.647,8.4-9.646,8.4-16.046V205.42C462.647,201.278,459.29,197.92,455.147,197.92z M350.247,497h-71.538v-39.512   c0-0.02,0.003-0.038,0.003-0.058v-8.07h71.535V497z M350.252,434.36h-71.54v-28.088h67.811c0.013,0,0.026-0.002,0.039-0.002h3.69   V434.36z M447.65,278.059h-0.003c0,1.483-0.728,2.874-1.947,3.719l-98.021,67.961c-5.42,3.759-8.656,9.941-8.656,16.538v24.994   H278.71v-88.848c0-1.343,0.605-2.591,1.662-3.421l12.747-10.025l41.946-32.992l9.646,9.646c0.039,0.04,0.144,0.144,0.139,0.347   s-0.114,0.302-0.155,0.339l-30.83,27.931c-2.928,2.653-4.611,6.289-4.74,10.238c-0.128,3.95,1.314,7.688,4.065,10.527l2.256,2.328   c3.924,4.053,9.41,6.377,15.053,6.377h5.362c7.062,0,13.884-2.097,19.729-6.064l66.638-45.241   c5.359-3.639,8.559-9.677,8.559-16.154v-42.51c0-0.457,0.371-0.828,0.828-0.828h16.035V278.059z\"></path>	</g></g><g>	<g>		<path d=\"M256.002,0c-55.95,0-102.985,41.857-109.407,97.364c-0.476,4.115,2.474,7.836,6.588,8.313   c4.12,0.482,7.836-2.474,8.313-6.588C167.042,51.15,207.671,15,256.002,15c52.466,0,95.15,42.684,95.15,95.15   c0,41.507-26.532,77.917-66.021,90.603c-1.723,0.553-3.187,1.71-4.123,3.258l-25.006,41.333l-25.006-41.333   c-0.937-1.548-2.401-2.705-4.123-3.258c-33.804-10.859-58.561-39.313-64.609-74.259c-0.707-4.082-4.587-6.812-8.669-6.111   c-4.082,0.707-6.817,4.588-6.111,8.669c6.842,39.527,34.351,71.881,72.103,85.076l30,49.587c1.358,2.246,3.792,3.618,6.417,3.618   s5.059-1.372,6.417-3.618l29.999-49.587c44.219-15.453,73.732-56.883,73.732-103.978C366.152,49.413,316.739,0,256.002,0z\"></path>	</g></g><g>	<g>		<path d=\"M315.754,102.65h-10.565c-1.234-8.128-4.447-15.612-9.123-21.955l7.492-7.492c2.929-2.929,2.929-7.678,0-10.606   c-2.93-2.929-7.678-2.929-10.607,0l-7.491,7.491c-6.343-4.676-13.827-7.888-21.955-9.123V50.4c0-4.142-3.357-7.5-7.5-7.5   c-4.142,0-7.5,3.358-7.5,7.5v10.565c-8.128,1.234-15.612,4.447-21.955,9.123l-7.491-7.491c-2.929-2.929-7.678-2.929-10.606,0   c-2.929,2.929-2.929,7.678,0,10.606l7.491,7.491c-4.676,6.343-7.889,13.828-9.123,21.956c0,0-10.569,0-10.569,0   c-4.142,0-7.5,3.358-7.5,7.5c0,4.142,3.358,7.5,7.5,7.5h10.565c1.234,8.128,4.447,15.613,9.123,21.956l-7.491,7.491   c-2.929,2.929-2.929,7.678,0,10.606c1.464,1.464,3.384,2.197,5.303,2.197s3.839-0.732,5.303-2.197l7.491-7.491   c6.343,4.676,13.828,7.889,21.956,9.123V169.9c0,4.142,3.358,7.5,7.5,7.5c4.143,0,7.5-3.358,7.5-7.5v-10.565   c8.128-1.234,15.612-4.447,21.956-9.123l7.491,7.491c1.465,1.464,3.385,2.197,5.304,2.197c1.919,0,3.839-0.732,5.304-2.197   c2.929-2.929,2.929-7.678,0-10.606l-7.491-7.491c4.676-6.343,7.889-13.828,9.123-21.956h10.565c4.143,0,7.5-3.358,7.5-7.5   C323.254,106.008,319.897,102.65,315.754,102.65z M290.751,110.164c-0.007,19.151-15.586,34.731-34.738,34.738   c-0.004,0-0.009-0.001-0.013-0.001c-0.004,0-0.009,0.001-0.013,0.001c-19.151-0.007-34.731-15.586-34.738-34.738   c0-0.004,0.001-0.009,0.001-0.013c0-0.004-0.001-0.008-0.001-0.013c0.009-19.154,15.592-34.735,34.746-34.738   c0.002,0,0.004,0,0.006,0s0.004,0,0.006,0c19.155,0.004,34.737,15.584,34.744,34.738c0,0.004-0.001,0.008-0.001,0.013   C290.75,110.155,290.751,110.16,290.751,110.164z\"></path>	</g></g><g>	<g>		<path d=\"M256.002,85.119c-13.802,0-25.032,11.229-25.032,25.031c0,13.803,11.229,25.032,25.032,25.032   c13.803,0,25.031-11.229,25.031-25.031C281.033,96.348,269.804,85.119,256.002,85.119z M256.002,120.182   c-5.532,0-10.032-4.5-10.032-10.031c0-5.532,4.5-10.032,10.032-10.032c5.531,0,10.031,4.5,10.031,10.032   C266.033,115.682,261.533,120.182,256.002,120.182z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>							\n												<h5>\n													Goal Setting												</h5>\n											<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xodm=\"http://www.corel.com/coreldraw/odm/2003\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_2077007814064\"><g id=\"_200306976\"><path d=\"m256 319.44c-1.59 0-3.12-.63-4.24-1.75-11.13-11.13-22.33-21.98-33.17-32.48-62.94-60.98-117.31-113.65-117.31-179.39 0-44.31 36.05-80.35 80.36-80.35 37.74 0 57.46 18.43 74.36 48.87 16.9-30.44 36.62-48.87 74.35-48.87 44.31 0 80.36 36.04 80.36 80.35 0 65.74-54.36 118.41-117.31 179.39-10.83 10.49-22.03 21.35-33.16 32.48-1.12 1.12-2.65 1.75-4.24 1.75zm-74.36-281.97c-37.69 0-68.35 30.66-68.35 68.35 0 60.66 52.67 111.69 113.65 170.77 9.5 9.2 19.27 18.67 29.06 28.39 9.78-9.72 19.56-19.19 29.06-28.39 60.98-59.08 113.65-110.11 113.65-170.77 0-37.69-30.66-68.35-68.35-68.35-31.58 0-49.63 13.72-68.99 52.45-1.02 2.03-3.1 3.31-5.37 3.31s-4.35-1.28-5.37-3.31c-19.36-38.73-37.41-52.45-68.99-52.45z\"></path></g><g><g id=\"_200307000\"><path d=\"m268.35 249.13h-24.7c-3.32 0-6-2.68-6-6v-11.56c-2.07-.72-4.09-1.56-6.06-2.51l-8.18 8.18c-1.13 1.12-2.65 1.75-4.25 1.75-1.59 0-3.11-.63-4.24-1.75l-17.47-17.47c-2.34-2.34-2.34-6.14 0-8.49l8.18-8.18c-.95-1.97-1.79-3.99-2.51-6.06h-11.57c-3.31 0-6-2.68-6-6v-24.7c0-3.32 2.69-6 6-6h11.57c.72-2.07 1.56-4.09 2.51-6.06l-8.18-8.18c-1.13-1.13-1.76-2.65-1.76-4.24 0-1.6.63-3.12 1.76-4.25l17.47-17.47c2.34-2.34 6.14-2.34 8.49 0l8.18 8.18c1.96-.95 3.99-1.79 6.05-2.51v-11.56c0-3.32 2.69-6 6-6h24.71c3.31 0 6 2.68 6 6v11.56c2.07.72 4.09 1.56 6.06 2.51l8.18-8.18c1.12-1.12 2.65-1.76 4.24-1.76s3.12.64 4.24 1.76l17.48 17.47c1.12 1.13 1.75 2.65 1.75 4.25 0 1.59-.63 3.11-1.75 4.24l-8.19 8.18c.96 1.97 1.8 3.99 2.52 6.06h11.56c3.32 0 6 2.68 6 6v24.7c0 3.32-2.68 6-6 6h-11.56c-.72 2.07-1.56 4.09-2.52 6.06l8.19 8.18c1.12 1.13 1.75 2.65 1.75 4.24 0 1.6-.63 3.12-1.75 4.25l-17.47 17.47c-2.35 2.34-6.15 2.34-8.49 0l-8.18-8.18c-1.97.95-3.99 1.79-6.06 2.51v11.57c0 3.31-2.69 5.99-6 5.99zm-18.7-12h12.7v-10.02c0-2.74 1.86-5.14 4.52-5.82 4.06-1.03 7.95-2.64 11.56-4.79 2.36-1.4 5.37-1.02 7.31.92l7.09 7.09 8.99-8.99-7.09-7.09c-1.94-1.94-2.32-4.95-.92-7.31 2.15-3.6 3.76-7.49 4.79-11.56.68-2.66 3.07-4.52 5.82-4.52h10.02v-12.7h-10.02c-2.75 0-5.14-1.87-5.82-4.52-1.03-4.07-2.64-7.95-4.79-11.56-1.4-2.36-1.03-5.37.92-7.31l7.09-7.1-8.99-8.98-7.09 7.09c-1.94 1.94-4.95 2.32-7.31.92-3.61-2.15-7.5-3.77-11.56-4.8-2.66-.67-4.52-3.07-4.52-5.81v-10.03h-12.7v10.03c0 2.74-1.87 5.14-4.53 5.81-4.05 1.04-7.94 2.65-11.55 4.8-2.36 1.4-5.37 1.02-7.31-.92l-7.1-7.09-8.98 8.99 7.09 7.09c1.94 1.94 2.32 4.95.92 7.31-2.15 3.61-3.76 7.5-4.8 11.55-.67 2.66-3.07 4.53-5.81 4.53h-10.02v12.7h10.02c2.74 0 5.14 1.86 5.81 4.52 1.04 4.06 2.65 7.95 4.8 11.56 1.4 2.36 1.02 5.37-.92 7.31l-7.09 7.09 8.98 8.99 7.1-7.09c1.94-1.94 4.95-2.32 7.31-.92 3.61 2.15 7.5 3.76 11.56 4.79 2.66.68 4.52 3.08 4.52 5.82z\"></path></g><g id=\"_200306760\"><path d=\"m256 215.48c-20.29 0-36.8-16.5-36.8-36.79s16.51-36.8 36.8-36.8 36.79 16.51 36.79 36.8-16.5 36.79-36.79 36.79zm0-61.59c-13.67 0-24.8 11.13-24.8 24.8s11.13 24.79 24.8 24.79 24.79-11.12 24.79-24.79-11.12-24.8-24.79-24.8z\"></path></g></g><g id=\"_200306784\"><path d=\"m461.9 340.14c-.4 0-.8-.04-1.21-.12-2.77-.57-4.77-3.01-4.79-5.84-.01-.8-.54-16.35-18.14-25.35-4.77 6.05-14.98 15.83-31.26 15.83-7.09 0-14.53-1.91-22.17-5.68-1.97 2.49-4.39 6.45-4.71 11.19-.17 2.67-2.1 4.89-4.71 5.46-2.62.57-5.29-.67-6.56-3.03-.73-1.35-17.54-33.58 6.24-66.87.25-.34.54-.67.85-.95.53-.48 13.04-11.64 29.73-11.64 8.33 0 16.16 2.73 23.32 8.11 6.78.84 29.41 4.94 40.34 22.87 8.21 13.48 7.74 31.11-1.42 52.39-.96 2.24-3.15 3.63-5.51 3.63zm-26.24-44.82c.73 0 1.45.13 2.16.41 12.4 4.82 19.68 12.11 23.97 19.04 1.81-9.72.76-17.87-3.18-24.36-9.39-15.48-32.65-17.38-32.88-17.39-1.23-.09-2.4-.56-3.35-1.33-5.36-4.35-11.14-6.55-17.2-6.55-10.52 0-19.21 6.52-21.25 8.17-10.03 14.4-10.85 28.57-9.39 38.73 2.4-3.14 4.55-4.96 4.74-5.12 1.93-1.61 4.66-1.85 6.84-.59 7.27 4.2 14.13 6.33 20.38 6.33 15.81 0 23.56-13.64 23.88-14.22 1.09-1.97 3.15-3.12 5.28-3.12z\"></path></g><g id=\"_200307264\"><path d=\"m419.46 411.58c-.16 0-.32 0-.48 0-10.3-.15-20.06-5.17-28.23-14.52-7.44-8.5-13.2-20.37-16.78-34.51-9.81-1.95-15.33-9.01-16.53-15.9-1.66-9.54 3.98-18.57 14.03-22.48 3.08-1.2 6.56.33 7.76 3.42s-.33 6.56-3.41 7.77c-5.64 2.19-7.06 6.34-6.56 9.23.53 3.02 3.36 6.31 9.74 6.48 2.77.08 5.12 2.03 5.71 4.73 5.7 26.37 19.22 43.55 34.45 43.78h.29c14.2 0 26.75-15.15 32.81-39.65.62-2.5 2.75-4.32 5.31-4.54 5.81-.5 8.33-3.74 8.74-6.61.43-2.97-1.08-6.91-6.58-9.05-3.09-1.2-4.62-4.68-3.42-7.76 1.2-3.09 4.68-4.62 7.77-3.42 9.78 3.8 15.45 12.62 14.11 21.93-1.15 8.02-6.99 14.03-15.29 16.15-7.91 27.89-24.31 44.95-43.44 44.95z\"></path></g><g id=\"_200306808\"><path d=\"m332.55 486.53c-1.59 0-3.11-.63-4.24-1.75-1.12-1.13-1.76-2.65-1.76-4.25 0-44.88 21.25-52.28 38.32-58.24 13.67-4.77 23.55-8.21 24.07-29.7.08-3.31 2.86-5.89 6.15-5.85 3.31.08 5.93 2.83 5.85 6.15-.73 29.78-17.41 35.6-32.12 40.73-15.3 5.34-28.64 9.99-30.13 40.91h161.17c-1.49-30.92-14.83-35.57-30.13-40.91-14.73-5.13-31.42-10.96-32.12-40.8-.08-3.31 2.54-6.06 5.85-6.14 3.31-.11 6.06 2.54 6.14 5.86.51 21.53 10.4 24.98 24.08 29.75 17.07 5.96 38.32 13.36 38.32 58.24 0 3.31-2.69 6-6 6z\"></path></g><g id=\"_200306616\"><path d=\"m419.27 443.04c-15.8 0-30.68-6.12-41.9-17.25-2.36-2.33-2.38-6.13-.04-8.48 2.33-2.35 6.13-2.37 8.48-.04 8.96 8.88 20.85 13.77 33.46 13.77 12.62 0 24.5-4.89 33.46-13.77 2.36-2.33 6.16-2.31 8.49.04s2.31 6.15-.04 8.48c-11.22 11.13-26.11 17.25-41.91 17.25z\"></path></g><g id=\"_200307672\"><path d=\"m374.04 486.53c-3.32 0-6-2.68-6-6v-19.82c0-3.31 2.68-6 6-6 3.31 0 6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307888\"><path d=\"m464.51 486.53c-3.31 0-6-2.68-6-6v-19.82c0-3.31 2.69-6 6-6s6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307744\"><path d=\"m135.35 340.14c-.4 0-.8-.04-1.21-.12-2.77-.57-4.77-3.01-4.79-5.84-.01-.8-.54-16.35-18.14-25.35-4.77 6.05-14.98 15.83-31.26 15.83-7.09 0-14.53-1.91-22.17-5.68-1.97 2.49-4.39 6.45-4.7 11.19-.18 2.67-2.11 4.89-4.72 5.46-2.62.57-5.29-.67-6.56-3.03-.72-1.35-17.54-33.58 6.24-66.87.25-.34.54-.67.86-.95.52-.48 13.03-11.64 29.73-11.64 8.32 0 16.16 2.73 23.31 8.11 6.78.84 29.41 4.94 40.34 22.87 8.22 13.48 7.74 31.11-1.42 52.39-.96 2.24-3.15 3.63-5.51 3.63zm-26.25-44.82c.72 0 1.46.13 2.17.41 12.4 4.82 19.69 12.1 23.97 19.04 1.81-9.72.76-17.87-3.18-24.36-9.39-15.48-32.65-17.37-32.88-17.39-1.22-.09-2.4-.56-3.35-1.33-5.36-4.35-11.14-6.55-17.2-6.55-10.52 0-19.21 6.52-21.24 8.17-10.04 14.4-10.85 28.57-9.4 38.73 2.4-3.14 4.55-4.96 4.74-5.12 1.93-1.61 4.67-1.85 6.84-.59 7.27 4.2 14.13 6.33 20.38 6.33 16.01 0 23.79-14.05 23.86-14.2 1.08-1.98 3.14-3.14 5.29-3.14z\"></path></g><g id=\"_200307960\"><path d=\"m92.91 411.58c-.16 0-.32 0-.48 0-10.3-.15-20.06-5.17-28.23-14.52-7.44-8.5-13.2-20.37-16.79-34.51-9.8-1.95-15.32-9.01-16.52-15.9-1.66-9.54 3.98-18.57 14.03-22.48 3.08-1.2 6.56.33 7.76 3.42s-.33 6.56-3.41 7.77c-5.64 2.19-7.06 6.34-6.56 9.23.53 3.02 3.36 6.31 9.74 6.48 2.77.08 5.12 2.03 5.71 4.73 5.7 26.37 19.22 43.55 34.45 43.78h.29c14.2 0 26.75-15.15 32.81-39.65.62-2.5 2.75-4.32 5.31-4.54 5.81-.5 8.33-3.74 8.74-6.61.43-2.97-1.08-6.91-6.58-9.05-3.09-1.2-4.62-4.68-3.42-7.76 1.2-3.09 4.68-4.62 7.77-3.42 9.78 3.8 15.45 12.62 14.11 21.93-1.16 8.02-6.99 14.03-15.3 16.15-7.9 27.89-24.3 44.95-43.43 44.95z\"></path></g><g id=\"_200307408\"><path d=\"m6 486.53c-1.59 0-3.11-.63-4.24-1.75-1.12-1.13-1.76-2.65-1.76-4.25 0-44.88 21.25-52.28 38.32-58.24 13.67-4.77 23.55-8.21 24.08-29.7.08-3.31 2.82-5.89 6.14-5.85 3.31.08 5.93 2.83 5.85 6.15-.73 29.78-17.41 35.6-32.12 40.73-15.3 5.34-28.64 9.99-30.13 40.91h161.17c-1.5-30.92-14.83-35.57-30.13-40.91-14.73-5.13-31.42-10.96-32.12-40.8-.08-3.31 2.54-6.06 5.85-6.14 3.27-.11 6.06 2.54 6.14 5.86.51 21.53 10.4 24.98 24.08 29.75 17.07 5.96 38.32 13.36 38.32 58.24 0 3.31-2.69 6-6 6h-173.45z\"></path></g><g id=\"_200307648\"><path d=\"m92.73 443.04c-15.81 0-30.69-6.12-41.91-17.25-2.36-2.33-2.37-6.13-.04-8.48s6.13-2.37 8.48-.04c8.97 8.88 20.85 13.77 33.47 13.77 12.61 0 24.49-4.89 33.45-13.77 2.36-2.33 6.16-2.31 8.49.04s2.31 6.15-.04 8.48c-11.22 11.13-26.11 17.25-41.9 17.25z\"></path></g><g id=\"_200307720\"><path d=\"m47.49 486.53c-3.32 0-6-2.68-6-6v-19.82c0-3.31 2.68-6 6-6 3.31 0 6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307456\"><path d=\"m137.96 486.53c-3.31 0-6-2.68-6-6v-19.82c0-3.31 2.69-6 6-6s6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307840\"><path d=\"m94.44 269.46c-3.31 0-6-2.68-6-6v-23.34c0-8.01 6.52-14.53 14.53-14.53h70.38c3.31 0 6 2.69 6 6 0 3.32-2.69 6-6 6h-70.38c-1.37 0-2.53 1.16-2.53 2.53v23.34c0 3.32-2.68 6-6 6zm323.12-1.73c-3.32 0-6-2.69-6-6v-21.61c0-1.37-1.16-2.53-2.53-2.53h-70.38c-3.31 0-6-2.68-6-6 0-3.31 2.69-6 6-6h70.37c8.02 0 14.54 6.52 14.54 14.53v21.61c0 3.31-2.69 6-6 6z\"></path></g></g></g></svg>							\n												<h5>\n													Relationship Improvement												</h5>\n											<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m434.61 333.03-21.34-36.58c6.76-18.2 7.07-35.07.96-51.47-5.64-15.15-16.96-29.98-34.59-45.33-11.13-9.69-23.22-17.82-35.9-24.21.12-3.43-1.13-6.87-3.68-9.41l-11.45-11.45c-.24-.24-.28-.47-.12-.78 1.77-3.49 3.28-7.13 4.5-10.84.11-.32.3-.46.64-.46h16.19c6.99 0 12.67-5.68 12.67-12.67v-22.44c0-6.99-5.68-12.67-12.67-12.67h-16.19c-.34 0-.53-.14-.64-.46-1.22-3.71-2.73-7.35-4.5-10.84-.15-.3-.12-.53.12-.77l11.45-11.45c2.39-2.39 3.71-5.57 3.71-8.96s-1.32-6.57-3.71-8.96l-15.87-15.87c-2.39-2.39-5.57-3.71-8.96-3.71s-6.57 1.32-8.96 3.71l-11.45 11.45c-.24.24-.47.28-.77.12-3.48-1.77-7.13-3.28-10.84-4.5-.32-.11-.46-.3-.46-.64v-16.17c0-6.99-5.68-12.67-12.67-12.67h-22.44c-6.99 0-12.67 5.68-12.67 12.67v16.19c0 .34-.14.53-.46.64-3.7 1.22-7.35 2.73-10.84 4.5-.3.15-.54.12-.77-.12l-11.45-11.45c-2.39-2.39-5.57-3.71-8.96-3.71s-6.57 1.32-8.96 3.71l-15.87 15.87c-2.39 2.39-3.71 5.57-3.71 8.96s1.32 6.57 3.71 8.96l11.45 11.45c.24.24.28.47.12.77-1.77 3.49-3.28 7.13-4.5 10.84-.11.32-.3.46-.64.46h-16.19c-6.99 0-12.67 5.68-12.67 12.67v10.02c-.5 1.37-.76 2.83-.76 4.3v16.19c0 .34-.14.53-.46.64-3.7 1.22-7.35 2.73-10.84 4.5-.3.15-.54.12-.78-.12l-11.45-11.45c-2.39-2.39-5.57-3.71-8.96-3.71s-6.57 1.32-8.96 3.71l-15.87 15.87c-2.39 2.39-3.71 5.57-3.71 8.96s1.32 6.57 3.71 8.96l11.45 11.45c.24.24.28.47.12.77-1.77 3.49-3.28 7.13-4.49 10.84-.11.32-.3.46-.64.46h-16.16c-6.99 0-12.67 5.68-12.67 12.67v22.44c0 6.99 5.68 12.67 12.67 12.67h16.19c.34 0 .53.14.63.46 1.22 3.7 2.73 7.35 4.5 10.84.15.3.12.53-.12.77l-11.45 11.45c-2.39 2.39-3.71 5.57-3.71 8.96s1.32 6.57 3.71 8.96l15.87 15.87c2.39 2.39 5.57 3.71 8.96 3.71s6.57-1.32 8.96-3.71l11.45-11.45c.24-.24.47-.28.78-.12 2.63 1.33 5.35 2.52 8.12 3.55 3.63 25.86 18.43 52.67 31.88 77.01 3.47 6.29 6.76 12.23 9.84 18.11 12.69 35.72 7.66 78.5-12.56 106.56l-6.85 9.51h173.63v-44.26c38.01-.13 59.59-5.99 67.67-18.29 6.96-10.6 1.74-22.31-1.38-29.3-.44-.98-.98-2.19-1.34-3.11 3.35-4.7 4.47-10.39 3.12-16.07.14-.2.3-.41.43-.59 2.26-3.05 6.46-8.74 3.06-18.47-.43-1.24-.63-2.03-.72-2.5.71-.41 1.88-.97 2.87-1.44 1.82-.86 4.08-1.94 6.69-3.46 4.46-2.6 7.64-6.79 8.96-11.8s.59-10.29-2.01-14.74zm-267.36-225.64c0-.36.31-.67.67-.67h16.19c5.49 0 10.32-3.5 12.04-8.71 1.03-3.13 2.31-6.21 3.8-9.16 2.48-4.9 1.54-10.8-2.34-14.68l-11.45-11.45c-.13-.13-.19-.29-.19-.47 0-.19.06-.35.19-.47l15.87-15.87c.25-.25.69-.25.95 0l11.45 11.45c3.88 3.88 9.78 4.82 14.68 2.34 2.95-1.49 6.03-2.77 9.16-3.8 5.21-1.71 8.72-6.55 8.72-12.04v-16.19c0-.36.31-.67.67-.67h22.44c.36 0 .67.31.67.67v16.19c0 5.49 3.5 10.32 8.71 12.04 3.13 1.03 6.21 2.31 9.16 3.8 4.9 2.48 10.8 1.54 14.68-2.34l11.45-11.45c.25-.25.69-.25.95 0l15.87 15.87c.13.13.19.29.19.47 0 .19-.06.35-.19.47l-11.45 11.45c-3.88 3.88-4.83 9.78-2.34 14.68 1.49 2.95 2.77 6.03 3.8 9.16 1.71 5.21 6.55 8.71 12.04 8.71h16.19c.36 0 .67.31.67.67v22.44c0 .36-.31.67-.67.67h-16.19c-5.49 0-10.32 3.5-12.04 8.71-1.03 3.13-2.31 6.21-3.8 9.16-2.48 4.9-1.54 10.8 2.34 14.68l4.07 4.07c-6.1-2.13-12.28-3.88-18.52-5.21-5.2-1.11-10.41-1.91-15.6-2.44 12.29-9.41 20.24-24.22 20.24-40.86 0-28.37-23.08-51.45-51.45-51.45s-51.45 23.08-51.45 51.45c0 20.1 11.59 37.53 28.43 45.99-1.46.45-2.91.93-4.35 1.43-13.15 4.6-25.02 11.14-35.4 19.37l-9.95-9.95c-.13-.13-.19-.28-.19-.47s.06-.35.19-.47l11.45-11.45c3.88-3.88 4.82-9.78 2.34-14.68-1.49-2.95-2.77-6.03-3.8-9.16-1.71-5.21-6.55-8.72-12.04-8.72h-16.19c-.36 0-.67-.31-.67-.67zm91.61 50.67c-21.75 0-39.45-17.7-39.45-39.45s17.7-39.45 39.45-39.45 39.45 17.7 39.45 39.45-17.7 39.45-39.45 39.45zm-81.2 25.88 9.4 9.4c-14.24 13.88-24.92 31.39-31.29 51.61-10.4-7.3-16.85-19.33-16.85-32.3 0-20.29 15.4-37.05 35.13-39.21-.06.51-.1 1.02-.1 1.54 0 3.39 1.32 6.57 3.71 8.96zm-43.73 89.97-11.45 11.45c-.25.25-.69.25-.94 0l-15.87-15.87c-.16-.16-.19-.34-.19-.47 0-.19.06-.35.19-.47l11.45-11.45c3.88-3.88 4.83-9.78 2.34-14.68-1.49-2.95-2.77-6.03-3.8-9.16-1.71-5.21-6.55-8.72-12.04-8.72h-16.19c-.36 0-.67-.31-.67-.67v-22.44c0-.36.31-.67.67-.67h16.19c5.49 0 10.32-3.5 12.04-8.71 1.03-3.13 2.31-6.21 3.8-9.16 2.48-4.9 1.54-10.8-2.34-14.68l-11.45-11.45c-.16-.16-.19-.34-.19-.47 0-.19.06-.35.19-.47l15.87-15.87c.25-.25.69-.25.95 0l11.45 11.45c3.88 3.88 9.78 4.82 14.68 2.34 2.95-1.49 6.03-2.77 9.16-3.8 3.75-1.23 6.61-4.09 7.92-7.63.72.13 1.47.21 2.23.21h16.19c.34 0 .53.14.63.46 1.22 3.7 2.73 7.35 4.5 10.84.15.3.12.53-.12.77l-6.78 6.78c-1.31-.1-2.64-.16-3.95-.16-28.37 0-51.45 23.08-51.45 51.45 0 18.39 9.91 35.35 25.61 44.49-.35 1.61-.69 3.23-.99 4.86-.64 3.46-.96 6.96-1.05 10.48-.63-.3-1.27-.6-1.89-.91-4.92-2.5-10.82-1.55-14.7 2.33zm291.06 70.74c-.5 1.91-1.71 3.5-3.4 4.49-2.17 1.27-4.1 2.18-5.8 2.99-6.98 3.32-12.43 7.02-8.33 18.75 1.31 3.74.35 5.03-1.38 7.37-1.5 2.02-4 5.41-2.62 9.89.88 2.86.29 5.54-1.71 7.76-3.67 4.08-1.39 9.2.82 14.14 3.1 6.95 5.42 13.09 2.31 17.82-3.31 5.04-15.96 13.42-63.57 12.85l-6.07-.07v44.36h-138.97c17.34-30.83 20.69-72.96 7.92-108.51l-.14-.39-.19-.37c-3.21-6.12-6.59-12.24-10.17-18.72-17.49-31.65-35.57-64.37-30.34-92.85 7.68-41.83 33.96-73.47 72.1-86.8 44.14-15.44 96.37-3.43 136.3 31.34 33.22 28.92 41.99 54.65 29.31 86.02l-1.1 2.73 24.28 41.62c.99 1.69 1.25 3.67.75 5.58zm-145.92-155.19c-51.35 0-93.14 41.78-93.14 93.14 0 51.35 41.78 93.13 93.14 93.13s93.14-41.78 93.14-93.13c0-51.36-41.78-93.14-93.14-93.14zm0 174.27c-44.74 0-81.14-36.4-81.14-81.13s36.4-81.14 81.14-81.14 81.14 36.4 81.14 81.14-36.4 81.13-81.14 81.13zm29.28-94.9c-3.51-13.57-12.31-26.17-25.63-36.38-2.15-1.65-5.15-1.65-7.3 0-13.32 10.22-22.12 22.81-25.63 36.38-7.81-2.14-16.51-2.65-25.56-1.45-2.69.35-4.81 2.47-5.16 5.16-2.5 18.97 2.38 35.68 13.74 47.04 9.42 9.42 22.51 14.38 37.52 14.38 2.85 0 5.77-.19 8.74-.55 2.98.36 5.89.55 8.74.55 15.01 0 28.1-4.96 37.52-14.38 11.36-11.36 16.24-28.07 13.74-47.04-.35-2.69-2.47-4.81-5.16-5.16-9.05-1.19-17.75-.68-25.56 1.45zm-29.28-23.87c12.29 10.71 19.01 23.83 19.01 37.34s-6.71 26.63-19.01 37.34c-12.29-10.71-19.01-23.83-19.01-37.34s6.72-26.63 19.01-37.34zm-48.55 33.87c6.31-.35 12.26.35 17.57 2.02-.01.48-.02.96-.02 1.45 0 14.08 5.57 27.65 15.92 39.27-9.08-1.12-16.89-4.67-22.68-10.47-7.77-7.75-11.52-19.08-10.79-32.27zm86.33 32.27c-5.8 5.8-13.61 9.34-22.68 10.47 10.35-11.63 15.91-25.19 15.91-39.27 0-.48-.01-.96-.02-1.45 5.31-1.67 11.25-2.36 17.57-2.02.73 13.19-3.03 24.52-10.78 32.27z\"></path></svg>							\n												<h5>\n													Skill Development												</h5>\n											<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m273.006 83.567v168.425h87.5a4 4 0 1 1 0 8h-87.5v168.433h87.5a4 4 0 0 1 0 8h-91.5a4 4 0 0 1 -4-4v-172.431h-23.979a4 4 0 1 1 0-8h23.973v-172.428a4 4 0 0 1 4-4h91.5a4 4 0 0 1 0 8zm170 415.36a66.5 66.5 0 1 0 -66.5-66.5 66.569 66.569 0 0 0 66.5 66.5zm0-352.86a66.5 66.5 0 1 0 -66.5-66.5 66.569 66.569 0 0 0 66.5 66.5zm0 176.427a66.5 66.5 0 1 0 -66.498-66.494 66.569 66.569 0 0 0 66.5 66.494zm-344.212-195.217-6.473 100.7a4.046 4.046 0 0 0 .55 2.3l17.454 29.364a3.994 3.994 0 0 0 6.88 0l17.454-29.364a3.983 3.983 0 0 0 .55-2.3l-6.473-100.7 60.793 15.639c16.032 4.116 26.821 18.062 27.5 35.53v140.818a19.6 19.6 0 0 1 -6.9 15.283 37.861 37.861 0 0 1 -11.274 6.887 15.2 15.2 0 0 1 -12.961-.608v-142.018a4 4 0 1 0 -8 0v291.546a13.657 13.657 0 0 1 -13.646 13.639h-32.839a13.657 13.657 0 0 1 -13.646-13.639v-130.33a4 4 0 1 0 -8 0v130.33a13.657 13.657 0 0 1 -13.646 13.639h-32.831a13.651 13.651 0 0 1 -13.639-13.639v-291.546a4 4 0 0 0 -8 0v142.018a15.314 15.314 0 0 1 -12.967.608 37.924 37.924 0 0 1 -11.28-6.887 19.616 19.616 0 0 1 -6.895-15.283v-140.818c.672-17.468 11.46-31.414 27.492-35.53l60.793-15.639zm-96.287 50.948v141.039a27.649 27.649 0 0 0 9.61 21.284 45.823 45.823 0 0 0 13.638 8.338 23.478 23.478 0 0 0 15.89.6v140.868a21.667 21.667 0 0 0 21.641 21.646h32.836a21.632 21.632 0 0 0 17.647-9.131 21.608 21.608 0 0 0 17.64 9.131h32.836a21.673 21.673 0 0 0 21.647-21.641v-140.88a22.827 22.827 0 0 0 7.016 1.114 24.352 24.352 0 0 0 8.867-1.707 45.84 45.84 0 0 0 13.639-8.338 27.648 27.648 0 0 0 9.609-21.284v-141.039c-.786-21.127-13.932-38.031-33.493-43.06l-61.836-15.911c22.691-13.039 31.486-42.089 31.807-67.909.193-15.46-4.622-28.557-13.924-37.887a47.161 47.161 0 0 0 -33.301-13.458h-.943a47.221 47.221 0 0 0 -33.379 13.46c-9.3 9.33-14.118 22.427-13.925 37.887.322 25.82 9.124 54.87 31.815 67.909l-61.836 15.909c-19.562 5.029-32.715 21.933-33.5 43.06zm444.493-61.479a4 4 0 1 1 -8 0v-33.179h-33.164a4 4 0 0 1 0-8h33.172v-33.174a4 4 0 0 1 8 0v33.172h33.172a4 4 0 0 1 0 8h-33.18v33.179zm0 102.081v33.165h33.172a4 4 0 1 1 0 8h-33.172v33.171a4 4 0 1 1 -8 0v-33.169h-33.164a4 4 0 0 1 0-8h33.172v-33.167a4 4 0 1 1 8 0zm0 176.419v33.179h33.172a4 4 0 0 1 0 8h-33.172v33.175a4 4 0 0 1 -8 0v-33.173h-33.164a4 4 0 0 1 0-8h33.172v-33.181a4 4 0 1 1 8 0z\" fill-rule=\"evenodd\"></path></svg>							\n												<h5>\n													Tailored Approaches												</h5>\n											<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.</p>										\n		Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:30:01', '2026-06-17 10:30:01', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=536', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(532, 1, '2026-06-17 10:29:23', '2026-06-17 10:29:23', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />																<h2>Psychotherapy</h2>		<ul style=\"margin-left: 18px;\">\n 	<li>Individual therapy</li>\n 	<li>Couples/marriage therapy</li>\n 	<li>Family therapy</li>\n 	<li>Child/teen therapy</li>\n 	<li>Online therapy</li>\n 	<li>COMMON SPECIALTIES &amp; approaches</li>\n 	<li>Anxiety therapy</li>\n 	<li>Cognitive behavioral therapy (CBT)</li>\n 	<li>Depression counseling</li>\n 	<li>Dialectical behavior therapy (DBT)</li>\n 	<li>Grief &amp; loss counseling</li>\n 	<li>Relational therapy</li>\n</ul>			<h3>Therapy can be highly beneficial for mental health for several reasons:</h3>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 64 64.1999969\" width=\"512\"><path d=\"m51.2529297 42.0226555c.6357422-.6357422.9863281-1.4804688.9863281-2.3808594 0-.8994141-.3500977-1.7441406-.9863281-2.3808594-1.3125-1.3125-3.4492188-1.3125-4.7617188 0l-9.3178711 9.3173828c-.7426758.7441406-1.1518555 1.7314453-1.1518555 2.7822266v11.6396484c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-5.109375l11.5913086-11.5917969c.1875-.1875.2929688-.4414062.2929688-.7070312v-11.5488281c0-2.0097656-1.6347656-3.6445312-3.6445312-3.6445312s-3.6450195 1.6347656-3.6450195 3.6445312v8.6582031l-4.2260742 4.2255859c-.1459961.1455078-.3828125.1435547-.527832 0-.1455078-.1455078-.1455078-.3818359 0-.5273438zm-3.7910156 4.3183594c.9243164.9248047 2.4306641.9267578 3.355957 0l4.519043-4.5185547c.1875-.1875.2929688-.4414062.2929688-.7070312v-9.0722656c0-.9072266.737793-1.6445312 1.6450195-1.6445312.9067383 0 1.6445312.7373047 1.6445312 1.6445312v11.1347656l-11.5913086 11.5917968c-.1875.1875-.2929688.4414062-.2929688.7070312v4.5234375h-9.0136719v-10.6396484c0-.5166016.2011719-1.0029297.5664062-1.3681641l9.3173828-9.3173828c.5332031-.5332031 1.4008789-.5332031 1.9331055 0 .2583008.2587891.4008789.6015625.4008789.9667969s-.1420898.7089844-.4003906.9667969l-2.3769531 2.3769531c-.9252929.9248047-.9252929 2.4306641.0000001 3.3554688z\"></path><path d=\"m6.7250977 28.398632c-2.0097656 0-3.6445312 1.6347656-3.6445312 3.6445312v11.5488281c0 .265625.1054688.5195312.2929688.7070312l11.5913086 11.5917969v5.109375c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-11.6396483c0-1.0507812-.4091797-2.0380859-1.1523438-2.7822266l-9.3173828-9.3173828c-1.3125-1.3125-3.4487305-1.3125-4.762207 0-.6357422.6367188-.9858398 1.4814453-.9858398 2.3808594 0 .9003906.3505859 1.7451172.9863281 2.3808594l2.3769531 2.3769531c.1455078.1455078.1455078.3818359 0 .5273438s-.3823242.1435547-.527832 0l-4.2260742-4.2255859v-8.6582031c-.0000002-2.0097657-1.6352541-3.6445314-3.6450197-3.6445314zm6.4570312 17.9423829c.925293.9267578 2.4316406.9257812 3.355957 0 .925293-.9248047.925293-2.4306641 0-3.3554688l-2.3769531-2.3769531c-.2583008-.2578125-.4003906-.6015625-.4003906-.9667969s.1425781-.7080078.4003906-.9667969c.5332031-.5332031 1.4003906-.5332031 1.9335938 0l9.3168945 9.3173828c.3657227.3652344.5668945.8515625.5668945 1.3681641v10.6396484h-9.0136719v-4.5234375c0-.265625-.1054688-.5195312-.2929688-.7070312l-11.5913085-11.5917969v-11.1347656c0-.9072266.737793-1.6445312 1.6445312-1.6445312.9072266 0 1.6450195.7373047 1.6450195 1.6445312v9.0722656c0 .265625.1054688.5195312.2929688.7070312z\"></path><path d=\"m32 2.0998046c-10.0986328 0-18.3144531 8.2158203-18.3144531 18.3144531s8.2158203 18.3144525 18.3144531 18.3144525 18.3144531-8.2158203 18.3144531-18.3144531-8.2158203-18.3144525-18.3144531-18.3144525zm0 2.0000003c7.614502 0 14.0088501 5.2510376 15.798584 12.3173819-3.1233521-2.2542105-8.8903809-3.70996-15.798584-3.70996s-12.6752319 1.4557495-15.798584 3.70996c1.7897339-7.0663443 8.184082-12.3173819 15.798584-12.3173819zm16.3144531 16.3144521c0 2.6992188-6.7001953 5.7070312-16.3144531 5.7070312s-16.3144531-3.0078125-16.3144531-5.7070312 6.7001953-5.7070302 16.3144531-5.7070302 16.3144531 3.0078115 16.3144531 5.7070302zm-16.3144531 16.3144532c-7.614502 0-14.0088501-5.2510376-15.798584-12.3173828 3.1233521 2.2542114 8.8903809 3.7099609 15.798584 3.7099609s12.6752319-1.4557495 15.798584-3.7099609c-1.7897339 7.0663452-8.184082 12.3173828-15.798584 12.3173828z\"></path></svg>							\n												<h5>\n													Safe Space												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"friendship-work\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><circle cx=\"72\" cy=\"102\" r=\"4\"></circle><circle cx=\"64\" cy=\"50\" r=\"4\"></circle><path d=\"m228 98h4v4c0 2.211 1.789 4 4 4s4-1.789 4-4v-4h4c2.211 0 4-1.789 4-4s-1.789-4-4-4h-4v-4c0-2.211-1.789-4-4-4s-4 1.789-4 4v4h-4c-2.211 0-4 1.789-4 4s1.789 4 4 4z\"></path><path d=\"m132 218h-16v-5.977c0-13.759-8.223-25.608-20-30.964v-35.059c0-.031-.017-.057-.018-.088 4.839-3.653 8.018-9.396 8.018-15.912 0-2.211-1.789-4-4-4h-30.707c-7.328 0-13.293 5.965-13.293 13.293v25.953c0 5.361 2.096 10.206 5.444 13.892-14.614 3.818-25.444 17.092-25.444 32.885v49.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-49.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v9.977c0 2.211 1.789 4 4 4h8v8h-20v-17.582c0-2.211-1.789-4-4-4s-4 1.789-4 4v21.582 24c0 2.211 1.789 4 4 4s4-1.789 4-4v-20h32c6.617 0 12-5.383 12-12s-5.383-12-12-12zm-68-78.707c0-2.918 2.375-5.293 5.293-5.293h26.023c-1.652 4.656-6.102 8-11.316 8h-20zm12.754 38.707c-7.031 0-12.754-5.723-12.754-12.754v-15.246h24v28zm55.246 56h-4v-8h4c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m56 210c-2.211 0-4 1.789-4 4v48c0 2.211 1.789 4 4 4s4-1.789 4-4v-48c0-2.211-1.789-4-4-4z\"></path><path d=\"m238.009 178.998c3.704-3.95 5.991-9.243 5.991-15.072v-9.926c0-11.027-8.973-20-20-20s-20 8.973-20 20v27.06c-11.777 5.355-20 17.205-20 30.964v45.976c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v45.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-15.99-11.1-29.402-25.991-33.025zm-26.009-.998v-24c0-6.617 5.383-12 12-12s12 5.383 12 12v9.926c0 7.762-6.312 14.074-14.074 14.074z\"></path><path d=\"m204 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m244 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m185.41 118.613c.102-.242.203-.488.301-.734 5.809-.832 10.289-5.844 10.289-11.879 0-1.206-.223-2.353-.555-3.452 10.229-11.777 15.466-22.512 15.466-31.899-.001-20.208-15.274-36.649-34.048-36.649-7.633 0-14.91 2.711-20.863 7.707-5.953-4.996-13.23-7.707-20.863-7.707-18.773 0-34.047 16.441-34.047 36.648 0 9.39 5.238 20.125 15.465 31.903-.333 1.098-.555 2.244-.555 3.449 0 6.035 4.48 11.047 10.289 11.879.098.246.199.488.301.73-3.516 4.699-3.141 11.406 1.125 15.672 4.27 4.27 10.98 4.633 15.672 1.129.242.102.488.203.734.301.832 5.809 5.844 10.289 11.879 10.289s11.047-4.48 11.879-10.289c.246-.098.492-.199.734-.301 4.688 3.504 11.398 3.141 15.672-1.129 4.262-4.261 4.641-10.965 1.125-15.668zm-50.273-76.613c6.707 0 13.09 2.82 17.965 7.945 1.516 1.586 4.281 1.586 5.797 0 4.874-5.125 11.257-7.945 17.964-7.945 14.363 0 26.047 12.852 26.047 28.648 0 6.991-4.298 15.714-12.379 25.343-1.433-.939-3.052-1.616-4.82-1.87-.098-.246-.199-.488-.301-.73 3.516-4.699 3.141-11.406-1.125-15.672-4.273-4.27-10.984-4.637-15.672-1.129-.242-.102-.488-.203-.734-.301-.832-5.809-5.844-10.289-11.879-10.289s-11.047 4.48-11.879 10.289c-.246.098-.492.199-.734.301-4.691-3.508-11.402-3.141-15.672 1.129-4.262 4.262-4.641 10.965-1.125 15.668-.102.242-.203.488-.301.734-1.769.253-3.387.931-4.821 1.87-8.079-9.625-12.378-18.35-12.378-25.343 0-15.796 11.683-28.648 26.047-28.648zm47.687 68c-1.77 0-3.328 1.16-3.832 2.855-.488 1.629-1.117 3.16-1.875 4.555-.848 1.562-.562 3.492.695 4.746l.812.812c1.562 1.559 1.562 4.098.004 5.656-1.562 1.566-4.098 1.559-5.66 0l-.82-.82c-1.254-1.254-3.18-1.535-4.73-.691-1.426.773-2.957 1.402-4.555 1.875-1.699.504-2.863 2.062-2.863 3.836v1.176c0 2.207-1.793 4-4 4s-4-1.793-4-4v-1.176c0-1.773-1.164-3.332-2.863-3.836-1.598-.473-3.129-1.102-4.555-1.875-.598-.324-1.254-.48-1.902-.48-1.035 0-2.059.402-2.828 1.172l-.82.82c-1.559 1.559-4.094 1.566-5.66 0-1.559-1.559-1.559-4.098-.008-5.648l.824-.82c1.258-1.254 1.543-3.184.695-4.746-.758-1.395-1.387-2.926-1.875-4.555-.504-1.695-2.062-2.855-3.832-2.855h-1.176c-2.207 0-4-1.793-4-4s1.793-4 4-4h1.176c1.77 0 3.328-1.16 3.832-2.855.488-1.629 1.117-3.16 1.875-4.555.848-1.562.562-3.492-.695-4.746l-.812-.812c-1.562-1.559-1.562-4.098-.004-5.656 1.57-1.562 4.105-1.559 5.66 0l.82.82c1.25 1.25 3.18 1.531 4.73.691 1.426-.773 2.957-1.402 4.555-1.875 1.699-.504 2.863-2.062 2.863-3.836v-1.177c0-2.207 1.793-4 4-4s4 1.793 4 4v1.176c0 1.773 1.164 3.332 2.863 3.836 1.598.473 3.129 1.102 4.555 1.875 1.555.844 3.48.562 4.73-.691l.82-.82c1.562-1.559 4.098-1.566 5.66 0 1.559 1.559 1.559 4.098.008 5.648l-.824.82c-1.258 1.254-1.543 3.184-.695 4.746.758 1.395 1.387 2.926 1.875 4.555.504 1.695 2.062 2.855 3.832 2.855h1.176c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m156 90c-8.824 0-16 7.176-16 16s7.176 16 16 16 16-7.176 16-16-7.176-16-16-16zm0 24c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path></g></svg>							\n												<h5>\n													Emotional Support												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m206.102 400.162c-46.373 0-92.751-17.652-128.056-52.957-34.207-34.208-53.046-79.687-53.046-128.061s18.839-93.853 53.046-128.06c70.615-70.615 185.512-70.605 256.117 0 70.614 70.614 70.614 185.507 0 256.121-35.305 35.305-81.683 52.957-128.061 52.957zm0-346.791c-42.47 0-84.94 16.167-117.271 48.498-64.665 64.666-64.665 169.885 0 234.551 64.666 64.666 169.891 64.661 234.547 0 31.328-31.328 48.578-72.978 48.578-117.276 0-44.297-17.25-85.947-48.578-117.275-32.33-32.331-74.801-48.498-117.276-48.498z\"></path><path d=\"m206.102 357.901c-37.063 0-71.905-14.435-98.109-40.643-54.098-54.1-54.098-142.128 0-196.227 54.1-54.1 142.124-54.09 196.223 0 54.1 54.099 54.1 142.128 0 196.227-26.208 26.208-61.051 40.643-98.114 40.643zm0-262.194c-31.626 0-63.25 12.036-87.324 36.109-48.151 48.156-48.151 126.502 0 174.657 23.323 23.328 54.338 36.174 87.324 36.174s64.001-12.845 87.329-36.174c48.151-48.156 48.151-126.502 0-174.657-24.078-24.073-55.703-36.109-87.329-36.109z\"></path><path d=\"m297.428 421.907c-8.813 0-17.618-3.352-24.326-10.061-2.978-2.978-2.978-7.805 0-10.785 2.98-2.98 7.806-2.98 10.786 0 7.468 7.468 19.619 7.468 27.087 0l77.045-77.05c3.615-3.62 5.606-8.427 5.606-13.54 0-5.115-1.991-9.921-5.606-13.541-2.979-2.98-2.979-7.805 0-10.785 2.98-2.979 7.806-2.979 10.785 0 13.412 13.412 13.412 35.241 0 48.652l-77.045 77.05c-6.709 6.707-15.523 10.06-24.332 10.06z\"></path><path d=\"m402.881 461.874c-12.275 0-23.809-4.783-32.489-13.462l-47.992-47.991c-2.979-2.98-2.979-7.805 0-10.785l54.194-54.193c2.979-2.979 7.805-2.979 10.785 0l47.992 47.991c8.679 8.68 13.461 20.215 13.461 32.49s-4.782 23.809-13.461 32.489c-8.68 8.679-20.216 13.461-32.49 13.461zm-64.303-66.846 42.599 42.599c11.967 11.967 31.442 11.967 43.408 0 11.968-11.968 11.968-31.442 0-43.408l-42.599-42.6z\"></path><path d=\"m467.373 461.874h-355.566c-4.211 0-7.627-3.417-7.627-7.628s3.416-7.627 7.627-7.627h355.566c4.211 0 7.627 3.416 7.627 7.627s-3.416 7.628-7.627 7.628z\"></path><path d=\"m401.258 421.926c-1.951 0-3.904-.744-5.392-2.234l-21.675-21.679c-2.98-2.979-2.98-7.806 0-10.786 2.979-2.979 7.805-2.979 10.785 0l21.675 21.68c2.98 2.979 2.98 7.805 0 10.785-1.491 1.489-3.442 2.234-5.393 2.234z\"></path><path d=\"m206.102 305.102c-.814 0-1.628-.129-2.413-.392-3.814-1.272-41.556-24.446-49.383-62.342-6.668-32.305 9.048-65.739 46.716-99.385 2.89-2.583 7.269-2.583 10.16 0 37.668 33.641 53.384 67.079 46.715 99.38-7.826 37.897-45.569 61.076-49.383 62.347-.783.263-1.598.392-2.412.392zm0-146.07c-27.603 26.133-40.27 51.358-37.674 75.049 3.138 28.626 28.11 47.967 37.674 54.392 9.564-6.426 34.541-25.762 37.679-54.392 2.597-23.691-10.075-48.916-37.679-75.049z\"></path><path d=\"m212.691 305.102c-3.48 0-5.675-.164-6.082-.198-2.652-.224-5.001-1.813-6.192-4.192-.029-.06-.243-.501-.268-.561-1.658-3.541-.373-7.757 2.979-9.768 10.835-6.515 63.212-41.869 30.112-98.402-1.073-1.832-1.331-4.027-.715-6.062.615-2.031 2.045-3.715 3.957-4.648 14.42-7.027 32.256-12.021 53.007-14.842 3.889-.571 7.478 1.927 8.427 5.685 11.51 45.499 7.364 80.353-12.324 103.586-22.525 26.577-58.58 29.402-72.901 29.402zm37.744-113.333c22.007 44.953-.696 78.336-19.848 96.52 13.933-2.384 31.348-8.268 43.364-22.45 15.403-18.178 19.019-46.169 10.775-83.267-12.915 2.146-24.4 5.225-34.291 9.197z\"></path><path d=\"m199.553 305.102c-14.291 0-50.42-2.82-72.944-29.416-19.678-23.233-23.824-58.082-12.314-103.571.948-3.758 4.509-6.256 8.422-5.685 20.756 2.821 38.592 7.816 53.012 14.842 1.912.933 3.342 2.617 3.958 4.648.615 2.035.358 4.23-.715 6.062-33.1 56.533 19.276 91.887 30.111 98.402 3.392 2.036 4.662 6.332 2.925 9.887-1.182 2.413-3.734 4.409-6.411 4.633-.408.035-2.589.198-6.044.198zm-72.07-122.529c-8.243 37.088-4.633 65.079 10.765 83.257 12.007 14.177 29.426 20.066 43.364 22.45-19.147-18.184-41.849-51.562-19.837-96.51-9.892-3.973-21.371-7.052-34.292-9.197z\"></path><path d=\"m205.154 304.547c-4.211 0-7.627-3.417-7.627-7.628v-71.533c0-4.211 3.416-7.627 7.627-7.627s7.628 3.416 7.628 7.627v71.533c-.001 4.211-3.417 7.628-7.628 7.628z\"></path></g></svg>							\n												<h5>\n													Self-Exploration												</h5>\n											<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m295.544 178.256a6.741 6.741 0 0 0 -3.689-3.623 6.718 6.718 0 0 0 -8.727 3.475c-.058.16-.123.319-.193.475a6.715 6.715 0 0 0 3.572 8.482q.238.087.473.192a6.789 6.789 0 0 0 8.569-9zm4.657-15.648a21.3 21.3 0 0 1 -18.927 38.018l-.027-.012a21.345 21.345 0 0 1 -11.856-27.305 7.1 7.1 0 0 1 .358-.879 21.238 21.238 0 0 1 11.277-11.14 21.465 21.465 0 0 1 4.89-1.409 108.471 108.471 0 0 1 110.169-79.395l-7.5-9.84a7.256 7.256 0 0 1 11.533-8.807l18.139 23.785a7.255 7.255 0 0 1 -1.364 10.17l-23.793 18.138a7.256 7.256 0 0 1 -8.8-11.532l9.821-7.488a94.123 94.123 0 0 0 -93.917 67.7zm-136.607 130.062c-1.181-.462-2.53-.937-4.2-1.439-1.749-.526-3.761-1.034-5.893-1.571-2.249-.568-4.622-1.167-6.887-1.817a81.221 81.221 0 0 1 -7.736-2.626 52.681 52.681 0 0 1 -7.96-3.915 57.093 57.093 0 0 1 -5.122-3.558 19.314 19.314 0 0 1 -2.1 3.175 29.979 29.979 0 0 1 -4.78 4.617c-1.583 1.254-3.581 2.64-5.787 4.091-1.069.7-2 1.305-2.835 1.842v15.331a30.06 30.06 0 0 0 7.975 20.595 25.087 25.087 0 0 0 37.345 0 30.056 30.056 0 0 0 7.976-20.595v-14.13zm-3.794 117.75q-.863.314-1.737.606a66.691 66.691 0 0 1 -42.171 0q-.874-.292-1.736-.606 8.1 16.046 22.822 31.483 14.722-15.438 22.822-31.483zm-44.516-66.689-1.446 6.36a26.013 26.013 0 0 1 -8.247 14.073q-.63.554-1.295 1.069a86.352 86.352 0 0 0 2.3 24.838 49.4 49.4 0 0 0 13.842 7.2 53.4 53.4 0 0 0 33.079 0 49.4 49.4 0 0 0 13.842-7.2 86.282 86.282 0 0 0 2.3-24.786q-.7-.539-1.362-1.121a26.01 26.01 0 0 1 -8.247-14.073l-1.446-6.36a39.133 39.133 0 0 1 -43.323 0zm102.131 19.247c21.553 5.007 34.482 13.526 35.172 45.641v.142h.028v79.966a7.273 7.273 0 0 1 -7.272 7.273h-216.795a7.273 7.273 0 0 1 -7.273-7.273v-79.966a7.309 7.309 0 0 1 .049-.842c.911-33.257 15.2-40.822 38.733-45.728.5-7.586 1.773-17.265 3.2-28.09 2.421-18.4 5.3-40.261 5.3-60.319a67.9 67.9 0 0 1 19.627-47.875 66.563 66.563 0 0 1 94.957 0 67.889 67.889 0 0 1 19.627 47.875c0 22.494 5.342 45.587 9.591 63.955 2.279 9.851 4.261 18.419 5.062 25.241zm-46.7-31.379a44.85 44.85 0 0 0 7.42-24.8v-18.92a7.275 7.275 0 0 0 -4.889-6.873c-1.2-.525-2.455-1.065-4.1-1.717-1.832-.726-3.692-1.4-5.606-1.978-2.014-.606-4.2-1.158-6.517-1.742-2.01-.507-4.13-1.042-6.433-1.7-2.252-.647-4.44-1.344-6.372-2.113a37.981 37.981 0 0 1 -5.745-2.837 66.527 66.527 0 0 1 -8.659-6.687c-.68-.593-.82-.722-1.072-.939l.012-.014a14.573 14.573 0 0 0 -4.812-3.1c-6.5-2.195-9.224.041-10.259 6.5a21.51 21.51 0 0 0 -.208 2.607 14.785 14.785 0 0 1 -.37 3.3 3.848 3.848 0 0 1 -.715 1.241 16.145 16.145 0 0 1 -2.507 2.344c-1.423 1.129-3.022 2.244-4.707 3.353-1.127.741-3.346 2.131-5.627 3.557a7.274 7.274 0 0 0 -3.8 6.392v19.327a44.847 44.847 0 0 0 7.42 24.8l-3.479 15.309a11.711 11.711 0 0 1 -3.7 6.345 18.2 18.2 0 0 1 -8.506 3.875c-3.592.726-8.189 1.542-12.649 2.326.575-6.608 1.632-14.641 2.8-23.479 2.5-19 5.467-41.557 5.467-62.194a53.45 53.45 0 0 1 15.423-37.7 52.155 52.155 0 0 1 74.275 0 53.45 53.45 0 0 1 15.423 37.7c0 24.013 5.564 48.064 9.989 67.193 1.675 7.243 3.177 13.738 4.1 19.051l-2.054-.362c-4.821-.846-9.929-1.744-13.842-2.535a18.2 18.2 0 0 1 -8.506-3.875 11.711 11.711 0 0 1 -3.7-6.345l-3.482-15.31zm-41.01 149.856h-45.614a7.289 7.289 0 0 0 -.715-1.2 26.958 26.958 0 0 1 -5.261-16.38q0-9.969 5.972-22.523a7.256 7.256 0 0 0 -13.125-6.193q-7.392 15.54-7.393 28.716a41.569 41.569 0 0 0 3.738 17.583h-31.487v-72.697c0-.137 0-.274-.012-.41.791-27.416 16-30.094 40.333-34.368 3.862-.679 7.947-1.4 13.53-2.518a102.527 102.527 0 0 0 9.229 40.627q10.013 22.326 30.808 43.123v26.24zm14.545-26.241q20.795-20.795 30.808-43.121a102.527 102.527 0 0 0 9.226-40.616c5.55 1.115 9.617 1.83 13.466 2.506 24.453 4.3 39.695 6.976 40.344 34.778h-.024v72.694h-31.422a41.554 41.554 0 0 0 3.738-17.583q0-13.176-7.392-28.716a7.256 7.256 0 1 0 -13.125 6.193q5.971 12.554 5.972 22.523a26.959 26.959 0 0 1 -5.262 16.38 7.359 7.359 0 0 0 -.715 1.2h-45.614zm314.57-424.669a17.825 17.825 0 0 1 12.368 4.889 15.841 15.841 0 0 1 4.992 11.445v162.839a15.841 15.841 0 0 1 -4.992 11.445 17.821 17.821 0 0 1 -12.368 4.889h-92.395a7.234 7.234 0 0 0 -3.9 1.136l-22.385 12.384q-.276.151-.532.323l-36.3 20.086v-26.656a7.273 7.273 0 0 0 -7.273-7.273h-55.544a17.824 17.824 0 0 1 -12.368-4.889 15.844 15.844 0 0 1 -4.991-11.445v-162.839a15.842 15.842 0 0 1 4.991-11.445 17.829 17.829 0 0 1 12.368-4.889zm-218.329-14.545h218.329a32.378 32.378 0 0 1 22.425 8.979 30.272 30.272 0 0 1 9.48 21.9v162.839a30.268 30.268 0 0 1 -9.48 21.9 32.375 32.375 0 0 1 -22.425 8.98h-90.544l-21.149 11.7q-.257.141-.518.259l-47.084 26.051a7.236 7.236 0 0 1 -10.73-6.335h-.037v-31.673h-48.267a32.378 32.378 0 0 1 -22.425-8.98 30.272 30.272 0 0 1 -9.48-21.9v-162.841a30.268 30.268 0 0 1 9.48-21.9 32.378 32.378 0 0 1 22.425-8.979zm53.254 72.778-10.193-10.192 10.193-10.193a7.272 7.272 0 0 0 -10.285-10.284l-10.192 10.191-10.192-10.19a7.272 7.272 0 0 0 -10.284 10.284l10.192 10.192-10.192 10.191a7.272 7.272 0 0 0 10.284 10.284l10.192-10.191 10.192 10.192a7.272 7.272 0 0 0 10.285-10.284zm123.469 89.042-10.192-10.192 10.192-10.193a7.272 7.272 0 0 0 -10.284-10.284l-10.192 10.192-10.192-10.191a7.272 7.272 0 1 0 -10.284 10.284l10.192 10.192-10.192 10.191a7.272 7.272 0 1 0 10.284 10.281l10.192-10.191 10.192 10.191a7.272 7.272 0 0 0 10.284-10.284z\" fill-rule=\"evenodd\"></path></svg>							\n												<h5>\n													Coping Strategies												</h5>\n											<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M248.298,398.776v-96.35c0-5.971-2.694-11.517-7.393-15.216l-59.928-47.132c-2.984-2.348-7.254-2.094-9.939,0.592   l-14.349,14.349c-2.986,2.985-4.637,7.118-4.53,11.338c0.106,4.215,1.961,8.252,5.079,11.069l30.406,27.556l-1.867,1.93   c-1.111,1.149-2.665,1.808-4.265,1.808h-5.366c-4.046,0-7.953-1.201-11.299-3.474l-66.646-45.245   c-1.237-0.838-1.976-2.237-1.976-3.742v-42.516c0-8.724-7.102-15.821-15.832-15.821h-23.54c-4.142,0-7.5,3.358-7.5,7.5v72.637   c0,6.404,3.145,12.405,8.408,16.048l46.124,31.979c3.404,2.359,8.077,1.513,10.437-1.89c2.36-3.404,1.514-8.077-1.89-10.437   l-46.128-31.982c-1.222-0.846-1.951-2.235-1.951-3.718v-65.137h16.039c0.458,0,0.832,0.368,0.832,0.821v42.516   c0,6.486,3.2,12.526,8.556,16.155l66.64,45.241c5.84,3.967,12.661,6.064,19.726,6.064h5.366c5.643,0,11.128-2.326,15.047-6.38   l2.254-2.331c2.749-2.837,4.193-6.572,4.066-10.518c-0.127-3.948-1.811-7.585-4.741-10.242l-30.836-27.946   c-0.039-0.036-0.143-0.129-0.148-0.327c-0.005-0.206,0.101-0.312,0.141-0.352l9.642-9.642l54.693,43.015   c1.061,0.834,1.668,2.084,1.668,3.427v88.844h-60.32v-24.995c0-6.607-3.24-12.792-8.658-16.538l-27.532-19.089   c-3.405-2.36-8.077-1.514-10.437,1.89s-1.514,8.077,1.89,10.437l27.541,19.095c1.375,0.951,2.196,2.522,2.196,4.205v24.995h-3.726   c-4.142,0-7.5,3.358-7.5,7.5v58.66c0,0.033,0.004,0.064,0.005,0.097V504.5c0,4.142,3.358,7.5,7.5,7.5h25.971   c4.142,0,7.5-3.358,7.5-7.5c0-4.142-3.358-7.5-7.5-7.5h-18.471v-47.64h71.535v8.07c0,0.016,0.002,0.032,0.002,0.048V497h-23.519   c-4.142,0-7.5,3.358-7.5,7.5c0,4.142,3.358,7.5,7.5,7.5h31.019c4.142,0,7.5-3.358,7.5-7.5v-62.64c0-0.016-0.002-0.032-0.002-0.048   v-42.92C248.293,398.853,248.298,398.815,248.298,398.776z M233.292,434.359h-71.54V406.27h3.62c0.036,0,0.07,0.005,0.106,0.005   h67.814V434.359z\"></path>	</g></g><g>	<g>		<path d=\"M455.147,197.92h-23.535c-8.728,0-15.828,7.101-15.828,15.828v42.51c0,1.501-0.742,2.9-1.984,3.744l-66.637,45.24   c-3.349,2.273-7.258,3.475-11.304,3.475h-5.362c-1.604,0-3.162-0.66-4.279-1.813l-1.862-1.922l30.408-27.549   c3.125-2.831,4.977-6.871,5.08-11.085c0.104-4.215-1.546-8.342-4.526-11.324l-14.354-14.354c-2.687-2.686-6.956-2.939-9.94-0.592   l-47.179,37.107l-12.747,10.025c-4.695,3.693-7.389,9.238-7.389,15.211v96.35c0,0.02,0.003,0.038,0.003,0.058v42.972   c0,0.02-0.003,0.038-0.003,0.058v62.64c0,4.142,3.357,7.5,7.5,7.5h86.538c4.143,0,7.5-3.358,7.5-7.5v-46.973   c0-0.033,0.005-0.064,0.005-0.097v-58.66c0-4.142-3.357-7.5-7.5-7.5h-3.729v-24.994c0-1.68,0.824-3.254,2.204-4.211l98.021-67.96   c5.26-3.647,8.4-9.646,8.4-16.046V205.42C462.647,201.278,459.29,197.92,455.147,197.92z M350.247,497h-71.538v-39.512   c0-0.02,0.003-0.038,0.003-0.058v-8.07h71.535V497z M350.252,434.36h-71.54v-28.088h67.811c0.013,0,0.026-0.002,0.039-0.002h3.69   V434.36z M447.65,278.059h-0.003c0,1.483-0.728,2.874-1.947,3.719l-98.021,67.961c-5.42,3.759-8.656,9.941-8.656,16.538v24.994   H278.71v-88.848c0-1.343,0.605-2.591,1.662-3.421l12.747-10.025l41.946-32.992l9.646,9.646c0.039,0.04,0.144,0.144,0.139,0.347   s-0.114,0.302-0.155,0.339l-30.83,27.931c-2.928,2.653-4.611,6.289-4.74,10.238c-0.128,3.95,1.314,7.688,4.065,10.527l2.256,2.328   c3.924,4.053,9.41,6.377,15.053,6.377h5.362c7.062,0,13.884-2.097,19.729-6.064l66.638-45.241   c5.359-3.639,8.559-9.677,8.559-16.154v-42.51c0-0.457,0.371-0.828,0.828-0.828h16.035V278.059z\"></path>	</g></g><g>	<g>		<path d=\"M256.002,0c-55.95,0-102.985,41.857-109.407,97.364c-0.476,4.115,2.474,7.836,6.588,8.313   c4.12,0.482,7.836-2.474,8.313-6.588C167.042,51.15,207.671,15,256.002,15c52.466,0,95.15,42.684,95.15,95.15   c0,41.507-26.532,77.917-66.021,90.603c-1.723,0.553-3.187,1.71-4.123,3.258l-25.006,41.333l-25.006-41.333   c-0.937-1.548-2.401-2.705-4.123-3.258c-33.804-10.859-58.561-39.313-64.609-74.259c-0.707-4.082-4.587-6.812-8.669-6.111   c-4.082,0.707-6.817,4.588-6.111,8.669c6.842,39.527,34.351,71.881,72.103,85.076l30,49.587c1.358,2.246,3.792,3.618,6.417,3.618   s5.059-1.372,6.417-3.618l29.999-49.587c44.219-15.453,73.732-56.883,73.732-103.978C366.152,49.413,316.739,0,256.002,0z\"></path>	</g></g><g>	<g>		<path d=\"M315.754,102.65h-10.565c-1.234-8.128-4.447-15.612-9.123-21.955l7.492-7.492c2.929-2.929,2.929-7.678,0-10.606   c-2.93-2.929-7.678-2.929-10.607,0l-7.491,7.491c-6.343-4.676-13.827-7.888-21.955-9.123V50.4c0-4.142-3.357-7.5-7.5-7.5   c-4.142,0-7.5,3.358-7.5,7.5v10.565c-8.128,1.234-15.612,4.447-21.955,9.123l-7.491-7.491c-2.929-2.929-7.678-2.929-10.606,0   c-2.929,2.929-2.929,7.678,0,10.606l7.491,7.491c-4.676,6.343-7.889,13.828-9.123,21.956c0,0-10.569,0-10.569,0   c-4.142,0-7.5,3.358-7.5,7.5c0,4.142,3.358,7.5,7.5,7.5h10.565c1.234,8.128,4.447,15.613,9.123,21.956l-7.491,7.491   c-2.929,2.929-2.929,7.678,0,10.606c1.464,1.464,3.384,2.197,5.303,2.197s3.839-0.732,5.303-2.197l7.491-7.491   c6.343,4.676,13.828,7.889,21.956,9.123V169.9c0,4.142,3.358,7.5,7.5,7.5c4.143,0,7.5-3.358,7.5-7.5v-10.565   c8.128-1.234,15.612-4.447,21.956-9.123l7.491,7.491c1.465,1.464,3.385,2.197,5.304,2.197c1.919,0,3.839-0.732,5.304-2.197   c2.929-2.929,2.929-7.678,0-10.606l-7.491-7.491c4.676-6.343,7.889-13.828,9.123-21.956h10.565c4.143,0,7.5-3.358,7.5-7.5   C323.254,106.008,319.897,102.65,315.754,102.65z M290.751,110.164c-0.007,19.151-15.586,34.731-34.738,34.738   c-0.004,0-0.009-0.001-0.013-0.001c-0.004,0-0.009,0.001-0.013,0.001c-19.151-0.007-34.731-15.586-34.738-34.738   c0-0.004,0.001-0.009,0.001-0.013c0-0.004-0.001-0.008-0.001-0.013c0.009-19.154,15.592-34.735,34.746-34.738   c0.002,0,0.004,0,0.006,0s0.004,0,0.006,0c19.155,0.004,34.737,15.584,34.744,34.738c0,0.004-0.001,0.008-0.001,0.013   C290.75,110.155,290.751,110.16,290.751,110.164z\"></path>	</g></g><g>	<g>		<path d=\"M256.002,85.119c-13.802,0-25.032,11.229-25.032,25.031c0,13.803,11.229,25.032,25.032,25.032   c13.803,0,25.031-11.229,25.031-25.031C281.033,96.348,269.804,85.119,256.002,85.119z M256.002,120.182   c-5.532,0-10.032-4.5-10.032-10.031c0-5.532,4.5-10.032,10.032-10.032c5.531,0,10.031,4.5,10.031,10.032   C266.033,115.682,261.533,120.182,256.002,120.182z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>							\n												<h5>\n													Goal Setting												</h5>\n											<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xodm=\"http://www.corel.com/coreldraw/odm/2003\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_2077007814064\"><g id=\"_200306976\"><path d=\"m256 319.44c-1.59 0-3.12-.63-4.24-1.75-11.13-11.13-22.33-21.98-33.17-32.48-62.94-60.98-117.31-113.65-117.31-179.39 0-44.31 36.05-80.35 80.36-80.35 37.74 0 57.46 18.43 74.36 48.87 16.9-30.44 36.62-48.87 74.35-48.87 44.31 0 80.36 36.04 80.36 80.35 0 65.74-54.36 118.41-117.31 179.39-10.83 10.49-22.03 21.35-33.16 32.48-1.12 1.12-2.65 1.75-4.24 1.75zm-74.36-281.97c-37.69 0-68.35 30.66-68.35 68.35 0 60.66 52.67 111.69 113.65 170.77 9.5 9.2 19.27 18.67 29.06 28.39 9.78-9.72 19.56-19.19 29.06-28.39 60.98-59.08 113.65-110.11 113.65-170.77 0-37.69-30.66-68.35-68.35-68.35-31.58 0-49.63 13.72-68.99 52.45-1.02 2.03-3.1 3.31-5.37 3.31s-4.35-1.28-5.37-3.31c-19.36-38.73-37.41-52.45-68.99-52.45z\"></path></g><g><g id=\"_200307000\"><path d=\"m268.35 249.13h-24.7c-3.32 0-6-2.68-6-6v-11.56c-2.07-.72-4.09-1.56-6.06-2.51l-8.18 8.18c-1.13 1.12-2.65 1.75-4.25 1.75-1.59 0-3.11-.63-4.24-1.75l-17.47-17.47c-2.34-2.34-2.34-6.14 0-8.49l8.18-8.18c-.95-1.97-1.79-3.99-2.51-6.06h-11.57c-3.31 0-6-2.68-6-6v-24.7c0-3.32 2.69-6 6-6h11.57c.72-2.07 1.56-4.09 2.51-6.06l-8.18-8.18c-1.13-1.13-1.76-2.65-1.76-4.24 0-1.6.63-3.12 1.76-4.25l17.47-17.47c2.34-2.34 6.14-2.34 8.49 0l8.18 8.18c1.96-.95 3.99-1.79 6.05-2.51v-11.56c0-3.32 2.69-6 6-6h24.71c3.31 0 6 2.68 6 6v11.56c2.07.72 4.09 1.56 6.06 2.51l8.18-8.18c1.12-1.12 2.65-1.76 4.24-1.76s3.12.64 4.24 1.76l17.48 17.47c1.12 1.13 1.75 2.65 1.75 4.25 0 1.59-.63 3.11-1.75 4.24l-8.19 8.18c.96 1.97 1.8 3.99 2.52 6.06h11.56c3.32 0 6 2.68 6 6v24.7c0 3.32-2.68 6-6 6h-11.56c-.72 2.07-1.56 4.09-2.52 6.06l8.19 8.18c1.12 1.13 1.75 2.65 1.75 4.24 0 1.6-.63 3.12-1.75 4.25l-17.47 17.47c-2.35 2.34-6.15 2.34-8.49 0l-8.18-8.18c-1.97.95-3.99 1.79-6.06 2.51v11.57c0 3.31-2.69 5.99-6 5.99zm-18.7-12h12.7v-10.02c0-2.74 1.86-5.14 4.52-5.82 4.06-1.03 7.95-2.64 11.56-4.79 2.36-1.4 5.37-1.02 7.31.92l7.09 7.09 8.99-8.99-7.09-7.09c-1.94-1.94-2.32-4.95-.92-7.31 2.15-3.6 3.76-7.49 4.79-11.56.68-2.66 3.07-4.52 5.82-4.52h10.02v-12.7h-10.02c-2.75 0-5.14-1.87-5.82-4.52-1.03-4.07-2.64-7.95-4.79-11.56-1.4-2.36-1.03-5.37.92-7.31l7.09-7.1-8.99-8.98-7.09 7.09c-1.94 1.94-4.95 2.32-7.31.92-3.61-2.15-7.5-3.77-11.56-4.8-2.66-.67-4.52-3.07-4.52-5.81v-10.03h-12.7v10.03c0 2.74-1.87 5.14-4.53 5.81-4.05 1.04-7.94 2.65-11.55 4.8-2.36 1.4-5.37 1.02-7.31-.92l-7.1-7.09-8.98 8.99 7.09 7.09c1.94 1.94 2.32 4.95.92 7.31-2.15 3.61-3.76 7.5-4.8 11.55-.67 2.66-3.07 4.53-5.81 4.53h-10.02v12.7h10.02c2.74 0 5.14 1.86 5.81 4.52 1.04 4.06 2.65 7.95 4.8 11.56 1.4 2.36 1.02 5.37-.92 7.31l-7.09 7.09 8.98 8.99 7.1-7.09c1.94-1.94 4.95-2.32 7.31-.92 3.61 2.15 7.5 3.76 11.56 4.79 2.66.68 4.52 3.08 4.52 5.82z\"></path></g><g id=\"_200306760\"><path d=\"m256 215.48c-20.29 0-36.8-16.5-36.8-36.79s16.51-36.8 36.8-36.8 36.79 16.51 36.79 36.8-16.5 36.79-36.79 36.79zm0-61.59c-13.67 0-24.8 11.13-24.8 24.8s11.13 24.79 24.8 24.79 24.79-11.12 24.79-24.79-11.12-24.8-24.79-24.8z\"></path></g></g><g id=\"_200306784\"><path d=\"m461.9 340.14c-.4 0-.8-.04-1.21-.12-2.77-.57-4.77-3.01-4.79-5.84-.01-.8-.54-16.35-18.14-25.35-4.77 6.05-14.98 15.83-31.26 15.83-7.09 0-14.53-1.91-22.17-5.68-1.97 2.49-4.39 6.45-4.71 11.19-.17 2.67-2.1 4.89-4.71 5.46-2.62.57-5.29-.67-6.56-3.03-.73-1.35-17.54-33.58 6.24-66.87.25-.34.54-.67.85-.95.53-.48 13.04-11.64 29.73-11.64 8.33 0 16.16 2.73 23.32 8.11 6.78.84 29.41 4.94 40.34 22.87 8.21 13.48 7.74 31.11-1.42 52.39-.96 2.24-3.15 3.63-5.51 3.63zm-26.24-44.82c.73 0 1.45.13 2.16.41 12.4 4.82 19.68 12.11 23.97 19.04 1.81-9.72.76-17.87-3.18-24.36-9.39-15.48-32.65-17.38-32.88-17.39-1.23-.09-2.4-.56-3.35-1.33-5.36-4.35-11.14-6.55-17.2-6.55-10.52 0-19.21 6.52-21.25 8.17-10.03 14.4-10.85 28.57-9.39 38.73 2.4-3.14 4.55-4.96 4.74-5.12 1.93-1.61 4.66-1.85 6.84-.59 7.27 4.2 14.13 6.33 20.38 6.33 15.81 0 23.56-13.64 23.88-14.22 1.09-1.97 3.15-3.12 5.28-3.12z\"></path></g><g id=\"_200307264\"><path d=\"m419.46 411.58c-.16 0-.32 0-.48 0-10.3-.15-20.06-5.17-28.23-14.52-7.44-8.5-13.2-20.37-16.78-34.51-9.81-1.95-15.33-9.01-16.53-15.9-1.66-9.54 3.98-18.57 14.03-22.48 3.08-1.2 6.56.33 7.76 3.42s-.33 6.56-3.41 7.77c-5.64 2.19-7.06 6.34-6.56 9.23.53 3.02 3.36 6.31 9.74 6.48 2.77.08 5.12 2.03 5.71 4.73 5.7 26.37 19.22 43.55 34.45 43.78h.29c14.2 0 26.75-15.15 32.81-39.65.62-2.5 2.75-4.32 5.31-4.54 5.81-.5 8.33-3.74 8.74-6.61.43-2.97-1.08-6.91-6.58-9.05-3.09-1.2-4.62-4.68-3.42-7.76 1.2-3.09 4.68-4.62 7.77-3.42 9.78 3.8 15.45 12.62 14.11 21.93-1.15 8.02-6.99 14.03-15.29 16.15-7.91 27.89-24.31 44.95-43.44 44.95z\"></path></g><g id=\"_200306808\"><path d=\"m332.55 486.53c-1.59 0-3.11-.63-4.24-1.75-1.12-1.13-1.76-2.65-1.76-4.25 0-44.88 21.25-52.28 38.32-58.24 13.67-4.77 23.55-8.21 24.07-29.7.08-3.31 2.86-5.89 6.15-5.85 3.31.08 5.93 2.83 5.85 6.15-.73 29.78-17.41 35.6-32.12 40.73-15.3 5.34-28.64 9.99-30.13 40.91h161.17c-1.49-30.92-14.83-35.57-30.13-40.91-14.73-5.13-31.42-10.96-32.12-40.8-.08-3.31 2.54-6.06 5.85-6.14 3.31-.11 6.06 2.54 6.14 5.86.51 21.53 10.4 24.98 24.08 29.75 17.07 5.96 38.32 13.36 38.32 58.24 0 3.31-2.69 6-6 6z\"></path></g><g id=\"_200306616\"><path d=\"m419.27 443.04c-15.8 0-30.68-6.12-41.9-17.25-2.36-2.33-2.38-6.13-.04-8.48 2.33-2.35 6.13-2.37 8.48-.04 8.96 8.88 20.85 13.77 33.46 13.77 12.62 0 24.5-4.89 33.46-13.77 2.36-2.33 6.16-2.31 8.49.04s2.31 6.15-.04 8.48c-11.22 11.13-26.11 17.25-41.91 17.25z\"></path></g><g id=\"_200307672\"><path d=\"m374.04 486.53c-3.32 0-6-2.68-6-6v-19.82c0-3.31 2.68-6 6-6 3.31 0 6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307888\"><path d=\"m464.51 486.53c-3.31 0-6-2.68-6-6v-19.82c0-3.31 2.69-6 6-6s6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307744\"><path d=\"m135.35 340.14c-.4 0-.8-.04-1.21-.12-2.77-.57-4.77-3.01-4.79-5.84-.01-.8-.54-16.35-18.14-25.35-4.77 6.05-14.98 15.83-31.26 15.83-7.09 0-14.53-1.91-22.17-5.68-1.97 2.49-4.39 6.45-4.7 11.19-.18 2.67-2.11 4.89-4.72 5.46-2.62.57-5.29-.67-6.56-3.03-.72-1.35-17.54-33.58 6.24-66.87.25-.34.54-.67.86-.95.52-.48 13.03-11.64 29.73-11.64 8.32 0 16.16 2.73 23.31 8.11 6.78.84 29.41 4.94 40.34 22.87 8.22 13.48 7.74 31.11-1.42 52.39-.96 2.24-3.15 3.63-5.51 3.63zm-26.25-44.82c.72 0 1.46.13 2.17.41 12.4 4.82 19.69 12.1 23.97 19.04 1.81-9.72.76-17.87-3.18-24.36-9.39-15.48-32.65-17.37-32.88-17.39-1.22-.09-2.4-.56-3.35-1.33-5.36-4.35-11.14-6.55-17.2-6.55-10.52 0-19.21 6.52-21.24 8.17-10.04 14.4-10.85 28.57-9.4 38.73 2.4-3.14 4.55-4.96 4.74-5.12 1.93-1.61 4.67-1.85 6.84-.59 7.27 4.2 14.13 6.33 20.38 6.33 16.01 0 23.79-14.05 23.86-14.2 1.08-1.98 3.14-3.14 5.29-3.14z\"></path></g><g id=\"_200307960\"><path d=\"m92.91 411.58c-.16 0-.32 0-.48 0-10.3-.15-20.06-5.17-28.23-14.52-7.44-8.5-13.2-20.37-16.79-34.51-9.8-1.95-15.32-9.01-16.52-15.9-1.66-9.54 3.98-18.57 14.03-22.48 3.08-1.2 6.56.33 7.76 3.42s-.33 6.56-3.41 7.77c-5.64 2.19-7.06 6.34-6.56 9.23.53 3.02 3.36 6.31 9.74 6.48 2.77.08 5.12 2.03 5.71 4.73 5.7 26.37 19.22 43.55 34.45 43.78h.29c14.2 0 26.75-15.15 32.81-39.65.62-2.5 2.75-4.32 5.31-4.54 5.81-.5 8.33-3.74 8.74-6.61.43-2.97-1.08-6.91-6.58-9.05-3.09-1.2-4.62-4.68-3.42-7.76 1.2-3.09 4.68-4.62 7.77-3.42 9.78 3.8 15.45 12.62 14.11 21.93-1.16 8.02-6.99 14.03-15.3 16.15-7.9 27.89-24.3 44.95-43.43 44.95z\"></path></g><g id=\"_200307408\"><path d=\"m6 486.53c-1.59 0-3.11-.63-4.24-1.75-1.12-1.13-1.76-2.65-1.76-4.25 0-44.88 21.25-52.28 38.32-58.24 13.67-4.77 23.55-8.21 24.08-29.7.08-3.31 2.82-5.89 6.14-5.85 3.31.08 5.93 2.83 5.85 6.15-.73 29.78-17.41 35.6-32.12 40.73-15.3 5.34-28.64 9.99-30.13 40.91h161.17c-1.5-30.92-14.83-35.57-30.13-40.91-14.73-5.13-31.42-10.96-32.12-40.8-.08-3.31 2.54-6.06 5.85-6.14 3.27-.11 6.06 2.54 6.14 5.86.51 21.53 10.4 24.98 24.08 29.75 17.07 5.96 38.32 13.36 38.32 58.24 0 3.31-2.69 6-6 6h-173.45z\"></path></g><g id=\"_200307648\"><path d=\"m92.73 443.04c-15.81 0-30.69-6.12-41.91-17.25-2.36-2.33-2.37-6.13-.04-8.48s6.13-2.37 8.48-.04c8.97 8.88 20.85 13.77 33.47 13.77 12.61 0 24.49-4.89 33.45-13.77 2.36-2.33 6.16-2.31 8.49.04s2.31 6.15-.04 8.48c-11.22 11.13-26.11 17.25-41.9 17.25z\"></path></g><g id=\"_200307720\"><path d=\"m47.49 486.53c-3.32 0-6-2.68-6-6v-19.82c0-3.31 2.68-6 6-6 3.31 0 6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307456\"><path d=\"m137.96 486.53c-3.31 0-6-2.68-6-6v-19.82c0-3.31 2.69-6 6-6s6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307840\"><path d=\"m94.44 269.46c-3.31 0-6-2.68-6-6v-23.34c0-8.01 6.52-14.53 14.53-14.53h70.38c3.31 0 6 2.69 6 6 0 3.32-2.69 6-6 6h-70.38c-1.37 0-2.53 1.16-2.53 2.53v23.34c0 3.32-2.68 6-6 6zm323.12-1.73c-3.32 0-6-2.69-6-6v-21.61c0-1.37-1.16-2.53-2.53-2.53h-70.38c-3.31 0-6-2.68-6-6 0-3.31 2.69-6 6-6h70.37c8.02 0 14.54 6.52 14.54 14.53v21.61c0 3.31-2.69 6-6 6z\"></path></g></g></g></svg>							\n												<h5>\n													Relationship Improvement												</h5>\n											<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m434.61 333.03-21.34-36.58c6.76-18.2 7.07-35.07.96-51.47-5.64-15.15-16.96-29.98-34.59-45.33-11.13-9.69-23.22-17.82-35.9-24.21.12-3.43-1.13-6.87-3.68-9.41l-11.45-11.45c-.24-.24-.28-.47-.12-.78 1.77-3.49 3.28-7.13 4.5-10.84.11-.32.3-.46.64-.46h16.19c6.99 0 12.67-5.68 12.67-12.67v-22.44c0-6.99-5.68-12.67-12.67-12.67h-16.19c-.34 0-.53-.14-.64-.46-1.22-3.71-2.73-7.35-4.5-10.84-.15-.3-.12-.53.12-.77l11.45-11.45c2.39-2.39 3.71-5.57 3.71-8.96s-1.32-6.57-3.71-8.96l-15.87-15.87c-2.39-2.39-5.57-3.71-8.96-3.71s-6.57 1.32-8.96 3.71l-11.45 11.45c-.24.24-.47.28-.77.12-3.48-1.77-7.13-3.28-10.84-4.5-.32-.11-.46-.3-.46-.64v-16.17c0-6.99-5.68-12.67-12.67-12.67h-22.44c-6.99 0-12.67 5.68-12.67 12.67v16.19c0 .34-.14.53-.46.64-3.7 1.22-7.35 2.73-10.84 4.5-.3.15-.54.12-.77-.12l-11.45-11.45c-2.39-2.39-5.57-3.71-8.96-3.71s-6.57 1.32-8.96 3.71l-15.87 15.87c-2.39 2.39-3.71 5.57-3.71 8.96s1.32 6.57 3.71 8.96l11.45 11.45c.24.24.28.47.12.77-1.77 3.49-3.28 7.13-4.5 10.84-.11.32-.3.46-.64.46h-16.19c-6.99 0-12.67 5.68-12.67 12.67v10.02c-.5 1.37-.76 2.83-.76 4.3v16.19c0 .34-.14.53-.46.64-3.7 1.22-7.35 2.73-10.84 4.5-.3.15-.54.12-.78-.12l-11.45-11.45c-2.39-2.39-5.57-3.71-8.96-3.71s-6.57 1.32-8.96 3.71l-15.87 15.87c-2.39 2.39-3.71 5.57-3.71 8.96s1.32 6.57 3.71 8.96l11.45 11.45c.24.24.28.47.12.77-1.77 3.49-3.28 7.13-4.49 10.84-.11.32-.3.46-.64.46h-16.16c-6.99 0-12.67 5.68-12.67 12.67v22.44c0 6.99 5.68 12.67 12.67 12.67h16.19c.34 0 .53.14.63.46 1.22 3.7 2.73 7.35 4.5 10.84.15.3.12.53-.12.77l-11.45 11.45c-2.39 2.39-3.71 5.57-3.71 8.96s1.32 6.57 3.71 8.96l15.87 15.87c2.39 2.39 5.57 3.71 8.96 3.71s6.57-1.32 8.96-3.71l11.45-11.45c.24-.24.47-.28.78-.12 2.63 1.33 5.35 2.52 8.12 3.55 3.63 25.86 18.43 52.67 31.88 77.01 3.47 6.29 6.76 12.23 9.84 18.11 12.69 35.72 7.66 78.5-12.56 106.56l-6.85 9.51h173.63v-44.26c38.01-.13 59.59-5.99 67.67-18.29 6.96-10.6 1.74-22.31-1.38-29.3-.44-.98-.98-2.19-1.34-3.11 3.35-4.7 4.47-10.39 3.12-16.07.14-.2.3-.41.43-.59 2.26-3.05 6.46-8.74 3.06-18.47-.43-1.24-.63-2.03-.72-2.5.71-.41 1.88-.97 2.87-1.44 1.82-.86 4.08-1.94 6.69-3.46 4.46-2.6 7.64-6.79 8.96-11.8s.59-10.29-2.01-14.74zm-267.36-225.64c0-.36.31-.67.67-.67h16.19c5.49 0 10.32-3.5 12.04-8.71 1.03-3.13 2.31-6.21 3.8-9.16 2.48-4.9 1.54-10.8-2.34-14.68l-11.45-11.45c-.13-.13-.19-.29-.19-.47 0-.19.06-.35.19-.47l15.87-15.87c.25-.25.69-.25.95 0l11.45 11.45c3.88 3.88 9.78 4.82 14.68 2.34 2.95-1.49 6.03-2.77 9.16-3.8 5.21-1.71 8.72-6.55 8.72-12.04v-16.19c0-.36.31-.67.67-.67h22.44c.36 0 .67.31.67.67v16.19c0 5.49 3.5 10.32 8.71 12.04 3.13 1.03 6.21 2.31 9.16 3.8 4.9 2.48 10.8 1.54 14.68-2.34l11.45-11.45c.25-.25.69-.25.95 0l15.87 15.87c.13.13.19.29.19.47 0 .19-.06.35-.19.47l-11.45 11.45c-3.88 3.88-4.83 9.78-2.34 14.68 1.49 2.95 2.77 6.03 3.8 9.16 1.71 5.21 6.55 8.71 12.04 8.71h16.19c.36 0 .67.31.67.67v22.44c0 .36-.31.67-.67.67h-16.19c-5.49 0-10.32 3.5-12.04 8.71-1.03 3.13-2.31 6.21-3.8 9.16-2.48 4.9-1.54 10.8 2.34 14.68l4.07 4.07c-6.1-2.13-12.28-3.88-18.52-5.21-5.2-1.11-10.41-1.91-15.6-2.44 12.29-9.41 20.24-24.22 20.24-40.86 0-28.37-23.08-51.45-51.45-51.45s-51.45 23.08-51.45 51.45c0 20.1 11.59 37.53 28.43 45.99-1.46.45-2.91.93-4.35 1.43-13.15 4.6-25.02 11.14-35.4 19.37l-9.95-9.95c-.13-.13-.19-.28-.19-.47s.06-.35.19-.47l11.45-11.45c3.88-3.88 4.82-9.78 2.34-14.68-1.49-2.95-2.77-6.03-3.8-9.16-1.71-5.21-6.55-8.72-12.04-8.72h-16.19c-.36 0-.67-.31-.67-.67zm91.61 50.67c-21.75 0-39.45-17.7-39.45-39.45s17.7-39.45 39.45-39.45 39.45 17.7 39.45 39.45-17.7 39.45-39.45 39.45zm-81.2 25.88 9.4 9.4c-14.24 13.88-24.92 31.39-31.29 51.61-10.4-7.3-16.85-19.33-16.85-32.3 0-20.29 15.4-37.05 35.13-39.21-.06.51-.1 1.02-.1 1.54 0 3.39 1.32 6.57 3.71 8.96zm-43.73 89.97-11.45 11.45c-.25.25-.69.25-.94 0l-15.87-15.87c-.16-.16-.19-.34-.19-.47 0-.19.06-.35.19-.47l11.45-11.45c3.88-3.88 4.83-9.78 2.34-14.68-1.49-2.95-2.77-6.03-3.8-9.16-1.71-5.21-6.55-8.72-12.04-8.72h-16.19c-.36 0-.67-.31-.67-.67v-22.44c0-.36.31-.67.67-.67h16.19c5.49 0 10.32-3.5 12.04-8.71 1.03-3.13 2.31-6.21 3.8-9.16 2.48-4.9 1.54-10.8-2.34-14.68l-11.45-11.45c-.16-.16-.19-.34-.19-.47 0-.19.06-.35.19-.47l15.87-15.87c.25-.25.69-.25.95 0l11.45 11.45c3.88 3.88 9.78 4.82 14.68 2.34 2.95-1.49 6.03-2.77 9.16-3.8 3.75-1.23 6.61-4.09 7.92-7.63.72.13 1.47.21 2.23.21h16.19c.34 0 .53.14.63.46 1.22 3.7 2.73 7.35 4.5 10.84.15.3.12.53-.12.77l-6.78 6.78c-1.31-.1-2.64-.16-3.95-.16-28.37 0-51.45 23.08-51.45 51.45 0 18.39 9.91 35.35 25.61 44.49-.35 1.61-.69 3.23-.99 4.86-.64 3.46-.96 6.96-1.05 10.48-.63-.3-1.27-.6-1.89-.91-4.92-2.5-10.82-1.55-14.7 2.33zm291.06 70.74c-.5 1.91-1.71 3.5-3.4 4.49-2.17 1.27-4.1 2.18-5.8 2.99-6.98 3.32-12.43 7.02-8.33 18.75 1.31 3.74.35 5.03-1.38 7.37-1.5 2.02-4 5.41-2.62 9.89.88 2.86.29 5.54-1.71 7.76-3.67 4.08-1.39 9.2.82 14.14 3.1 6.95 5.42 13.09 2.31 17.82-3.31 5.04-15.96 13.42-63.57 12.85l-6.07-.07v44.36h-138.97c17.34-30.83 20.69-72.96 7.92-108.51l-.14-.39-.19-.37c-3.21-6.12-6.59-12.24-10.17-18.72-17.49-31.65-35.57-64.37-30.34-92.85 7.68-41.83 33.96-73.47 72.1-86.8 44.14-15.44 96.37-3.43 136.3 31.34 33.22 28.92 41.99 54.65 29.31 86.02l-1.1 2.73 24.28 41.62c.99 1.69 1.25 3.67.75 5.58zm-145.92-155.19c-51.35 0-93.14 41.78-93.14 93.14 0 51.35 41.78 93.13 93.14 93.13s93.14-41.78 93.14-93.13c0-51.36-41.78-93.14-93.14-93.14zm0 174.27c-44.74 0-81.14-36.4-81.14-81.13s36.4-81.14 81.14-81.14 81.14 36.4 81.14 81.14-36.4 81.13-81.14 81.13zm29.28-94.9c-3.51-13.57-12.31-26.17-25.63-36.38-2.15-1.65-5.15-1.65-7.3 0-13.32 10.22-22.12 22.81-25.63 36.38-7.81-2.14-16.51-2.65-25.56-1.45-2.69.35-4.81 2.47-5.16 5.16-2.5 18.97 2.38 35.68 13.74 47.04 9.42 9.42 22.51 14.38 37.52 14.38 2.85 0 5.77-.19 8.74-.55 2.98.36 5.89.55 8.74.55 15.01 0 28.1-4.96 37.52-14.38 11.36-11.36 16.24-28.07 13.74-47.04-.35-2.69-2.47-4.81-5.16-5.16-9.05-1.19-17.75-.68-25.56 1.45zm-29.28-23.87c12.29 10.71 19.01 23.83 19.01 37.34s-6.71 26.63-19.01 37.34c-12.29-10.71-19.01-23.83-19.01-37.34s6.72-26.63 19.01-37.34zm-48.55 33.87c6.31-.35 12.26.35 17.57 2.02-.01.48-.02.96-.02 1.45 0 14.08 5.57 27.65 15.92 39.27-9.08-1.12-16.89-4.67-22.68-10.47-7.77-7.75-11.52-19.08-10.79-32.27zm86.33 32.27c-5.8 5.8-13.61 9.34-22.68 10.47 10.35-11.63 15.91-25.19 15.91-39.27 0-.48-.01-.96-.02-1.45 5.31-1.67 11.25-2.36 17.57-2.02.73 13.19-3.03 24.52-10.78 32.27z\"></path></svg>							\n												<h5>\n													Skill Development												</h5>\n											<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Tailored Approaches												</h5>\n											<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.</p>										\n		Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:29:23', '2026-06-17 10:29:23', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=532', 0, 'revision', '', 0),
(533, 1, '2026-06-17 10:29:55', '2026-06-17 10:29:55', '', 'structure_7287549', '', 'inherit', 'closed', 'closed', '', 'structure_7287549', '', '', '2026-06-17 10:29:55', '2026-06-17 10:29:55', '', 14, 'https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/structure_7287549.svg', 0, 'attachment', 'image/svg+xml', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(534, 1, '2026-06-17 10:30:01', '2026-06-17 10:30:01', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />																<h2>Psychotherapy</h2>		<ul style=\"margin-left: 18px;\">\n 	<li>Individual therapy</li>\n 	<li>Couples/marriage therapy</li>\n 	<li>Family therapy</li>\n 	<li>Child/teen therapy</li>\n 	<li>Online therapy</li>\n 	<li>COMMON SPECIALTIES &amp; approaches</li>\n 	<li>Anxiety therapy</li>\n 	<li>Cognitive behavioral therapy (CBT)</li>\n 	<li>Depression counseling</li>\n 	<li>Dialectical behavior therapy (DBT)</li>\n 	<li>Grief &amp; loss counseling</li>\n 	<li>Relational therapy</li>\n</ul>			<h3>Therapy can be highly beneficial for mental health for several reasons:</h3>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 64 64.1999969\" width=\"512\"><path d=\"m51.2529297 42.0226555c.6357422-.6357422.9863281-1.4804688.9863281-2.3808594 0-.8994141-.3500977-1.7441406-.9863281-2.3808594-1.3125-1.3125-3.4492188-1.3125-4.7617188 0l-9.3178711 9.3173828c-.7426758.7441406-1.1518555 1.7314453-1.1518555 2.7822266v11.6396484c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-5.109375l11.5913086-11.5917969c.1875-.1875.2929688-.4414062.2929688-.7070312v-11.5488281c0-2.0097656-1.6347656-3.6445312-3.6445312-3.6445312s-3.6450195 1.6347656-3.6450195 3.6445312v8.6582031l-4.2260742 4.2255859c-.1459961.1455078-.3828125.1435547-.527832 0-.1455078-.1455078-.1455078-.3818359 0-.5273438zm-3.7910156 4.3183594c.9243164.9248047 2.4306641.9267578 3.355957 0l4.519043-4.5185547c.1875-.1875.2929688-.4414062.2929688-.7070312v-9.0722656c0-.9072266.737793-1.6445312 1.6450195-1.6445312.9067383 0 1.6445312.7373047 1.6445312 1.6445312v11.1347656l-11.5913086 11.5917968c-.1875.1875-.2929688.4414062-.2929688.7070312v4.5234375h-9.0136719v-10.6396484c0-.5166016.2011719-1.0029297.5664062-1.3681641l9.3173828-9.3173828c.5332031-.5332031 1.4008789-.5332031 1.9331055 0 .2583008.2587891.4008789.6015625.4008789.9667969s-.1420898.7089844-.4003906.9667969l-2.3769531 2.3769531c-.9252929.9248047-.9252929 2.4306641.0000001 3.3554688z\"></path><path d=\"m6.7250977 28.398632c-2.0097656 0-3.6445312 1.6347656-3.6445312 3.6445312v11.5488281c0 .265625.1054688.5195312.2929688.7070312l11.5913086 11.5917969v5.109375c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-11.6396483c0-1.0507812-.4091797-2.0380859-1.1523438-2.7822266l-9.3173828-9.3173828c-1.3125-1.3125-3.4487305-1.3125-4.762207 0-.6357422.6367188-.9858398 1.4814453-.9858398 2.3808594 0 .9003906.3505859 1.7451172.9863281 2.3808594l2.3769531 2.3769531c.1455078.1455078.1455078.3818359 0 .5273438s-.3823242.1435547-.527832 0l-4.2260742-4.2255859v-8.6582031c-.0000002-2.0097657-1.6352541-3.6445314-3.6450197-3.6445314zm6.4570312 17.9423829c.925293.9267578 2.4316406.9257812 3.355957 0 .925293-.9248047.925293-2.4306641 0-3.3554688l-2.3769531-2.3769531c-.2583008-.2578125-.4003906-.6015625-.4003906-.9667969s.1425781-.7080078.4003906-.9667969c.5332031-.5332031 1.4003906-.5332031 1.9335938 0l9.3168945 9.3173828c.3657227.3652344.5668945.8515625.5668945 1.3681641v10.6396484h-9.0136719v-4.5234375c0-.265625-.1054688-.5195312-.2929688-.7070312l-11.5913085-11.5917969v-11.1347656c0-.9072266.737793-1.6445312 1.6445312-1.6445312.9072266 0 1.6450195.7373047 1.6450195 1.6445312v9.0722656c0 .265625.1054688.5195312.2929688.7070312z\"></path><path d=\"m32 2.0998046c-10.0986328 0-18.3144531 8.2158203-18.3144531 18.3144531s8.2158203 18.3144525 18.3144531 18.3144525 18.3144531-8.2158203 18.3144531-18.3144531-8.2158203-18.3144525-18.3144531-18.3144525zm0 2.0000003c7.614502 0 14.0088501 5.2510376 15.798584 12.3173819-3.1233521-2.2542105-8.8903809-3.70996-15.798584-3.70996s-12.6752319 1.4557495-15.798584 3.70996c1.7897339-7.0663443 8.184082-12.3173819 15.798584-12.3173819zm16.3144531 16.3144521c0 2.6992188-6.7001953 5.7070312-16.3144531 5.7070312s-16.3144531-3.0078125-16.3144531-5.7070312 6.7001953-5.7070302 16.3144531-5.7070302 16.3144531 3.0078115 16.3144531 5.7070302zm-16.3144531 16.3144532c-7.614502 0-14.0088501-5.2510376-15.798584-12.3173828 3.1233521 2.2542114 8.8903809 3.7099609 15.798584 3.7099609s12.6752319-1.4557495 15.798584-3.7099609c-1.7897339 7.0663452-8.184082 12.3173828-15.798584 12.3173828z\"></path></svg>							\n												<h5>\n													Safe Space												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"friendship-work\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><circle cx=\"72\" cy=\"102\" r=\"4\"></circle><circle cx=\"64\" cy=\"50\" r=\"4\"></circle><path d=\"m228 98h4v4c0 2.211 1.789 4 4 4s4-1.789 4-4v-4h4c2.211 0 4-1.789 4-4s-1.789-4-4-4h-4v-4c0-2.211-1.789-4-4-4s-4 1.789-4 4v4h-4c-2.211 0-4 1.789-4 4s1.789 4 4 4z\"></path><path d=\"m132 218h-16v-5.977c0-13.759-8.223-25.608-20-30.964v-35.059c0-.031-.017-.057-.018-.088 4.839-3.653 8.018-9.396 8.018-15.912 0-2.211-1.789-4-4-4h-30.707c-7.328 0-13.293 5.965-13.293 13.293v25.953c0 5.361 2.096 10.206 5.444 13.892-14.614 3.818-25.444 17.092-25.444 32.885v49.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-49.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v9.977c0 2.211 1.789 4 4 4h8v8h-20v-17.582c0-2.211-1.789-4-4-4s-4 1.789-4 4v21.582 24c0 2.211 1.789 4 4 4s4-1.789 4-4v-20h32c6.617 0 12-5.383 12-12s-5.383-12-12-12zm-68-78.707c0-2.918 2.375-5.293 5.293-5.293h26.023c-1.652 4.656-6.102 8-11.316 8h-20zm12.754 38.707c-7.031 0-12.754-5.723-12.754-12.754v-15.246h24v28zm55.246 56h-4v-8h4c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m56 210c-2.211 0-4 1.789-4 4v48c0 2.211 1.789 4 4 4s4-1.789 4-4v-48c0-2.211-1.789-4-4-4z\"></path><path d=\"m238.009 178.998c3.704-3.95 5.991-9.243 5.991-15.072v-9.926c0-11.027-8.973-20-20-20s-20 8.973-20 20v27.06c-11.777 5.355-20 17.205-20 30.964v45.976c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v45.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-15.99-11.1-29.402-25.991-33.025zm-26.009-.998v-24c0-6.617 5.383-12 12-12s12 5.383 12 12v9.926c0 7.762-6.312 14.074-14.074 14.074z\"></path><path d=\"m204 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m244 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m185.41 118.613c.102-.242.203-.488.301-.734 5.809-.832 10.289-5.844 10.289-11.879 0-1.206-.223-2.353-.555-3.452 10.229-11.777 15.466-22.512 15.466-31.899-.001-20.208-15.274-36.649-34.048-36.649-7.633 0-14.91 2.711-20.863 7.707-5.953-4.996-13.23-7.707-20.863-7.707-18.773 0-34.047 16.441-34.047 36.648 0 9.39 5.238 20.125 15.465 31.903-.333 1.098-.555 2.244-.555 3.449 0 6.035 4.48 11.047 10.289 11.879.098.246.199.488.301.73-3.516 4.699-3.141 11.406 1.125 15.672 4.27 4.27 10.98 4.633 15.672 1.129.242.102.488.203.734.301.832 5.809 5.844 10.289 11.879 10.289s11.047-4.48 11.879-10.289c.246-.098.492-.199.734-.301 4.688 3.504 11.398 3.141 15.672-1.129 4.262-4.261 4.641-10.965 1.125-15.668zm-50.273-76.613c6.707 0 13.09 2.82 17.965 7.945 1.516 1.586 4.281 1.586 5.797 0 4.874-5.125 11.257-7.945 17.964-7.945 14.363 0 26.047 12.852 26.047 28.648 0 6.991-4.298 15.714-12.379 25.343-1.433-.939-3.052-1.616-4.82-1.87-.098-.246-.199-.488-.301-.73 3.516-4.699 3.141-11.406-1.125-15.672-4.273-4.27-10.984-4.637-15.672-1.129-.242-.102-.488-.203-.734-.301-.832-5.809-5.844-10.289-11.879-10.289s-11.047 4.48-11.879 10.289c-.246.098-.492.199-.734.301-4.691-3.508-11.402-3.141-15.672 1.129-4.262 4.262-4.641 10.965-1.125 15.668-.102.242-.203.488-.301.734-1.769.253-3.387.931-4.821 1.87-8.079-9.625-12.378-18.35-12.378-25.343 0-15.796 11.683-28.648 26.047-28.648zm47.687 68c-1.77 0-3.328 1.16-3.832 2.855-.488 1.629-1.117 3.16-1.875 4.555-.848 1.562-.562 3.492.695 4.746l.812.812c1.562 1.559 1.562 4.098.004 5.656-1.562 1.566-4.098 1.559-5.66 0l-.82-.82c-1.254-1.254-3.18-1.535-4.73-.691-1.426.773-2.957 1.402-4.555 1.875-1.699.504-2.863 2.062-2.863 3.836v1.176c0 2.207-1.793 4-4 4s-4-1.793-4-4v-1.176c0-1.773-1.164-3.332-2.863-3.836-1.598-.473-3.129-1.102-4.555-1.875-.598-.324-1.254-.48-1.902-.48-1.035 0-2.059.402-2.828 1.172l-.82.82c-1.559 1.559-4.094 1.566-5.66 0-1.559-1.559-1.559-4.098-.008-5.648l.824-.82c1.258-1.254 1.543-3.184.695-4.746-.758-1.395-1.387-2.926-1.875-4.555-.504-1.695-2.062-2.855-3.832-2.855h-1.176c-2.207 0-4-1.793-4-4s1.793-4 4-4h1.176c1.77 0 3.328-1.16 3.832-2.855.488-1.629 1.117-3.16 1.875-4.555.848-1.562.562-3.492-.695-4.746l-.812-.812c-1.562-1.559-1.562-4.098-.004-5.656 1.57-1.562 4.105-1.559 5.66 0l.82.82c1.25 1.25 3.18 1.531 4.73.691 1.426-.773 2.957-1.402 4.555-1.875 1.699-.504 2.863-2.062 2.863-3.836v-1.177c0-2.207 1.793-4 4-4s4 1.793 4 4v1.176c0 1.773 1.164 3.332 2.863 3.836 1.598.473 3.129 1.102 4.555 1.875 1.555.844 3.48.562 4.73-.691l.82-.82c1.562-1.559 4.098-1.566 5.66 0 1.559 1.559 1.559 4.098.008 5.648l-.824.82c-1.258 1.254-1.543 3.184-.695 4.746.758 1.395 1.387 2.926 1.875 4.555.504 1.695 2.062 2.855 3.832 2.855h1.176c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m156 90c-8.824 0-16 7.176-16 16s7.176 16 16 16 16-7.176 16-16-7.176-16-16-16zm0 24c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path></g></svg>							\n												<h5>\n													Emotional Support												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m206.102 400.162c-46.373 0-92.751-17.652-128.056-52.957-34.207-34.208-53.046-79.687-53.046-128.061s18.839-93.853 53.046-128.06c70.615-70.615 185.512-70.605 256.117 0 70.614 70.614 70.614 185.507 0 256.121-35.305 35.305-81.683 52.957-128.061 52.957zm0-346.791c-42.47 0-84.94 16.167-117.271 48.498-64.665 64.666-64.665 169.885 0 234.551 64.666 64.666 169.891 64.661 234.547 0 31.328-31.328 48.578-72.978 48.578-117.276 0-44.297-17.25-85.947-48.578-117.275-32.33-32.331-74.801-48.498-117.276-48.498z\"></path><path d=\"m206.102 357.901c-37.063 0-71.905-14.435-98.109-40.643-54.098-54.1-54.098-142.128 0-196.227 54.1-54.1 142.124-54.09 196.223 0 54.1 54.099 54.1 142.128 0 196.227-26.208 26.208-61.051 40.643-98.114 40.643zm0-262.194c-31.626 0-63.25 12.036-87.324 36.109-48.151 48.156-48.151 126.502 0 174.657 23.323 23.328 54.338 36.174 87.324 36.174s64.001-12.845 87.329-36.174c48.151-48.156 48.151-126.502 0-174.657-24.078-24.073-55.703-36.109-87.329-36.109z\"></path><path d=\"m297.428 421.907c-8.813 0-17.618-3.352-24.326-10.061-2.978-2.978-2.978-7.805 0-10.785 2.98-2.98 7.806-2.98 10.786 0 7.468 7.468 19.619 7.468 27.087 0l77.045-77.05c3.615-3.62 5.606-8.427 5.606-13.54 0-5.115-1.991-9.921-5.606-13.541-2.979-2.98-2.979-7.805 0-10.785 2.98-2.979 7.806-2.979 10.785 0 13.412 13.412 13.412 35.241 0 48.652l-77.045 77.05c-6.709 6.707-15.523 10.06-24.332 10.06z\"></path><path d=\"m402.881 461.874c-12.275 0-23.809-4.783-32.489-13.462l-47.992-47.991c-2.979-2.98-2.979-7.805 0-10.785l54.194-54.193c2.979-2.979 7.805-2.979 10.785 0l47.992 47.991c8.679 8.68 13.461 20.215 13.461 32.49s-4.782 23.809-13.461 32.489c-8.68 8.679-20.216 13.461-32.49 13.461zm-64.303-66.846 42.599 42.599c11.967 11.967 31.442 11.967 43.408 0 11.968-11.968 11.968-31.442 0-43.408l-42.599-42.6z\"></path><path d=\"m467.373 461.874h-355.566c-4.211 0-7.627-3.417-7.627-7.628s3.416-7.627 7.627-7.627h355.566c4.211 0 7.627 3.416 7.627 7.627s-3.416 7.628-7.627 7.628z\"></path><path d=\"m401.258 421.926c-1.951 0-3.904-.744-5.392-2.234l-21.675-21.679c-2.98-2.979-2.98-7.806 0-10.786 2.979-2.979 7.805-2.979 10.785 0l21.675 21.68c2.98 2.979 2.98 7.805 0 10.785-1.491 1.489-3.442 2.234-5.393 2.234z\"></path><path d=\"m206.102 305.102c-.814 0-1.628-.129-2.413-.392-3.814-1.272-41.556-24.446-49.383-62.342-6.668-32.305 9.048-65.739 46.716-99.385 2.89-2.583 7.269-2.583 10.16 0 37.668 33.641 53.384 67.079 46.715 99.38-7.826 37.897-45.569 61.076-49.383 62.347-.783.263-1.598.392-2.412.392zm0-146.07c-27.603 26.133-40.27 51.358-37.674 75.049 3.138 28.626 28.11 47.967 37.674 54.392 9.564-6.426 34.541-25.762 37.679-54.392 2.597-23.691-10.075-48.916-37.679-75.049z\"></path><path d=\"m212.691 305.102c-3.48 0-5.675-.164-6.082-.198-2.652-.224-5.001-1.813-6.192-4.192-.029-.06-.243-.501-.268-.561-1.658-3.541-.373-7.757 2.979-9.768 10.835-6.515 63.212-41.869 30.112-98.402-1.073-1.832-1.331-4.027-.715-6.062.615-2.031 2.045-3.715 3.957-4.648 14.42-7.027 32.256-12.021 53.007-14.842 3.889-.571 7.478 1.927 8.427 5.685 11.51 45.499 7.364 80.353-12.324 103.586-22.525 26.577-58.58 29.402-72.901 29.402zm37.744-113.333c22.007 44.953-.696 78.336-19.848 96.52 13.933-2.384 31.348-8.268 43.364-22.45 15.403-18.178 19.019-46.169 10.775-83.267-12.915 2.146-24.4 5.225-34.291 9.197z\"></path><path d=\"m199.553 305.102c-14.291 0-50.42-2.82-72.944-29.416-19.678-23.233-23.824-58.082-12.314-103.571.948-3.758 4.509-6.256 8.422-5.685 20.756 2.821 38.592 7.816 53.012 14.842 1.912.933 3.342 2.617 3.958 4.648.615 2.035.358 4.23-.715 6.062-33.1 56.533 19.276 91.887 30.111 98.402 3.392 2.036 4.662 6.332 2.925 9.887-1.182 2.413-3.734 4.409-6.411 4.633-.408.035-2.589.198-6.044.198zm-72.07-122.529c-8.243 37.088-4.633 65.079 10.765 83.257 12.007 14.177 29.426 20.066 43.364 22.45-19.147-18.184-41.849-51.562-19.837-96.51-9.892-3.973-21.371-7.052-34.292-9.197z\"></path><path d=\"m205.154 304.547c-4.211 0-7.627-3.417-7.627-7.628v-71.533c0-4.211 3.416-7.627 7.627-7.627s7.628 3.416 7.628 7.627v71.533c-.001 4.211-3.417 7.628-7.628 7.628z\"></path></g></svg>							\n												<h5>\n													Self-Exploration												</h5>\n											<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m295.544 178.256a6.741 6.741 0 0 0 -3.689-3.623 6.718 6.718 0 0 0 -8.727 3.475c-.058.16-.123.319-.193.475a6.715 6.715 0 0 0 3.572 8.482q.238.087.473.192a6.789 6.789 0 0 0 8.569-9zm4.657-15.648a21.3 21.3 0 0 1 -18.927 38.018l-.027-.012a21.345 21.345 0 0 1 -11.856-27.305 7.1 7.1 0 0 1 .358-.879 21.238 21.238 0 0 1 11.277-11.14 21.465 21.465 0 0 1 4.89-1.409 108.471 108.471 0 0 1 110.169-79.395l-7.5-9.84a7.256 7.256 0 0 1 11.533-8.807l18.139 23.785a7.255 7.255 0 0 1 -1.364 10.17l-23.793 18.138a7.256 7.256 0 0 1 -8.8-11.532l9.821-7.488a94.123 94.123 0 0 0 -93.917 67.7zm-136.607 130.062c-1.181-.462-2.53-.937-4.2-1.439-1.749-.526-3.761-1.034-5.893-1.571-2.249-.568-4.622-1.167-6.887-1.817a81.221 81.221 0 0 1 -7.736-2.626 52.681 52.681 0 0 1 -7.96-3.915 57.093 57.093 0 0 1 -5.122-3.558 19.314 19.314 0 0 1 -2.1 3.175 29.979 29.979 0 0 1 -4.78 4.617c-1.583 1.254-3.581 2.64-5.787 4.091-1.069.7-2 1.305-2.835 1.842v15.331a30.06 30.06 0 0 0 7.975 20.595 25.087 25.087 0 0 0 37.345 0 30.056 30.056 0 0 0 7.976-20.595v-14.13zm-3.794 117.75q-.863.314-1.737.606a66.691 66.691 0 0 1 -42.171 0q-.874-.292-1.736-.606 8.1 16.046 22.822 31.483 14.722-15.438 22.822-31.483zm-44.516-66.689-1.446 6.36a26.013 26.013 0 0 1 -8.247 14.073q-.63.554-1.295 1.069a86.352 86.352 0 0 0 2.3 24.838 49.4 49.4 0 0 0 13.842 7.2 53.4 53.4 0 0 0 33.079 0 49.4 49.4 0 0 0 13.842-7.2 86.282 86.282 0 0 0 2.3-24.786q-.7-.539-1.362-1.121a26.01 26.01 0 0 1 -8.247-14.073l-1.446-6.36a39.133 39.133 0 0 1 -43.323 0zm102.131 19.247c21.553 5.007 34.482 13.526 35.172 45.641v.142h.028v79.966a7.273 7.273 0 0 1 -7.272 7.273h-216.795a7.273 7.273 0 0 1 -7.273-7.273v-79.966a7.309 7.309 0 0 1 .049-.842c.911-33.257 15.2-40.822 38.733-45.728.5-7.586 1.773-17.265 3.2-28.09 2.421-18.4 5.3-40.261 5.3-60.319a67.9 67.9 0 0 1 19.627-47.875 66.563 66.563 0 0 1 94.957 0 67.889 67.889 0 0 1 19.627 47.875c0 22.494 5.342 45.587 9.591 63.955 2.279 9.851 4.261 18.419 5.062 25.241zm-46.7-31.379a44.85 44.85 0 0 0 7.42-24.8v-18.92a7.275 7.275 0 0 0 -4.889-6.873c-1.2-.525-2.455-1.065-4.1-1.717-1.832-.726-3.692-1.4-5.606-1.978-2.014-.606-4.2-1.158-6.517-1.742-2.01-.507-4.13-1.042-6.433-1.7-2.252-.647-4.44-1.344-6.372-2.113a37.981 37.981 0 0 1 -5.745-2.837 66.527 66.527 0 0 1 -8.659-6.687c-.68-.593-.82-.722-1.072-.939l.012-.014a14.573 14.573 0 0 0 -4.812-3.1c-6.5-2.195-9.224.041-10.259 6.5a21.51 21.51 0 0 0 -.208 2.607 14.785 14.785 0 0 1 -.37 3.3 3.848 3.848 0 0 1 -.715 1.241 16.145 16.145 0 0 1 -2.507 2.344c-1.423 1.129-3.022 2.244-4.707 3.353-1.127.741-3.346 2.131-5.627 3.557a7.274 7.274 0 0 0 -3.8 6.392v19.327a44.847 44.847 0 0 0 7.42 24.8l-3.479 15.309a11.711 11.711 0 0 1 -3.7 6.345 18.2 18.2 0 0 1 -8.506 3.875c-3.592.726-8.189 1.542-12.649 2.326.575-6.608 1.632-14.641 2.8-23.479 2.5-19 5.467-41.557 5.467-62.194a53.45 53.45 0 0 1 15.423-37.7 52.155 52.155 0 0 1 74.275 0 53.45 53.45 0 0 1 15.423 37.7c0 24.013 5.564 48.064 9.989 67.193 1.675 7.243 3.177 13.738 4.1 19.051l-2.054-.362c-4.821-.846-9.929-1.744-13.842-2.535a18.2 18.2 0 0 1 -8.506-3.875 11.711 11.711 0 0 1 -3.7-6.345l-3.482-15.31zm-41.01 149.856h-45.614a7.289 7.289 0 0 0 -.715-1.2 26.958 26.958 0 0 1 -5.261-16.38q0-9.969 5.972-22.523a7.256 7.256 0 0 0 -13.125-6.193q-7.392 15.54-7.393 28.716a41.569 41.569 0 0 0 3.738 17.583h-31.487v-72.697c0-.137 0-.274-.012-.41.791-27.416 16-30.094 40.333-34.368 3.862-.679 7.947-1.4 13.53-2.518a102.527 102.527 0 0 0 9.229 40.627q10.013 22.326 30.808 43.123v26.24zm14.545-26.241q20.795-20.795 30.808-43.121a102.527 102.527 0 0 0 9.226-40.616c5.55 1.115 9.617 1.83 13.466 2.506 24.453 4.3 39.695 6.976 40.344 34.778h-.024v72.694h-31.422a41.554 41.554 0 0 0 3.738-17.583q0-13.176-7.392-28.716a7.256 7.256 0 1 0 -13.125 6.193q5.971 12.554 5.972 22.523a26.959 26.959 0 0 1 -5.262 16.38 7.359 7.359 0 0 0 -.715 1.2h-45.614zm314.57-424.669a17.825 17.825 0 0 1 12.368 4.889 15.841 15.841 0 0 1 4.992 11.445v162.839a15.841 15.841 0 0 1 -4.992 11.445 17.821 17.821 0 0 1 -12.368 4.889h-92.395a7.234 7.234 0 0 0 -3.9 1.136l-22.385 12.384q-.276.151-.532.323l-36.3 20.086v-26.656a7.273 7.273 0 0 0 -7.273-7.273h-55.544a17.824 17.824 0 0 1 -12.368-4.889 15.844 15.844 0 0 1 -4.991-11.445v-162.839a15.842 15.842 0 0 1 4.991-11.445 17.829 17.829 0 0 1 12.368-4.889zm-218.329-14.545h218.329a32.378 32.378 0 0 1 22.425 8.979 30.272 30.272 0 0 1 9.48 21.9v162.839a30.268 30.268 0 0 1 -9.48 21.9 32.375 32.375 0 0 1 -22.425 8.98h-90.544l-21.149 11.7q-.257.141-.518.259l-47.084 26.051a7.236 7.236 0 0 1 -10.73-6.335h-.037v-31.673h-48.267a32.378 32.378 0 0 1 -22.425-8.98 30.272 30.272 0 0 1 -9.48-21.9v-162.841a30.268 30.268 0 0 1 9.48-21.9 32.378 32.378 0 0 1 22.425-8.979zm53.254 72.778-10.193-10.192 10.193-10.193a7.272 7.272 0 0 0 -10.285-10.284l-10.192 10.191-10.192-10.19a7.272 7.272 0 0 0 -10.284 10.284l10.192 10.192-10.192 10.191a7.272 7.272 0 0 0 10.284 10.284l10.192-10.191 10.192 10.192a7.272 7.272 0 0 0 10.285-10.284zm123.469 89.042-10.192-10.192 10.192-10.193a7.272 7.272 0 0 0 -10.284-10.284l-10.192 10.192-10.192-10.191a7.272 7.272 0 1 0 -10.284 10.284l10.192 10.192-10.192 10.191a7.272 7.272 0 1 0 10.284 10.281l10.192-10.191 10.192 10.191a7.272 7.272 0 0 0 10.284-10.284z\" fill-rule=\"evenodd\"></path></svg>							\n												<h5>\n													Coping Strategies												</h5>\n											<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M248.298,398.776v-96.35c0-5.971-2.694-11.517-7.393-15.216l-59.928-47.132c-2.984-2.348-7.254-2.094-9.939,0.592   l-14.349,14.349c-2.986,2.985-4.637,7.118-4.53,11.338c0.106,4.215,1.961,8.252,5.079,11.069l30.406,27.556l-1.867,1.93   c-1.111,1.149-2.665,1.808-4.265,1.808h-5.366c-4.046,0-7.953-1.201-11.299-3.474l-66.646-45.245   c-1.237-0.838-1.976-2.237-1.976-3.742v-42.516c0-8.724-7.102-15.821-15.832-15.821h-23.54c-4.142,0-7.5,3.358-7.5,7.5v72.637   c0,6.404,3.145,12.405,8.408,16.048l46.124,31.979c3.404,2.359,8.077,1.513,10.437-1.89c2.36-3.404,1.514-8.077-1.89-10.437   l-46.128-31.982c-1.222-0.846-1.951-2.235-1.951-3.718v-65.137h16.039c0.458,0,0.832,0.368,0.832,0.821v42.516   c0,6.486,3.2,12.526,8.556,16.155l66.64,45.241c5.84,3.967,12.661,6.064,19.726,6.064h5.366c5.643,0,11.128-2.326,15.047-6.38   l2.254-2.331c2.749-2.837,4.193-6.572,4.066-10.518c-0.127-3.948-1.811-7.585-4.741-10.242l-30.836-27.946   c-0.039-0.036-0.143-0.129-0.148-0.327c-0.005-0.206,0.101-0.312,0.141-0.352l9.642-9.642l54.693,43.015   c1.061,0.834,1.668,2.084,1.668,3.427v88.844h-60.32v-24.995c0-6.607-3.24-12.792-8.658-16.538l-27.532-19.089   c-3.405-2.36-8.077-1.514-10.437,1.89s-1.514,8.077,1.89,10.437l27.541,19.095c1.375,0.951,2.196,2.522,2.196,4.205v24.995h-3.726   c-4.142,0-7.5,3.358-7.5,7.5v58.66c0,0.033,0.004,0.064,0.005,0.097V504.5c0,4.142,3.358,7.5,7.5,7.5h25.971   c4.142,0,7.5-3.358,7.5-7.5c0-4.142-3.358-7.5-7.5-7.5h-18.471v-47.64h71.535v8.07c0,0.016,0.002,0.032,0.002,0.048V497h-23.519   c-4.142,0-7.5,3.358-7.5,7.5c0,4.142,3.358,7.5,7.5,7.5h31.019c4.142,0,7.5-3.358,7.5-7.5v-62.64c0-0.016-0.002-0.032-0.002-0.048   v-42.92C248.293,398.853,248.298,398.815,248.298,398.776z M233.292,434.359h-71.54V406.27h3.62c0.036,0,0.07,0.005,0.106,0.005   h67.814V434.359z\"></path>	</g></g><g>	<g>		<path d=\"M455.147,197.92h-23.535c-8.728,0-15.828,7.101-15.828,15.828v42.51c0,1.501-0.742,2.9-1.984,3.744l-66.637,45.24   c-3.349,2.273-7.258,3.475-11.304,3.475h-5.362c-1.604,0-3.162-0.66-4.279-1.813l-1.862-1.922l30.408-27.549   c3.125-2.831,4.977-6.871,5.08-11.085c0.104-4.215-1.546-8.342-4.526-11.324l-14.354-14.354c-2.687-2.686-6.956-2.939-9.94-0.592   l-47.179,37.107l-12.747,10.025c-4.695,3.693-7.389,9.238-7.389,15.211v96.35c0,0.02,0.003,0.038,0.003,0.058v42.972   c0,0.02-0.003,0.038-0.003,0.058v62.64c0,4.142,3.357,7.5,7.5,7.5h86.538c4.143,0,7.5-3.358,7.5-7.5v-46.973   c0-0.033,0.005-0.064,0.005-0.097v-58.66c0-4.142-3.357-7.5-7.5-7.5h-3.729v-24.994c0-1.68,0.824-3.254,2.204-4.211l98.021-67.96   c5.26-3.647,8.4-9.646,8.4-16.046V205.42C462.647,201.278,459.29,197.92,455.147,197.92z M350.247,497h-71.538v-39.512   c0-0.02,0.003-0.038,0.003-0.058v-8.07h71.535V497z M350.252,434.36h-71.54v-28.088h67.811c0.013,0,0.026-0.002,0.039-0.002h3.69   V434.36z M447.65,278.059h-0.003c0,1.483-0.728,2.874-1.947,3.719l-98.021,67.961c-5.42,3.759-8.656,9.941-8.656,16.538v24.994   H278.71v-88.848c0-1.343,0.605-2.591,1.662-3.421l12.747-10.025l41.946-32.992l9.646,9.646c0.039,0.04,0.144,0.144,0.139,0.347   s-0.114,0.302-0.155,0.339l-30.83,27.931c-2.928,2.653-4.611,6.289-4.74,10.238c-0.128,3.95,1.314,7.688,4.065,10.527l2.256,2.328   c3.924,4.053,9.41,6.377,15.053,6.377h5.362c7.062,0,13.884-2.097,19.729-6.064l66.638-45.241   c5.359-3.639,8.559-9.677,8.559-16.154v-42.51c0-0.457,0.371-0.828,0.828-0.828h16.035V278.059z\"></path>	</g></g><g>	<g>		<path d=\"M256.002,0c-55.95,0-102.985,41.857-109.407,97.364c-0.476,4.115,2.474,7.836,6.588,8.313   c4.12,0.482,7.836-2.474,8.313-6.588C167.042,51.15,207.671,15,256.002,15c52.466,0,95.15,42.684,95.15,95.15   c0,41.507-26.532,77.917-66.021,90.603c-1.723,0.553-3.187,1.71-4.123,3.258l-25.006,41.333l-25.006-41.333   c-0.937-1.548-2.401-2.705-4.123-3.258c-33.804-10.859-58.561-39.313-64.609-74.259c-0.707-4.082-4.587-6.812-8.669-6.111   c-4.082,0.707-6.817,4.588-6.111,8.669c6.842,39.527,34.351,71.881,72.103,85.076l30,49.587c1.358,2.246,3.792,3.618,6.417,3.618   s5.059-1.372,6.417-3.618l29.999-49.587c44.219-15.453,73.732-56.883,73.732-103.978C366.152,49.413,316.739,0,256.002,0z\"></path>	</g></g><g>	<g>		<path d=\"M315.754,102.65h-10.565c-1.234-8.128-4.447-15.612-9.123-21.955l7.492-7.492c2.929-2.929,2.929-7.678,0-10.606   c-2.93-2.929-7.678-2.929-10.607,0l-7.491,7.491c-6.343-4.676-13.827-7.888-21.955-9.123V50.4c0-4.142-3.357-7.5-7.5-7.5   c-4.142,0-7.5,3.358-7.5,7.5v10.565c-8.128,1.234-15.612,4.447-21.955,9.123l-7.491-7.491c-2.929-2.929-7.678-2.929-10.606,0   c-2.929,2.929-2.929,7.678,0,10.606l7.491,7.491c-4.676,6.343-7.889,13.828-9.123,21.956c0,0-10.569,0-10.569,0   c-4.142,0-7.5,3.358-7.5,7.5c0,4.142,3.358,7.5,7.5,7.5h10.565c1.234,8.128,4.447,15.613,9.123,21.956l-7.491,7.491   c-2.929,2.929-2.929,7.678,0,10.606c1.464,1.464,3.384,2.197,5.303,2.197s3.839-0.732,5.303-2.197l7.491-7.491   c6.343,4.676,13.828,7.889,21.956,9.123V169.9c0,4.142,3.358,7.5,7.5,7.5c4.143,0,7.5-3.358,7.5-7.5v-10.565   c8.128-1.234,15.612-4.447,21.956-9.123l7.491,7.491c1.465,1.464,3.385,2.197,5.304,2.197c1.919,0,3.839-0.732,5.304-2.197   c2.929-2.929,2.929-7.678,0-10.606l-7.491-7.491c4.676-6.343,7.889-13.828,9.123-21.956h10.565c4.143,0,7.5-3.358,7.5-7.5   C323.254,106.008,319.897,102.65,315.754,102.65z M290.751,110.164c-0.007,19.151-15.586,34.731-34.738,34.738   c-0.004,0-0.009-0.001-0.013-0.001c-0.004,0-0.009,0.001-0.013,0.001c-19.151-0.007-34.731-15.586-34.738-34.738   c0-0.004,0.001-0.009,0.001-0.013c0-0.004-0.001-0.008-0.001-0.013c0.009-19.154,15.592-34.735,34.746-34.738   c0.002,0,0.004,0,0.006,0s0.004,0,0.006,0c19.155,0.004,34.737,15.584,34.744,34.738c0,0.004-0.001,0.008-0.001,0.013   C290.75,110.155,290.751,110.16,290.751,110.164z\"></path>	</g></g><g>	<g>		<path d=\"M256.002,85.119c-13.802,0-25.032,11.229-25.032,25.031c0,13.803,11.229,25.032,25.032,25.032   c13.803,0,25.031-11.229,25.031-25.031C281.033,96.348,269.804,85.119,256.002,85.119z M256.002,120.182   c-5.532,0-10.032-4.5-10.032-10.031c0-5.532,4.5-10.032,10.032-10.032c5.531,0,10.031,4.5,10.031,10.032   C266.033,115.682,261.533,120.182,256.002,120.182z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>							\n												<h5>\n													Goal Setting												</h5>\n											<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xodm=\"http://www.corel.com/coreldraw/odm/2003\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_2077007814064\"><g id=\"_200306976\"><path d=\"m256 319.44c-1.59 0-3.12-.63-4.24-1.75-11.13-11.13-22.33-21.98-33.17-32.48-62.94-60.98-117.31-113.65-117.31-179.39 0-44.31 36.05-80.35 80.36-80.35 37.74 0 57.46 18.43 74.36 48.87 16.9-30.44 36.62-48.87 74.35-48.87 44.31 0 80.36 36.04 80.36 80.35 0 65.74-54.36 118.41-117.31 179.39-10.83 10.49-22.03 21.35-33.16 32.48-1.12 1.12-2.65 1.75-4.24 1.75zm-74.36-281.97c-37.69 0-68.35 30.66-68.35 68.35 0 60.66 52.67 111.69 113.65 170.77 9.5 9.2 19.27 18.67 29.06 28.39 9.78-9.72 19.56-19.19 29.06-28.39 60.98-59.08 113.65-110.11 113.65-170.77 0-37.69-30.66-68.35-68.35-68.35-31.58 0-49.63 13.72-68.99 52.45-1.02 2.03-3.1 3.31-5.37 3.31s-4.35-1.28-5.37-3.31c-19.36-38.73-37.41-52.45-68.99-52.45z\"></path></g><g><g id=\"_200307000\"><path d=\"m268.35 249.13h-24.7c-3.32 0-6-2.68-6-6v-11.56c-2.07-.72-4.09-1.56-6.06-2.51l-8.18 8.18c-1.13 1.12-2.65 1.75-4.25 1.75-1.59 0-3.11-.63-4.24-1.75l-17.47-17.47c-2.34-2.34-2.34-6.14 0-8.49l8.18-8.18c-.95-1.97-1.79-3.99-2.51-6.06h-11.57c-3.31 0-6-2.68-6-6v-24.7c0-3.32 2.69-6 6-6h11.57c.72-2.07 1.56-4.09 2.51-6.06l-8.18-8.18c-1.13-1.13-1.76-2.65-1.76-4.24 0-1.6.63-3.12 1.76-4.25l17.47-17.47c2.34-2.34 6.14-2.34 8.49 0l8.18 8.18c1.96-.95 3.99-1.79 6.05-2.51v-11.56c0-3.32 2.69-6 6-6h24.71c3.31 0 6 2.68 6 6v11.56c2.07.72 4.09 1.56 6.06 2.51l8.18-8.18c1.12-1.12 2.65-1.76 4.24-1.76s3.12.64 4.24 1.76l17.48 17.47c1.12 1.13 1.75 2.65 1.75 4.25 0 1.59-.63 3.11-1.75 4.24l-8.19 8.18c.96 1.97 1.8 3.99 2.52 6.06h11.56c3.32 0 6 2.68 6 6v24.7c0 3.32-2.68 6-6 6h-11.56c-.72 2.07-1.56 4.09-2.52 6.06l8.19 8.18c1.12 1.13 1.75 2.65 1.75 4.24 0 1.6-.63 3.12-1.75 4.25l-17.47 17.47c-2.35 2.34-6.15 2.34-8.49 0l-8.18-8.18c-1.97.95-3.99 1.79-6.06 2.51v11.57c0 3.31-2.69 5.99-6 5.99zm-18.7-12h12.7v-10.02c0-2.74 1.86-5.14 4.52-5.82 4.06-1.03 7.95-2.64 11.56-4.79 2.36-1.4 5.37-1.02 7.31.92l7.09 7.09 8.99-8.99-7.09-7.09c-1.94-1.94-2.32-4.95-.92-7.31 2.15-3.6 3.76-7.49 4.79-11.56.68-2.66 3.07-4.52 5.82-4.52h10.02v-12.7h-10.02c-2.75 0-5.14-1.87-5.82-4.52-1.03-4.07-2.64-7.95-4.79-11.56-1.4-2.36-1.03-5.37.92-7.31l7.09-7.1-8.99-8.98-7.09 7.09c-1.94 1.94-4.95 2.32-7.31.92-3.61-2.15-7.5-3.77-11.56-4.8-2.66-.67-4.52-3.07-4.52-5.81v-10.03h-12.7v10.03c0 2.74-1.87 5.14-4.53 5.81-4.05 1.04-7.94 2.65-11.55 4.8-2.36 1.4-5.37 1.02-7.31-.92l-7.1-7.09-8.98 8.99 7.09 7.09c1.94 1.94 2.32 4.95.92 7.31-2.15 3.61-3.76 7.5-4.8 11.55-.67 2.66-3.07 4.53-5.81 4.53h-10.02v12.7h10.02c2.74 0 5.14 1.86 5.81 4.52 1.04 4.06 2.65 7.95 4.8 11.56 1.4 2.36 1.02 5.37-.92 7.31l-7.09 7.09 8.98 8.99 7.1-7.09c1.94-1.94 4.95-2.32 7.31-.92 3.61 2.15 7.5 3.76 11.56 4.79 2.66.68 4.52 3.08 4.52 5.82z\"></path></g><g id=\"_200306760\"><path d=\"m256 215.48c-20.29 0-36.8-16.5-36.8-36.79s16.51-36.8 36.8-36.8 36.79 16.51 36.79 36.8-16.5 36.79-36.79 36.79zm0-61.59c-13.67 0-24.8 11.13-24.8 24.8s11.13 24.79 24.8 24.79 24.79-11.12 24.79-24.79-11.12-24.8-24.79-24.8z\"></path></g></g><g id=\"_200306784\"><path d=\"m461.9 340.14c-.4 0-.8-.04-1.21-.12-2.77-.57-4.77-3.01-4.79-5.84-.01-.8-.54-16.35-18.14-25.35-4.77 6.05-14.98 15.83-31.26 15.83-7.09 0-14.53-1.91-22.17-5.68-1.97 2.49-4.39 6.45-4.71 11.19-.17 2.67-2.1 4.89-4.71 5.46-2.62.57-5.29-.67-6.56-3.03-.73-1.35-17.54-33.58 6.24-66.87.25-.34.54-.67.85-.95.53-.48 13.04-11.64 29.73-11.64 8.33 0 16.16 2.73 23.32 8.11 6.78.84 29.41 4.94 40.34 22.87 8.21 13.48 7.74 31.11-1.42 52.39-.96 2.24-3.15 3.63-5.51 3.63zm-26.24-44.82c.73 0 1.45.13 2.16.41 12.4 4.82 19.68 12.11 23.97 19.04 1.81-9.72.76-17.87-3.18-24.36-9.39-15.48-32.65-17.38-32.88-17.39-1.23-.09-2.4-.56-3.35-1.33-5.36-4.35-11.14-6.55-17.2-6.55-10.52 0-19.21 6.52-21.25 8.17-10.03 14.4-10.85 28.57-9.39 38.73 2.4-3.14 4.55-4.96 4.74-5.12 1.93-1.61 4.66-1.85 6.84-.59 7.27 4.2 14.13 6.33 20.38 6.33 15.81 0 23.56-13.64 23.88-14.22 1.09-1.97 3.15-3.12 5.28-3.12z\"></path></g><g id=\"_200307264\"><path d=\"m419.46 411.58c-.16 0-.32 0-.48 0-10.3-.15-20.06-5.17-28.23-14.52-7.44-8.5-13.2-20.37-16.78-34.51-9.81-1.95-15.33-9.01-16.53-15.9-1.66-9.54 3.98-18.57 14.03-22.48 3.08-1.2 6.56.33 7.76 3.42s-.33 6.56-3.41 7.77c-5.64 2.19-7.06 6.34-6.56 9.23.53 3.02 3.36 6.31 9.74 6.48 2.77.08 5.12 2.03 5.71 4.73 5.7 26.37 19.22 43.55 34.45 43.78h.29c14.2 0 26.75-15.15 32.81-39.65.62-2.5 2.75-4.32 5.31-4.54 5.81-.5 8.33-3.74 8.74-6.61.43-2.97-1.08-6.91-6.58-9.05-3.09-1.2-4.62-4.68-3.42-7.76 1.2-3.09 4.68-4.62 7.77-3.42 9.78 3.8 15.45 12.62 14.11 21.93-1.15 8.02-6.99 14.03-15.29 16.15-7.91 27.89-24.31 44.95-43.44 44.95z\"></path></g><g id=\"_200306808\"><path d=\"m332.55 486.53c-1.59 0-3.11-.63-4.24-1.75-1.12-1.13-1.76-2.65-1.76-4.25 0-44.88 21.25-52.28 38.32-58.24 13.67-4.77 23.55-8.21 24.07-29.7.08-3.31 2.86-5.89 6.15-5.85 3.31.08 5.93 2.83 5.85 6.15-.73 29.78-17.41 35.6-32.12 40.73-15.3 5.34-28.64 9.99-30.13 40.91h161.17c-1.49-30.92-14.83-35.57-30.13-40.91-14.73-5.13-31.42-10.96-32.12-40.8-.08-3.31 2.54-6.06 5.85-6.14 3.31-.11 6.06 2.54 6.14 5.86.51 21.53 10.4 24.98 24.08 29.75 17.07 5.96 38.32 13.36 38.32 58.24 0 3.31-2.69 6-6 6z\"></path></g><g id=\"_200306616\"><path d=\"m419.27 443.04c-15.8 0-30.68-6.12-41.9-17.25-2.36-2.33-2.38-6.13-.04-8.48 2.33-2.35 6.13-2.37 8.48-.04 8.96 8.88 20.85 13.77 33.46 13.77 12.62 0 24.5-4.89 33.46-13.77 2.36-2.33 6.16-2.31 8.49.04s2.31 6.15-.04 8.48c-11.22 11.13-26.11 17.25-41.91 17.25z\"></path></g><g id=\"_200307672\"><path d=\"m374.04 486.53c-3.32 0-6-2.68-6-6v-19.82c0-3.31 2.68-6 6-6 3.31 0 6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307888\"><path d=\"m464.51 486.53c-3.31 0-6-2.68-6-6v-19.82c0-3.31 2.69-6 6-6s6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307744\"><path d=\"m135.35 340.14c-.4 0-.8-.04-1.21-.12-2.77-.57-4.77-3.01-4.79-5.84-.01-.8-.54-16.35-18.14-25.35-4.77 6.05-14.98 15.83-31.26 15.83-7.09 0-14.53-1.91-22.17-5.68-1.97 2.49-4.39 6.45-4.7 11.19-.18 2.67-2.11 4.89-4.72 5.46-2.62.57-5.29-.67-6.56-3.03-.72-1.35-17.54-33.58 6.24-66.87.25-.34.54-.67.86-.95.52-.48 13.03-11.64 29.73-11.64 8.32 0 16.16 2.73 23.31 8.11 6.78.84 29.41 4.94 40.34 22.87 8.22 13.48 7.74 31.11-1.42 52.39-.96 2.24-3.15 3.63-5.51 3.63zm-26.25-44.82c.72 0 1.46.13 2.17.41 12.4 4.82 19.69 12.1 23.97 19.04 1.81-9.72.76-17.87-3.18-24.36-9.39-15.48-32.65-17.37-32.88-17.39-1.22-.09-2.4-.56-3.35-1.33-5.36-4.35-11.14-6.55-17.2-6.55-10.52 0-19.21 6.52-21.24 8.17-10.04 14.4-10.85 28.57-9.4 38.73 2.4-3.14 4.55-4.96 4.74-5.12 1.93-1.61 4.67-1.85 6.84-.59 7.27 4.2 14.13 6.33 20.38 6.33 16.01 0 23.79-14.05 23.86-14.2 1.08-1.98 3.14-3.14 5.29-3.14z\"></path></g><g id=\"_200307960\"><path d=\"m92.91 411.58c-.16 0-.32 0-.48 0-10.3-.15-20.06-5.17-28.23-14.52-7.44-8.5-13.2-20.37-16.79-34.51-9.8-1.95-15.32-9.01-16.52-15.9-1.66-9.54 3.98-18.57 14.03-22.48 3.08-1.2 6.56.33 7.76 3.42s-.33 6.56-3.41 7.77c-5.64 2.19-7.06 6.34-6.56 9.23.53 3.02 3.36 6.31 9.74 6.48 2.77.08 5.12 2.03 5.71 4.73 5.7 26.37 19.22 43.55 34.45 43.78h.29c14.2 0 26.75-15.15 32.81-39.65.62-2.5 2.75-4.32 5.31-4.54 5.81-.5 8.33-3.74 8.74-6.61.43-2.97-1.08-6.91-6.58-9.05-3.09-1.2-4.62-4.68-3.42-7.76 1.2-3.09 4.68-4.62 7.77-3.42 9.78 3.8 15.45 12.62 14.11 21.93-1.16 8.02-6.99 14.03-15.3 16.15-7.9 27.89-24.3 44.95-43.43 44.95z\"></path></g><g id=\"_200307408\"><path d=\"m6 486.53c-1.59 0-3.11-.63-4.24-1.75-1.12-1.13-1.76-2.65-1.76-4.25 0-44.88 21.25-52.28 38.32-58.24 13.67-4.77 23.55-8.21 24.08-29.7.08-3.31 2.82-5.89 6.14-5.85 3.31.08 5.93 2.83 5.85 6.15-.73 29.78-17.41 35.6-32.12 40.73-15.3 5.34-28.64 9.99-30.13 40.91h161.17c-1.5-30.92-14.83-35.57-30.13-40.91-14.73-5.13-31.42-10.96-32.12-40.8-.08-3.31 2.54-6.06 5.85-6.14 3.27-.11 6.06 2.54 6.14 5.86.51 21.53 10.4 24.98 24.08 29.75 17.07 5.96 38.32 13.36 38.32 58.24 0 3.31-2.69 6-6 6h-173.45z\"></path></g><g id=\"_200307648\"><path d=\"m92.73 443.04c-15.81 0-30.69-6.12-41.91-17.25-2.36-2.33-2.37-6.13-.04-8.48s6.13-2.37 8.48-.04c8.97 8.88 20.85 13.77 33.47 13.77 12.61 0 24.49-4.89 33.45-13.77 2.36-2.33 6.16-2.31 8.49.04s2.31 6.15-.04 8.48c-11.22 11.13-26.11 17.25-41.9 17.25z\"></path></g><g id=\"_200307720\"><path d=\"m47.49 486.53c-3.32 0-6-2.68-6-6v-19.82c0-3.31 2.68-6 6-6 3.31 0 6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307456\"><path d=\"m137.96 486.53c-3.31 0-6-2.68-6-6v-19.82c0-3.31 2.69-6 6-6s6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307840\"><path d=\"m94.44 269.46c-3.31 0-6-2.68-6-6v-23.34c0-8.01 6.52-14.53 14.53-14.53h70.38c3.31 0 6 2.69 6 6 0 3.32-2.69 6-6 6h-70.38c-1.37 0-2.53 1.16-2.53 2.53v23.34c0 3.32-2.68 6-6 6zm323.12-1.73c-3.32 0-6-2.69-6-6v-21.61c0-1.37-1.16-2.53-2.53-2.53h-70.38c-3.31 0-6-2.68-6-6 0-3.31 2.69-6 6-6h70.37c8.02 0 14.54 6.52 14.54 14.53v21.61c0 3.31-2.69 6-6 6z\"></path></g></g></g></svg>							\n												<h5>\n													Relationship Improvement												</h5>\n											<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m434.61 333.03-21.34-36.58c6.76-18.2 7.07-35.07.96-51.47-5.64-15.15-16.96-29.98-34.59-45.33-11.13-9.69-23.22-17.82-35.9-24.21.12-3.43-1.13-6.87-3.68-9.41l-11.45-11.45c-.24-.24-.28-.47-.12-.78 1.77-3.49 3.28-7.13 4.5-10.84.11-.32.3-.46.64-.46h16.19c6.99 0 12.67-5.68 12.67-12.67v-22.44c0-6.99-5.68-12.67-12.67-12.67h-16.19c-.34 0-.53-.14-.64-.46-1.22-3.71-2.73-7.35-4.5-10.84-.15-.3-.12-.53.12-.77l11.45-11.45c2.39-2.39 3.71-5.57 3.71-8.96s-1.32-6.57-3.71-8.96l-15.87-15.87c-2.39-2.39-5.57-3.71-8.96-3.71s-6.57 1.32-8.96 3.71l-11.45 11.45c-.24.24-.47.28-.77.12-3.48-1.77-7.13-3.28-10.84-4.5-.32-.11-.46-.3-.46-.64v-16.17c0-6.99-5.68-12.67-12.67-12.67h-22.44c-6.99 0-12.67 5.68-12.67 12.67v16.19c0 .34-.14.53-.46.64-3.7 1.22-7.35 2.73-10.84 4.5-.3.15-.54.12-.77-.12l-11.45-11.45c-2.39-2.39-5.57-3.71-8.96-3.71s-6.57 1.32-8.96 3.71l-15.87 15.87c-2.39 2.39-3.71 5.57-3.71 8.96s1.32 6.57 3.71 8.96l11.45 11.45c.24.24.28.47.12.77-1.77 3.49-3.28 7.13-4.5 10.84-.11.32-.3.46-.64.46h-16.19c-6.99 0-12.67 5.68-12.67 12.67v10.02c-.5 1.37-.76 2.83-.76 4.3v16.19c0 .34-.14.53-.46.64-3.7 1.22-7.35 2.73-10.84 4.5-.3.15-.54.12-.78-.12l-11.45-11.45c-2.39-2.39-5.57-3.71-8.96-3.71s-6.57 1.32-8.96 3.71l-15.87 15.87c-2.39 2.39-3.71 5.57-3.71 8.96s1.32 6.57 3.71 8.96l11.45 11.45c.24.24.28.47.12.77-1.77 3.49-3.28 7.13-4.49 10.84-.11.32-.3.46-.64.46h-16.16c-6.99 0-12.67 5.68-12.67 12.67v22.44c0 6.99 5.68 12.67 12.67 12.67h16.19c.34 0 .53.14.63.46 1.22 3.7 2.73 7.35 4.5 10.84.15.3.12.53-.12.77l-11.45 11.45c-2.39 2.39-3.71 5.57-3.71 8.96s1.32 6.57 3.71 8.96l15.87 15.87c2.39 2.39 5.57 3.71 8.96 3.71s6.57-1.32 8.96-3.71l11.45-11.45c.24-.24.47-.28.78-.12 2.63 1.33 5.35 2.52 8.12 3.55 3.63 25.86 18.43 52.67 31.88 77.01 3.47 6.29 6.76 12.23 9.84 18.11 12.69 35.72 7.66 78.5-12.56 106.56l-6.85 9.51h173.63v-44.26c38.01-.13 59.59-5.99 67.67-18.29 6.96-10.6 1.74-22.31-1.38-29.3-.44-.98-.98-2.19-1.34-3.11 3.35-4.7 4.47-10.39 3.12-16.07.14-.2.3-.41.43-.59 2.26-3.05 6.46-8.74 3.06-18.47-.43-1.24-.63-2.03-.72-2.5.71-.41 1.88-.97 2.87-1.44 1.82-.86 4.08-1.94 6.69-3.46 4.46-2.6 7.64-6.79 8.96-11.8s.59-10.29-2.01-14.74zm-267.36-225.64c0-.36.31-.67.67-.67h16.19c5.49 0 10.32-3.5 12.04-8.71 1.03-3.13 2.31-6.21 3.8-9.16 2.48-4.9 1.54-10.8-2.34-14.68l-11.45-11.45c-.13-.13-.19-.29-.19-.47 0-.19.06-.35.19-.47l15.87-15.87c.25-.25.69-.25.95 0l11.45 11.45c3.88 3.88 9.78 4.82 14.68 2.34 2.95-1.49 6.03-2.77 9.16-3.8 5.21-1.71 8.72-6.55 8.72-12.04v-16.19c0-.36.31-.67.67-.67h22.44c.36 0 .67.31.67.67v16.19c0 5.49 3.5 10.32 8.71 12.04 3.13 1.03 6.21 2.31 9.16 3.8 4.9 2.48 10.8 1.54 14.68-2.34l11.45-11.45c.25-.25.69-.25.95 0l15.87 15.87c.13.13.19.29.19.47 0 .19-.06.35-.19.47l-11.45 11.45c-3.88 3.88-4.83 9.78-2.34 14.68 1.49 2.95 2.77 6.03 3.8 9.16 1.71 5.21 6.55 8.71 12.04 8.71h16.19c.36 0 .67.31.67.67v22.44c0 .36-.31.67-.67.67h-16.19c-5.49 0-10.32 3.5-12.04 8.71-1.03 3.13-2.31 6.21-3.8 9.16-2.48 4.9-1.54 10.8 2.34 14.68l4.07 4.07c-6.1-2.13-12.28-3.88-18.52-5.21-5.2-1.11-10.41-1.91-15.6-2.44 12.29-9.41 20.24-24.22 20.24-40.86 0-28.37-23.08-51.45-51.45-51.45s-51.45 23.08-51.45 51.45c0 20.1 11.59 37.53 28.43 45.99-1.46.45-2.91.93-4.35 1.43-13.15 4.6-25.02 11.14-35.4 19.37l-9.95-9.95c-.13-.13-.19-.28-.19-.47s.06-.35.19-.47l11.45-11.45c3.88-3.88 4.82-9.78 2.34-14.68-1.49-2.95-2.77-6.03-3.8-9.16-1.71-5.21-6.55-8.72-12.04-8.72h-16.19c-.36 0-.67-.31-.67-.67zm91.61 50.67c-21.75 0-39.45-17.7-39.45-39.45s17.7-39.45 39.45-39.45 39.45 17.7 39.45 39.45-17.7 39.45-39.45 39.45zm-81.2 25.88 9.4 9.4c-14.24 13.88-24.92 31.39-31.29 51.61-10.4-7.3-16.85-19.33-16.85-32.3 0-20.29 15.4-37.05 35.13-39.21-.06.51-.1 1.02-.1 1.54 0 3.39 1.32 6.57 3.71 8.96zm-43.73 89.97-11.45 11.45c-.25.25-.69.25-.94 0l-15.87-15.87c-.16-.16-.19-.34-.19-.47 0-.19.06-.35.19-.47l11.45-11.45c3.88-3.88 4.83-9.78 2.34-14.68-1.49-2.95-2.77-6.03-3.8-9.16-1.71-5.21-6.55-8.72-12.04-8.72h-16.19c-.36 0-.67-.31-.67-.67v-22.44c0-.36.31-.67.67-.67h16.19c5.49 0 10.32-3.5 12.04-8.71 1.03-3.13 2.31-6.21 3.8-9.16 2.48-4.9 1.54-10.8-2.34-14.68l-11.45-11.45c-.16-.16-.19-.34-.19-.47 0-.19.06-.35.19-.47l15.87-15.87c.25-.25.69-.25.95 0l11.45 11.45c3.88 3.88 9.78 4.82 14.68 2.34 2.95-1.49 6.03-2.77 9.16-3.8 3.75-1.23 6.61-4.09 7.92-7.63.72.13 1.47.21 2.23.21h16.19c.34 0 .53.14.63.46 1.22 3.7 2.73 7.35 4.5 10.84.15.3.12.53-.12.77l-6.78 6.78c-1.31-.1-2.64-.16-3.95-.16-28.37 0-51.45 23.08-51.45 51.45 0 18.39 9.91 35.35 25.61 44.49-.35 1.61-.69 3.23-.99 4.86-.64 3.46-.96 6.96-1.05 10.48-.63-.3-1.27-.6-1.89-.91-4.92-2.5-10.82-1.55-14.7 2.33zm291.06 70.74c-.5 1.91-1.71 3.5-3.4 4.49-2.17 1.27-4.1 2.18-5.8 2.99-6.98 3.32-12.43 7.02-8.33 18.75 1.31 3.74.35 5.03-1.38 7.37-1.5 2.02-4 5.41-2.62 9.89.88 2.86.29 5.54-1.71 7.76-3.67 4.08-1.39 9.2.82 14.14 3.1 6.95 5.42 13.09 2.31 17.82-3.31 5.04-15.96 13.42-63.57 12.85l-6.07-.07v44.36h-138.97c17.34-30.83 20.69-72.96 7.92-108.51l-.14-.39-.19-.37c-3.21-6.12-6.59-12.24-10.17-18.72-17.49-31.65-35.57-64.37-30.34-92.85 7.68-41.83 33.96-73.47 72.1-86.8 44.14-15.44 96.37-3.43 136.3 31.34 33.22 28.92 41.99 54.65 29.31 86.02l-1.1 2.73 24.28 41.62c.99 1.69 1.25 3.67.75 5.58zm-145.92-155.19c-51.35 0-93.14 41.78-93.14 93.14 0 51.35 41.78 93.13 93.14 93.13s93.14-41.78 93.14-93.13c0-51.36-41.78-93.14-93.14-93.14zm0 174.27c-44.74 0-81.14-36.4-81.14-81.13s36.4-81.14 81.14-81.14 81.14 36.4 81.14 81.14-36.4 81.13-81.14 81.13zm29.28-94.9c-3.51-13.57-12.31-26.17-25.63-36.38-2.15-1.65-5.15-1.65-7.3 0-13.32 10.22-22.12 22.81-25.63 36.38-7.81-2.14-16.51-2.65-25.56-1.45-2.69.35-4.81 2.47-5.16 5.16-2.5 18.97 2.38 35.68 13.74 47.04 9.42 9.42 22.51 14.38 37.52 14.38 2.85 0 5.77-.19 8.74-.55 2.98.36 5.89.55 8.74.55 15.01 0 28.1-4.96 37.52-14.38 11.36-11.36 16.24-28.07 13.74-47.04-.35-2.69-2.47-4.81-5.16-5.16-9.05-1.19-17.75-.68-25.56 1.45zm-29.28-23.87c12.29 10.71 19.01 23.83 19.01 37.34s-6.71 26.63-19.01 37.34c-12.29-10.71-19.01-23.83-19.01-37.34s6.72-26.63 19.01-37.34zm-48.55 33.87c6.31-.35 12.26.35 17.57 2.02-.01.48-.02.96-.02 1.45 0 14.08 5.57 27.65 15.92 39.27-9.08-1.12-16.89-4.67-22.68-10.47-7.77-7.75-11.52-19.08-10.79-32.27zm86.33 32.27c-5.8 5.8-13.61 9.34-22.68 10.47 10.35-11.63 15.91-25.19 15.91-39.27 0-.48-.01-.96-.02-1.45 5.31-1.67 11.25-2.36 17.57-2.02.73 13.19-3.03 24.52-10.78 32.27z\"></path></svg>							\n												<h5>\n													Skill Development												</h5>\n											<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Tailored Approaches												</h5>\n											<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.</p>										\n		Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:30:01', '2026-06-17 10:30:01', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=534', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(535, 1, '2026-06-17 10:30:01', '2026-06-17 10:30:01', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />																<h2>Psychotherapy</h2>		<ul style=\"margin-left: 18px;\">\n 	<li>Individual therapy</li>\n 	<li>Couples/marriage therapy</li>\n 	<li>Family therapy</li>\n 	<li>Child/teen therapy</li>\n 	<li>Online therapy</li>\n 	<li>COMMON SPECIALTIES &amp; approaches</li>\n 	<li>Anxiety therapy</li>\n 	<li>Cognitive behavioral therapy (CBT)</li>\n 	<li>Depression counseling</li>\n 	<li>Dialectical behavior therapy (DBT)</li>\n 	<li>Grief &amp; loss counseling</li>\n 	<li>Relational therapy</li>\n</ul>			<h3>Therapy can be highly beneficial for mental health for several reasons:</h3>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 64 64.1999969\" width=\"512\"><path d=\"m51.2529297 42.0226555c.6357422-.6357422.9863281-1.4804688.9863281-2.3808594 0-.8994141-.3500977-1.7441406-.9863281-2.3808594-1.3125-1.3125-3.4492188-1.3125-4.7617188 0l-9.3178711 9.3173828c-.7426758.7441406-1.1518555 1.7314453-1.1518555 2.7822266v11.6396484c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-5.109375l11.5913086-11.5917969c.1875-.1875.2929688-.4414062.2929688-.7070312v-11.5488281c0-2.0097656-1.6347656-3.6445312-3.6445312-3.6445312s-3.6450195 1.6347656-3.6450195 3.6445312v8.6582031l-4.2260742 4.2255859c-.1459961.1455078-.3828125.1435547-.527832 0-.1455078-.1455078-.1455078-.3818359 0-.5273438zm-3.7910156 4.3183594c.9243164.9248047 2.4306641.9267578 3.355957 0l4.519043-4.5185547c.1875-.1875.2929688-.4414062.2929688-.7070312v-9.0722656c0-.9072266.737793-1.6445312 1.6450195-1.6445312.9067383 0 1.6445312.7373047 1.6445312 1.6445312v11.1347656l-11.5913086 11.5917968c-.1875.1875-.2929688.4414062-.2929688.7070312v4.5234375h-9.0136719v-10.6396484c0-.5166016.2011719-1.0029297.5664062-1.3681641l9.3173828-9.3173828c.5332031-.5332031 1.4008789-.5332031 1.9331055 0 .2583008.2587891.4008789.6015625.4008789.9667969s-.1420898.7089844-.4003906.9667969l-2.3769531 2.3769531c-.9252929.9248047-.9252929 2.4306641.0000001 3.3554688z\"></path><path d=\"m6.7250977 28.398632c-2.0097656 0-3.6445312 1.6347656-3.6445312 3.6445312v11.5488281c0 .265625.1054688.5195312.2929688.7070312l11.5913086 11.5917969v5.109375c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-11.6396483c0-1.0507812-.4091797-2.0380859-1.1523438-2.7822266l-9.3173828-9.3173828c-1.3125-1.3125-3.4487305-1.3125-4.762207 0-.6357422.6367188-.9858398 1.4814453-.9858398 2.3808594 0 .9003906.3505859 1.7451172.9863281 2.3808594l2.3769531 2.3769531c.1455078.1455078.1455078.3818359 0 .5273438s-.3823242.1435547-.527832 0l-4.2260742-4.2255859v-8.6582031c-.0000002-2.0097657-1.6352541-3.6445314-3.6450197-3.6445314zm6.4570312 17.9423829c.925293.9267578 2.4316406.9257812 3.355957 0 .925293-.9248047.925293-2.4306641 0-3.3554688l-2.3769531-2.3769531c-.2583008-.2578125-.4003906-.6015625-.4003906-.9667969s.1425781-.7080078.4003906-.9667969c.5332031-.5332031 1.4003906-.5332031 1.9335938 0l9.3168945 9.3173828c.3657227.3652344.5668945.8515625.5668945 1.3681641v10.6396484h-9.0136719v-4.5234375c0-.265625-.1054688-.5195312-.2929688-.7070312l-11.5913085-11.5917969v-11.1347656c0-.9072266.737793-1.6445312 1.6445312-1.6445312.9072266 0 1.6450195.7373047 1.6450195 1.6445312v9.0722656c0 .265625.1054688.5195312.2929688.7070312z\"></path><path d=\"m32 2.0998046c-10.0986328 0-18.3144531 8.2158203-18.3144531 18.3144531s8.2158203 18.3144525 18.3144531 18.3144525 18.3144531-8.2158203 18.3144531-18.3144531-8.2158203-18.3144525-18.3144531-18.3144525zm0 2.0000003c7.614502 0 14.0088501 5.2510376 15.798584 12.3173819-3.1233521-2.2542105-8.8903809-3.70996-15.798584-3.70996s-12.6752319 1.4557495-15.798584 3.70996c1.7897339-7.0663443 8.184082-12.3173819 15.798584-12.3173819zm16.3144531 16.3144521c0 2.6992188-6.7001953 5.7070312-16.3144531 5.7070312s-16.3144531-3.0078125-16.3144531-5.7070312 6.7001953-5.7070302 16.3144531-5.7070302 16.3144531 3.0078115 16.3144531 5.7070302zm-16.3144531 16.3144532c-7.614502 0-14.0088501-5.2510376-15.798584-12.3173828 3.1233521 2.2542114 8.8903809 3.7099609 15.798584 3.7099609s12.6752319-1.4557495 15.798584-3.7099609c-1.7897339 7.0663452-8.184082 12.3173828-15.798584 12.3173828z\"></path></svg>							\n												<h5>\n													Safe Space												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"friendship-work\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><circle cx=\"72\" cy=\"102\" r=\"4\"></circle><circle cx=\"64\" cy=\"50\" r=\"4\"></circle><path d=\"m228 98h4v4c0 2.211 1.789 4 4 4s4-1.789 4-4v-4h4c2.211 0 4-1.789 4-4s-1.789-4-4-4h-4v-4c0-2.211-1.789-4-4-4s-4 1.789-4 4v4h-4c-2.211 0-4 1.789-4 4s1.789 4 4 4z\"></path><path d=\"m132 218h-16v-5.977c0-13.759-8.223-25.608-20-30.964v-35.059c0-.031-.017-.057-.018-.088 4.839-3.653 8.018-9.396 8.018-15.912 0-2.211-1.789-4-4-4h-30.707c-7.328 0-13.293 5.965-13.293 13.293v25.953c0 5.361 2.096 10.206 5.444 13.892-14.614 3.818-25.444 17.092-25.444 32.885v49.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-49.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v9.977c0 2.211 1.789 4 4 4h8v8h-20v-17.582c0-2.211-1.789-4-4-4s-4 1.789-4 4v21.582 24c0 2.211 1.789 4 4 4s4-1.789 4-4v-20h32c6.617 0 12-5.383 12-12s-5.383-12-12-12zm-68-78.707c0-2.918 2.375-5.293 5.293-5.293h26.023c-1.652 4.656-6.102 8-11.316 8h-20zm12.754 38.707c-7.031 0-12.754-5.723-12.754-12.754v-15.246h24v28zm55.246 56h-4v-8h4c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m56 210c-2.211 0-4 1.789-4 4v48c0 2.211 1.789 4 4 4s4-1.789 4-4v-48c0-2.211-1.789-4-4-4z\"></path><path d=\"m238.009 178.998c3.704-3.95 5.991-9.243 5.991-15.072v-9.926c0-11.027-8.973-20-20-20s-20 8.973-20 20v27.06c-11.777 5.355-20 17.205-20 30.964v45.976c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v45.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-15.99-11.1-29.402-25.991-33.025zm-26.009-.998v-24c0-6.617 5.383-12 12-12s12 5.383 12 12v9.926c0 7.762-6.312 14.074-14.074 14.074z\"></path><path d=\"m204 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m244 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m185.41 118.613c.102-.242.203-.488.301-.734 5.809-.832 10.289-5.844 10.289-11.879 0-1.206-.223-2.353-.555-3.452 10.229-11.777 15.466-22.512 15.466-31.899-.001-20.208-15.274-36.649-34.048-36.649-7.633 0-14.91 2.711-20.863 7.707-5.953-4.996-13.23-7.707-20.863-7.707-18.773 0-34.047 16.441-34.047 36.648 0 9.39 5.238 20.125 15.465 31.903-.333 1.098-.555 2.244-.555 3.449 0 6.035 4.48 11.047 10.289 11.879.098.246.199.488.301.73-3.516 4.699-3.141 11.406 1.125 15.672 4.27 4.27 10.98 4.633 15.672 1.129.242.102.488.203.734.301.832 5.809 5.844 10.289 11.879 10.289s11.047-4.48 11.879-10.289c.246-.098.492-.199.734-.301 4.688 3.504 11.398 3.141 15.672-1.129 4.262-4.261 4.641-10.965 1.125-15.668zm-50.273-76.613c6.707 0 13.09 2.82 17.965 7.945 1.516 1.586 4.281 1.586 5.797 0 4.874-5.125 11.257-7.945 17.964-7.945 14.363 0 26.047 12.852 26.047 28.648 0 6.991-4.298 15.714-12.379 25.343-1.433-.939-3.052-1.616-4.82-1.87-.098-.246-.199-.488-.301-.73 3.516-4.699 3.141-11.406-1.125-15.672-4.273-4.27-10.984-4.637-15.672-1.129-.242-.102-.488-.203-.734-.301-.832-5.809-5.844-10.289-11.879-10.289s-11.047 4.48-11.879 10.289c-.246.098-.492.199-.734.301-4.691-3.508-11.402-3.141-15.672 1.129-4.262 4.262-4.641 10.965-1.125 15.668-.102.242-.203.488-.301.734-1.769.253-3.387.931-4.821 1.87-8.079-9.625-12.378-18.35-12.378-25.343 0-15.796 11.683-28.648 26.047-28.648zm47.687 68c-1.77 0-3.328 1.16-3.832 2.855-.488 1.629-1.117 3.16-1.875 4.555-.848 1.562-.562 3.492.695 4.746l.812.812c1.562 1.559 1.562 4.098.004 5.656-1.562 1.566-4.098 1.559-5.66 0l-.82-.82c-1.254-1.254-3.18-1.535-4.73-.691-1.426.773-2.957 1.402-4.555 1.875-1.699.504-2.863 2.062-2.863 3.836v1.176c0 2.207-1.793 4-4 4s-4-1.793-4-4v-1.176c0-1.773-1.164-3.332-2.863-3.836-1.598-.473-3.129-1.102-4.555-1.875-.598-.324-1.254-.48-1.902-.48-1.035 0-2.059.402-2.828 1.172l-.82.82c-1.559 1.559-4.094 1.566-5.66 0-1.559-1.559-1.559-4.098-.008-5.648l.824-.82c1.258-1.254 1.543-3.184.695-4.746-.758-1.395-1.387-2.926-1.875-4.555-.504-1.695-2.062-2.855-3.832-2.855h-1.176c-2.207 0-4-1.793-4-4s1.793-4 4-4h1.176c1.77 0 3.328-1.16 3.832-2.855.488-1.629 1.117-3.16 1.875-4.555.848-1.562.562-3.492-.695-4.746l-.812-.812c-1.562-1.559-1.562-4.098-.004-5.656 1.57-1.562 4.105-1.559 5.66 0l.82.82c1.25 1.25 3.18 1.531 4.73.691 1.426-.773 2.957-1.402 4.555-1.875 1.699-.504 2.863-2.062 2.863-3.836v-1.177c0-2.207 1.793-4 4-4s4 1.793 4 4v1.176c0 1.773 1.164 3.332 2.863 3.836 1.598.473 3.129 1.102 4.555 1.875 1.555.844 3.48.562 4.73-.691l.82-.82c1.562-1.559 4.098-1.566 5.66 0 1.559 1.559 1.559 4.098.008 5.648l-.824.82c-1.258 1.254-1.543 3.184-.695 4.746.758 1.395 1.387 2.926 1.875 4.555.504 1.695 2.062 2.855 3.832 2.855h1.176c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m156 90c-8.824 0-16 7.176-16 16s7.176 16 16 16 16-7.176 16-16-7.176-16-16-16zm0 24c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path></g></svg>							\n												<h5>\n													Emotional Support												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m206.102 400.162c-46.373 0-92.751-17.652-128.056-52.957-34.207-34.208-53.046-79.687-53.046-128.061s18.839-93.853 53.046-128.06c70.615-70.615 185.512-70.605 256.117 0 70.614 70.614 70.614 185.507 0 256.121-35.305 35.305-81.683 52.957-128.061 52.957zm0-346.791c-42.47 0-84.94 16.167-117.271 48.498-64.665 64.666-64.665 169.885 0 234.551 64.666 64.666 169.891 64.661 234.547 0 31.328-31.328 48.578-72.978 48.578-117.276 0-44.297-17.25-85.947-48.578-117.275-32.33-32.331-74.801-48.498-117.276-48.498z\"></path><path d=\"m206.102 357.901c-37.063 0-71.905-14.435-98.109-40.643-54.098-54.1-54.098-142.128 0-196.227 54.1-54.1 142.124-54.09 196.223 0 54.1 54.099 54.1 142.128 0 196.227-26.208 26.208-61.051 40.643-98.114 40.643zm0-262.194c-31.626 0-63.25 12.036-87.324 36.109-48.151 48.156-48.151 126.502 0 174.657 23.323 23.328 54.338 36.174 87.324 36.174s64.001-12.845 87.329-36.174c48.151-48.156 48.151-126.502 0-174.657-24.078-24.073-55.703-36.109-87.329-36.109z\"></path><path d=\"m297.428 421.907c-8.813 0-17.618-3.352-24.326-10.061-2.978-2.978-2.978-7.805 0-10.785 2.98-2.98 7.806-2.98 10.786 0 7.468 7.468 19.619 7.468 27.087 0l77.045-77.05c3.615-3.62 5.606-8.427 5.606-13.54 0-5.115-1.991-9.921-5.606-13.541-2.979-2.98-2.979-7.805 0-10.785 2.98-2.979 7.806-2.979 10.785 0 13.412 13.412 13.412 35.241 0 48.652l-77.045 77.05c-6.709 6.707-15.523 10.06-24.332 10.06z\"></path><path d=\"m402.881 461.874c-12.275 0-23.809-4.783-32.489-13.462l-47.992-47.991c-2.979-2.98-2.979-7.805 0-10.785l54.194-54.193c2.979-2.979 7.805-2.979 10.785 0l47.992 47.991c8.679 8.68 13.461 20.215 13.461 32.49s-4.782 23.809-13.461 32.489c-8.68 8.679-20.216 13.461-32.49 13.461zm-64.303-66.846 42.599 42.599c11.967 11.967 31.442 11.967 43.408 0 11.968-11.968 11.968-31.442 0-43.408l-42.599-42.6z\"></path><path d=\"m467.373 461.874h-355.566c-4.211 0-7.627-3.417-7.627-7.628s3.416-7.627 7.627-7.627h355.566c4.211 0 7.627 3.416 7.627 7.627s-3.416 7.628-7.627 7.628z\"></path><path d=\"m401.258 421.926c-1.951 0-3.904-.744-5.392-2.234l-21.675-21.679c-2.98-2.979-2.98-7.806 0-10.786 2.979-2.979 7.805-2.979 10.785 0l21.675 21.68c2.98 2.979 2.98 7.805 0 10.785-1.491 1.489-3.442 2.234-5.393 2.234z\"></path><path d=\"m206.102 305.102c-.814 0-1.628-.129-2.413-.392-3.814-1.272-41.556-24.446-49.383-62.342-6.668-32.305 9.048-65.739 46.716-99.385 2.89-2.583 7.269-2.583 10.16 0 37.668 33.641 53.384 67.079 46.715 99.38-7.826 37.897-45.569 61.076-49.383 62.347-.783.263-1.598.392-2.412.392zm0-146.07c-27.603 26.133-40.27 51.358-37.674 75.049 3.138 28.626 28.11 47.967 37.674 54.392 9.564-6.426 34.541-25.762 37.679-54.392 2.597-23.691-10.075-48.916-37.679-75.049z\"></path><path d=\"m212.691 305.102c-3.48 0-5.675-.164-6.082-.198-2.652-.224-5.001-1.813-6.192-4.192-.029-.06-.243-.501-.268-.561-1.658-3.541-.373-7.757 2.979-9.768 10.835-6.515 63.212-41.869 30.112-98.402-1.073-1.832-1.331-4.027-.715-6.062.615-2.031 2.045-3.715 3.957-4.648 14.42-7.027 32.256-12.021 53.007-14.842 3.889-.571 7.478 1.927 8.427 5.685 11.51 45.499 7.364 80.353-12.324 103.586-22.525 26.577-58.58 29.402-72.901 29.402zm37.744-113.333c22.007 44.953-.696 78.336-19.848 96.52 13.933-2.384 31.348-8.268 43.364-22.45 15.403-18.178 19.019-46.169 10.775-83.267-12.915 2.146-24.4 5.225-34.291 9.197z\"></path><path d=\"m199.553 305.102c-14.291 0-50.42-2.82-72.944-29.416-19.678-23.233-23.824-58.082-12.314-103.571.948-3.758 4.509-6.256 8.422-5.685 20.756 2.821 38.592 7.816 53.012 14.842 1.912.933 3.342 2.617 3.958 4.648.615 2.035.358 4.23-.715 6.062-33.1 56.533 19.276 91.887 30.111 98.402 3.392 2.036 4.662 6.332 2.925 9.887-1.182 2.413-3.734 4.409-6.411 4.633-.408.035-2.589.198-6.044.198zm-72.07-122.529c-8.243 37.088-4.633 65.079 10.765 83.257 12.007 14.177 29.426 20.066 43.364 22.45-19.147-18.184-41.849-51.562-19.837-96.51-9.892-3.973-21.371-7.052-34.292-9.197z\"></path><path d=\"m205.154 304.547c-4.211 0-7.627-3.417-7.627-7.628v-71.533c0-4.211 3.416-7.627 7.627-7.627s7.628 3.416 7.628 7.627v71.533c-.001 4.211-3.417 7.628-7.628 7.628z\"></path></g></svg>							\n												<h5>\n													Self-Exploration												</h5>\n											<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m295.544 178.256a6.741 6.741 0 0 0 -3.689-3.623 6.718 6.718 0 0 0 -8.727 3.475c-.058.16-.123.319-.193.475a6.715 6.715 0 0 0 3.572 8.482q.238.087.473.192a6.789 6.789 0 0 0 8.569-9zm4.657-15.648a21.3 21.3 0 0 1 -18.927 38.018l-.027-.012a21.345 21.345 0 0 1 -11.856-27.305 7.1 7.1 0 0 1 .358-.879 21.238 21.238 0 0 1 11.277-11.14 21.465 21.465 0 0 1 4.89-1.409 108.471 108.471 0 0 1 110.169-79.395l-7.5-9.84a7.256 7.256 0 0 1 11.533-8.807l18.139 23.785a7.255 7.255 0 0 1 -1.364 10.17l-23.793 18.138a7.256 7.256 0 0 1 -8.8-11.532l9.821-7.488a94.123 94.123 0 0 0 -93.917 67.7zm-136.607 130.062c-1.181-.462-2.53-.937-4.2-1.439-1.749-.526-3.761-1.034-5.893-1.571-2.249-.568-4.622-1.167-6.887-1.817a81.221 81.221 0 0 1 -7.736-2.626 52.681 52.681 0 0 1 -7.96-3.915 57.093 57.093 0 0 1 -5.122-3.558 19.314 19.314 0 0 1 -2.1 3.175 29.979 29.979 0 0 1 -4.78 4.617c-1.583 1.254-3.581 2.64-5.787 4.091-1.069.7-2 1.305-2.835 1.842v15.331a30.06 30.06 0 0 0 7.975 20.595 25.087 25.087 0 0 0 37.345 0 30.056 30.056 0 0 0 7.976-20.595v-14.13zm-3.794 117.75q-.863.314-1.737.606a66.691 66.691 0 0 1 -42.171 0q-.874-.292-1.736-.606 8.1 16.046 22.822 31.483 14.722-15.438 22.822-31.483zm-44.516-66.689-1.446 6.36a26.013 26.013 0 0 1 -8.247 14.073q-.63.554-1.295 1.069a86.352 86.352 0 0 0 2.3 24.838 49.4 49.4 0 0 0 13.842 7.2 53.4 53.4 0 0 0 33.079 0 49.4 49.4 0 0 0 13.842-7.2 86.282 86.282 0 0 0 2.3-24.786q-.7-.539-1.362-1.121a26.01 26.01 0 0 1 -8.247-14.073l-1.446-6.36a39.133 39.133 0 0 1 -43.323 0zm102.131 19.247c21.553 5.007 34.482 13.526 35.172 45.641v.142h.028v79.966a7.273 7.273 0 0 1 -7.272 7.273h-216.795a7.273 7.273 0 0 1 -7.273-7.273v-79.966a7.309 7.309 0 0 1 .049-.842c.911-33.257 15.2-40.822 38.733-45.728.5-7.586 1.773-17.265 3.2-28.09 2.421-18.4 5.3-40.261 5.3-60.319a67.9 67.9 0 0 1 19.627-47.875 66.563 66.563 0 0 1 94.957 0 67.889 67.889 0 0 1 19.627 47.875c0 22.494 5.342 45.587 9.591 63.955 2.279 9.851 4.261 18.419 5.062 25.241zm-46.7-31.379a44.85 44.85 0 0 0 7.42-24.8v-18.92a7.275 7.275 0 0 0 -4.889-6.873c-1.2-.525-2.455-1.065-4.1-1.717-1.832-.726-3.692-1.4-5.606-1.978-2.014-.606-4.2-1.158-6.517-1.742-2.01-.507-4.13-1.042-6.433-1.7-2.252-.647-4.44-1.344-6.372-2.113a37.981 37.981 0 0 1 -5.745-2.837 66.527 66.527 0 0 1 -8.659-6.687c-.68-.593-.82-.722-1.072-.939l.012-.014a14.573 14.573 0 0 0 -4.812-3.1c-6.5-2.195-9.224.041-10.259 6.5a21.51 21.51 0 0 0 -.208 2.607 14.785 14.785 0 0 1 -.37 3.3 3.848 3.848 0 0 1 -.715 1.241 16.145 16.145 0 0 1 -2.507 2.344c-1.423 1.129-3.022 2.244-4.707 3.353-1.127.741-3.346 2.131-5.627 3.557a7.274 7.274 0 0 0 -3.8 6.392v19.327a44.847 44.847 0 0 0 7.42 24.8l-3.479 15.309a11.711 11.711 0 0 1 -3.7 6.345 18.2 18.2 0 0 1 -8.506 3.875c-3.592.726-8.189 1.542-12.649 2.326.575-6.608 1.632-14.641 2.8-23.479 2.5-19 5.467-41.557 5.467-62.194a53.45 53.45 0 0 1 15.423-37.7 52.155 52.155 0 0 1 74.275 0 53.45 53.45 0 0 1 15.423 37.7c0 24.013 5.564 48.064 9.989 67.193 1.675 7.243 3.177 13.738 4.1 19.051l-2.054-.362c-4.821-.846-9.929-1.744-13.842-2.535a18.2 18.2 0 0 1 -8.506-3.875 11.711 11.711 0 0 1 -3.7-6.345l-3.482-15.31zm-41.01 149.856h-45.614a7.289 7.289 0 0 0 -.715-1.2 26.958 26.958 0 0 1 -5.261-16.38q0-9.969 5.972-22.523a7.256 7.256 0 0 0 -13.125-6.193q-7.392 15.54-7.393 28.716a41.569 41.569 0 0 0 3.738 17.583h-31.487v-72.697c0-.137 0-.274-.012-.41.791-27.416 16-30.094 40.333-34.368 3.862-.679 7.947-1.4 13.53-2.518a102.527 102.527 0 0 0 9.229 40.627q10.013 22.326 30.808 43.123v26.24zm14.545-26.241q20.795-20.795 30.808-43.121a102.527 102.527 0 0 0 9.226-40.616c5.55 1.115 9.617 1.83 13.466 2.506 24.453 4.3 39.695 6.976 40.344 34.778h-.024v72.694h-31.422a41.554 41.554 0 0 0 3.738-17.583q0-13.176-7.392-28.716a7.256 7.256 0 1 0 -13.125 6.193q5.971 12.554 5.972 22.523a26.959 26.959 0 0 1 -5.262 16.38 7.359 7.359 0 0 0 -.715 1.2h-45.614zm314.57-424.669a17.825 17.825 0 0 1 12.368 4.889 15.841 15.841 0 0 1 4.992 11.445v162.839a15.841 15.841 0 0 1 -4.992 11.445 17.821 17.821 0 0 1 -12.368 4.889h-92.395a7.234 7.234 0 0 0 -3.9 1.136l-22.385 12.384q-.276.151-.532.323l-36.3 20.086v-26.656a7.273 7.273 0 0 0 -7.273-7.273h-55.544a17.824 17.824 0 0 1 -12.368-4.889 15.844 15.844 0 0 1 -4.991-11.445v-162.839a15.842 15.842 0 0 1 4.991-11.445 17.829 17.829 0 0 1 12.368-4.889zm-218.329-14.545h218.329a32.378 32.378 0 0 1 22.425 8.979 30.272 30.272 0 0 1 9.48 21.9v162.839a30.268 30.268 0 0 1 -9.48 21.9 32.375 32.375 0 0 1 -22.425 8.98h-90.544l-21.149 11.7q-.257.141-.518.259l-47.084 26.051a7.236 7.236 0 0 1 -10.73-6.335h-.037v-31.673h-48.267a32.378 32.378 0 0 1 -22.425-8.98 30.272 30.272 0 0 1 -9.48-21.9v-162.841a30.268 30.268 0 0 1 9.48-21.9 32.378 32.378 0 0 1 22.425-8.979zm53.254 72.778-10.193-10.192 10.193-10.193a7.272 7.272 0 0 0 -10.285-10.284l-10.192 10.191-10.192-10.19a7.272 7.272 0 0 0 -10.284 10.284l10.192 10.192-10.192 10.191a7.272 7.272 0 0 0 10.284 10.284l10.192-10.191 10.192 10.192a7.272 7.272 0 0 0 10.285-10.284zm123.469 89.042-10.192-10.192 10.192-10.193a7.272 7.272 0 0 0 -10.284-10.284l-10.192 10.192-10.192-10.191a7.272 7.272 0 1 0 -10.284 10.284l10.192 10.192-10.192 10.191a7.272 7.272 0 1 0 10.284 10.281l10.192-10.191 10.192 10.191a7.272 7.272 0 0 0 10.284-10.284z\" fill-rule=\"evenodd\"></path></svg>							\n												<h5>\n													Coping Strategies												</h5>\n											<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M248.298,398.776v-96.35c0-5.971-2.694-11.517-7.393-15.216l-59.928-47.132c-2.984-2.348-7.254-2.094-9.939,0.592   l-14.349,14.349c-2.986,2.985-4.637,7.118-4.53,11.338c0.106,4.215,1.961,8.252,5.079,11.069l30.406,27.556l-1.867,1.93   c-1.111,1.149-2.665,1.808-4.265,1.808h-5.366c-4.046,0-7.953-1.201-11.299-3.474l-66.646-45.245   c-1.237-0.838-1.976-2.237-1.976-3.742v-42.516c0-8.724-7.102-15.821-15.832-15.821h-23.54c-4.142,0-7.5,3.358-7.5,7.5v72.637   c0,6.404,3.145,12.405,8.408,16.048l46.124,31.979c3.404,2.359,8.077,1.513,10.437-1.89c2.36-3.404,1.514-8.077-1.89-10.437   l-46.128-31.982c-1.222-0.846-1.951-2.235-1.951-3.718v-65.137h16.039c0.458,0,0.832,0.368,0.832,0.821v42.516   c0,6.486,3.2,12.526,8.556,16.155l66.64,45.241c5.84,3.967,12.661,6.064,19.726,6.064h5.366c5.643,0,11.128-2.326,15.047-6.38   l2.254-2.331c2.749-2.837,4.193-6.572,4.066-10.518c-0.127-3.948-1.811-7.585-4.741-10.242l-30.836-27.946   c-0.039-0.036-0.143-0.129-0.148-0.327c-0.005-0.206,0.101-0.312,0.141-0.352l9.642-9.642l54.693,43.015   c1.061,0.834,1.668,2.084,1.668,3.427v88.844h-60.32v-24.995c0-6.607-3.24-12.792-8.658-16.538l-27.532-19.089   c-3.405-2.36-8.077-1.514-10.437,1.89s-1.514,8.077,1.89,10.437l27.541,19.095c1.375,0.951,2.196,2.522,2.196,4.205v24.995h-3.726   c-4.142,0-7.5,3.358-7.5,7.5v58.66c0,0.033,0.004,0.064,0.005,0.097V504.5c0,4.142,3.358,7.5,7.5,7.5h25.971   c4.142,0,7.5-3.358,7.5-7.5c0-4.142-3.358-7.5-7.5-7.5h-18.471v-47.64h71.535v8.07c0,0.016,0.002,0.032,0.002,0.048V497h-23.519   c-4.142,0-7.5,3.358-7.5,7.5c0,4.142,3.358,7.5,7.5,7.5h31.019c4.142,0,7.5-3.358,7.5-7.5v-62.64c0-0.016-0.002-0.032-0.002-0.048   v-42.92C248.293,398.853,248.298,398.815,248.298,398.776z M233.292,434.359h-71.54V406.27h3.62c0.036,0,0.07,0.005,0.106,0.005   h67.814V434.359z\"></path>	</g></g><g>	<g>		<path d=\"M455.147,197.92h-23.535c-8.728,0-15.828,7.101-15.828,15.828v42.51c0,1.501-0.742,2.9-1.984,3.744l-66.637,45.24   c-3.349,2.273-7.258,3.475-11.304,3.475h-5.362c-1.604,0-3.162-0.66-4.279-1.813l-1.862-1.922l30.408-27.549   c3.125-2.831,4.977-6.871,5.08-11.085c0.104-4.215-1.546-8.342-4.526-11.324l-14.354-14.354c-2.687-2.686-6.956-2.939-9.94-0.592   l-47.179,37.107l-12.747,10.025c-4.695,3.693-7.389,9.238-7.389,15.211v96.35c0,0.02,0.003,0.038,0.003,0.058v42.972   c0,0.02-0.003,0.038-0.003,0.058v62.64c0,4.142,3.357,7.5,7.5,7.5h86.538c4.143,0,7.5-3.358,7.5-7.5v-46.973   c0-0.033,0.005-0.064,0.005-0.097v-58.66c0-4.142-3.357-7.5-7.5-7.5h-3.729v-24.994c0-1.68,0.824-3.254,2.204-4.211l98.021-67.96   c5.26-3.647,8.4-9.646,8.4-16.046V205.42C462.647,201.278,459.29,197.92,455.147,197.92z M350.247,497h-71.538v-39.512   c0-0.02,0.003-0.038,0.003-0.058v-8.07h71.535V497z M350.252,434.36h-71.54v-28.088h67.811c0.013,0,0.026-0.002,0.039-0.002h3.69   V434.36z M447.65,278.059h-0.003c0,1.483-0.728,2.874-1.947,3.719l-98.021,67.961c-5.42,3.759-8.656,9.941-8.656,16.538v24.994   H278.71v-88.848c0-1.343,0.605-2.591,1.662-3.421l12.747-10.025l41.946-32.992l9.646,9.646c0.039,0.04,0.144,0.144,0.139,0.347   s-0.114,0.302-0.155,0.339l-30.83,27.931c-2.928,2.653-4.611,6.289-4.74,10.238c-0.128,3.95,1.314,7.688,4.065,10.527l2.256,2.328   c3.924,4.053,9.41,6.377,15.053,6.377h5.362c7.062,0,13.884-2.097,19.729-6.064l66.638-45.241   c5.359-3.639,8.559-9.677,8.559-16.154v-42.51c0-0.457,0.371-0.828,0.828-0.828h16.035V278.059z\"></path>	</g></g><g>	<g>		<path d=\"M256.002,0c-55.95,0-102.985,41.857-109.407,97.364c-0.476,4.115,2.474,7.836,6.588,8.313   c4.12,0.482,7.836-2.474,8.313-6.588C167.042,51.15,207.671,15,256.002,15c52.466,0,95.15,42.684,95.15,95.15   c0,41.507-26.532,77.917-66.021,90.603c-1.723,0.553-3.187,1.71-4.123,3.258l-25.006,41.333l-25.006-41.333   c-0.937-1.548-2.401-2.705-4.123-3.258c-33.804-10.859-58.561-39.313-64.609-74.259c-0.707-4.082-4.587-6.812-8.669-6.111   c-4.082,0.707-6.817,4.588-6.111,8.669c6.842,39.527,34.351,71.881,72.103,85.076l30,49.587c1.358,2.246,3.792,3.618,6.417,3.618   s5.059-1.372,6.417-3.618l29.999-49.587c44.219-15.453,73.732-56.883,73.732-103.978C366.152,49.413,316.739,0,256.002,0z\"></path>	</g></g><g>	<g>		<path d=\"M315.754,102.65h-10.565c-1.234-8.128-4.447-15.612-9.123-21.955l7.492-7.492c2.929-2.929,2.929-7.678,0-10.606   c-2.93-2.929-7.678-2.929-10.607,0l-7.491,7.491c-6.343-4.676-13.827-7.888-21.955-9.123V50.4c0-4.142-3.357-7.5-7.5-7.5   c-4.142,0-7.5,3.358-7.5,7.5v10.565c-8.128,1.234-15.612,4.447-21.955,9.123l-7.491-7.491c-2.929-2.929-7.678-2.929-10.606,0   c-2.929,2.929-2.929,7.678,0,10.606l7.491,7.491c-4.676,6.343-7.889,13.828-9.123,21.956c0,0-10.569,0-10.569,0   c-4.142,0-7.5,3.358-7.5,7.5c0,4.142,3.358,7.5,7.5,7.5h10.565c1.234,8.128,4.447,15.613,9.123,21.956l-7.491,7.491   c-2.929,2.929-2.929,7.678,0,10.606c1.464,1.464,3.384,2.197,5.303,2.197s3.839-0.732,5.303-2.197l7.491-7.491   c6.343,4.676,13.828,7.889,21.956,9.123V169.9c0,4.142,3.358,7.5,7.5,7.5c4.143,0,7.5-3.358,7.5-7.5v-10.565   c8.128-1.234,15.612-4.447,21.956-9.123l7.491,7.491c1.465,1.464,3.385,2.197,5.304,2.197c1.919,0,3.839-0.732,5.304-2.197   c2.929-2.929,2.929-7.678,0-10.606l-7.491-7.491c4.676-6.343,7.889-13.828,9.123-21.956h10.565c4.143,0,7.5-3.358,7.5-7.5   C323.254,106.008,319.897,102.65,315.754,102.65z M290.751,110.164c-0.007,19.151-15.586,34.731-34.738,34.738   c-0.004,0-0.009-0.001-0.013-0.001c-0.004,0-0.009,0.001-0.013,0.001c-19.151-0.007-34.731-15.586-34.738-34.738   c0-0.004,0.001-0.009,0.001-0.013c0-0.004-0.001-0.008-0.001-0.013c0.009-19.154,15.592-34.735,34.746-34.738   c0.002,0,0.004,0,0.006,0s0.004,0,0.006,0c19.155,0.004,34.737,15.584,34.744,34.738c0,0.004-0.001,0.008-0.001,0.013   C290.75,110.155,290.751,110.16,290.751,110.164z\"></path>	</g></g><g>	<g>		<path d=\"M256.002,85.119c-13.802,0-25.032,11.229-25.032,25.031c0,13.803,11.229,25.032,25.032,25.032   c13.803,0,25.031-11.229,25.031-25.031C281.033,96.348,269.804,85.119,256.002,85.119z M256.002,120.182   c-5.532,0-10.032-4.5-10.032-10.031c0-5.532,4.5-10.032,10.032-10.032c5.531,0,10.031,4.5,10.031,10.032   C266.033,115.682,261.533,120.182,256.002,120.182z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>							\n												<h5>\n													Goal Setting												</h5>\n											<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xodm=\"http://www.corel.com/coreldraw/odm/2003\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_2077007814064\"><g id=\"_200306976\"><path d=\"m256 319.44c-1.59 0-3.12-.63-4.24-1.75-11.13-11.13-22.33-21.98-33.17-32.48-62.94-60.98-117.31-113.65-117.31-179.39 0-44.31 36.05-80.35 80.36-80.35 37.74 0 57.46 18.43 74.36 48.87 16.9-30.44 36.62-48.87 74.35-48.87 44.31 0 80.36 36.04 80.36 80.35 0 65.74-54.36 118.41-117.31 179.39-10.83 10.49-22.03 21.35-33.16 32.48-1.12 1.12-2.65 1.75-4.24 1.75zm-74.36-281.97c-37.69 0-68.35 30.66-68.35 68.35 0 60.66 52.67 111.69 113.65 170.77 9.5 9.2 19.27 18.67 29.06 28.39 9.78-9.72 19.56-19.19 29.06-28.39 60.98-59.08 113.65-110.11 113.65-170.77 0-37.69-30.66-68.35-68.35-68.35-31.58 0-49.63 13.72-68.99 52.45-1.02 2.03-3.1 3.31-5.37 3.31s-4.35-1.28-5.37-3.31c-19.36-38.73-37.41-52.45-68.99-52.45z\"></path></g><g><g id=\"_200307000\"><path d=\"m268.35 249.13h-24.7c-3.32 0-6-2.68-6-6v-11.56c-2.07-.72-4.09-1.56-6.06-2.51l-8.18 8.18c-1.13 1.12-2.65 1.75-4.25 1.75-1.59 0-3.11-.63-4.24-1.75l-17.47-17.47c-2.34-2.34-2.34-6.14 0-8.49l8.18-8.18c-.95-1.97-1.79-3.99-2.51-6.06h-11.57c-3.31 0-6-2.68-6-6v-24.7c0-3.32 2.69-6 6-6h11.57c.72-2.07 1.56-4.09 2.51-6.06l-8.18-8.18c-1.13-1.13-1.76-2.65-1.76-4.24 0-1.6.63-3.12 1.76-4.25l17.47-17.47c2.34-2.34 6.14-2.34 8.49 0l8.18 8.18c1.96-.95 3.99-1.79 6.05-2.51v-11.56c0-3.32 2.69-6 6-6h24.71c3.31 0 6 2.68 6 6v11.56c2.07.72 4.09 1.56 6.06 2.51l8.18-8.18c1.12-1.12 2.65-1.76 4.24-1.76s3.12.64 4.24 1.76l17.48 17.47c1.12 1.13 1.75 2.65 1.75 4.25 0 1.59-.63 3.11-1.75 4.24l-8.19 8.18c.96 1.97 1.8 3.99 2.52 6.06h11.56c3.32 0 6 2.68 6 6v24.7c0 3.32-2.68 6-6 6h-11.56c-.72 2.07-1.56 4.09-2.52 6.06l8.19 8.18c1.12 1.13 1.75 2.65 1.75 4.24 0 1.6-.63 3.12-1.75 4.25l-17.47 17.47c-2.35 2.34-6.15 2.34-8.49 0l-8.18-8.18c-1.97.95-3.99 1.79-6.06 2.51v11.57c0 3.31-2.69 5.99-6 5.99zm-18.7-12h12.7v-10.02c0-2.74 1.86-5.14 4.52-5.82 4.06-1.03 7.95-2.64 11.56-4.79 2.36-1.4 5.37-1.02 7.31.92l7.09 7.09 8.99-8.99-7.09-7.09c-1.94-1.94-2.32-4.95-.92-7.31 2.15-3.6 3.76-7.49 4.79-11.56.68-2.66 3.07-4.52 5.82-4.52h10.02v-12.7h-10.02c-2.75 0-5.14-1.87-5.82-4.52-1.03-4.07-2.64-7.95-4.79-11.56-1.4-2.36-1.03-5.37.92-7.31l7.09-7.1-8.99-8.98-7.09 7.09c-1.94 1.94-4.95 2.32-7.31.92-3.61-2.15-7.5-3.77-11.56-4.8-2.66-.67-4.52-3.07-4.52-5.81v-10.03h-12.7v10.03c0 2.74-1.87 5.14-4.53 5.81-4.05 1.04-7.94 2.65-11.55 4.8-2.36 1.4-5.37 1.02-7.31-.92l-7.1-7.09-8.98 8.99 7.09 7.09c1.94 1.94 2.32 4.95.92 7.31-2.15 3.61-3.76 7.5-4.8 11.55-.67 2.66-3.07 4.53-5.81 4.53h-10.02v12.7h10.02c2.74 0 5.14 1.86 5.81 4.52 1.04 4.06 2.65 7.95 4.8 11.56 1.4 2.36 1.02 5.37-.92 7.31l-7.09 7.09 8.98 8.99 7.1-7.09c1.94-1.94 4.95-2.32 7.31-.92 3.61 2.15 7.5 3.76 11.56 4.79 2.66.68 4.52 3.08 4.52 5.82z\"></path></g><g id=\"_200306760\"><path d=\"m256 215.48c-20.29 0-36.8-16.5-36.8-36.79s16.51-36.8 36.8-36.8 36.79 16.51 36.79 36.8-16.5 36.79-36.79 36.79zm0-61.59c-13.67 0-24.8 11.13-24.8 24.8s11.13 24.79 24.8 24.79 24.79-11.12 24.79-24.79-11.12-24.8-24.79-24.8z\"></path></g></g><g id=\"_200306784\"><path d=\"m461.9 340.14c-.4 0-.8-.04-1.21-.12-2.77-.57-4.77-3.01-4.79-5.84-.01-.8-.54-16.35-18.14-25.35-4.77 6.05-14.98 15.83-31.26 15.83-7.09 0-14.53-1.91-22.17-5.68-1.97 2.49-4.39 6.45-4.71 11.19-.17 2.67-2.1 4.89-4.71 5.46-2.62.57-5.29-.67-6.56-3.03-.73-1.35-17.54-33.58 6.24-66.87.25-.34.54-.67.85-.95.53-.48 13.04-11.64 29.73-11.64 8.33 0 16.16 2.73 23.32 8.11 6.78.84 29.41 4.94 40.34 22.87 8.21 13.48 7.74 31.11-1.42 52.39-.96 2.24-3.15 3.63-5.51 3.63zm-26.24-44.82c.73 0 1.45.13 2.16.41 12.4 4.82 19.68 12.11 23.97 19.04 1.81-9.72.76-17.87-3.18-24.36-9.39-15.48-32.65-17.38-32.88-17.39-1.23-.09-2.4-.56-3.35-1.33-5.36-4.35-11.14-6.55-17.2-6.55-10.52 0-19.21 6.52-21.25 8.17-10.03 14.4-10.85 28.57-9.39 38.73 2.4-3.14 4.55-4.96 4.74-5.12 1.93-1.61 4.66-1.85 6.84-.59 7.27 4.2 14.13 6.33 20.38 6.33 15.81 0 23.56-13.64 23.88-14.22 1.09-1.97 3.15-3.12 5.28-3.12z\"></path></g><g id=\"_200307264\"><path d=\"m419.46 411.58c-.16 0-.32 0-.48 0-10.3-.15-20.06-5.17-28.23-14.52-7.44-8.5-13.2-20.37-16.78-34.51-9.81-1.95-15.33-9.01-16.53-15.9-1.66-9.54 3.98-18.57 14.03-22.48 3.08-1.2 6.56.33 7.76 3.42s-.33 6.56-3.41 7.77c-5.64 2.19-7.06 6.34-6.56 9.23.53 3.02 3.36 6.31 9.74 6.48 2.77.08 5.12 2.03 5.71 4.73 5.7 26.37 19.22 43.55 34.45 43.78h.29c14.2 0 26.75-15.15 32.81-39.65.62-2.5 2.75-4.32 5.31-4.54 5.81-.5 8.33-3.74 8.74-6.61.43-2.97-1.08-6.91-6.58-9.05-3.09-1.2-4.62-4.68-3.42-7.76 1.2-3.09 4.68-4.62 7.77-3.42 9.78 3.8 15.45 12.62 14.11 21.93-1.15 8.02-6.99 14.03-15.29 16.15-7.91 27.89-24.31 44.95-43.44 44.95z\"></path></g><g id=\"_200306808\"><path d=\"m332.55 486.53c-1.59 0-3.11-.63-4.24-1.75-1.12-1.13-1.76-2.65-1.76-4.25 0-44.88 21.25-52.28 38.32-58.24 13.67-4.77 23.55-8.21 24.07-29.7.08-3.31 2.86-5.89 6.15-5.85 3.31.08 5.93 2.83 5.85 6.15-.73 29.78-17.41 35.6-32.12 40.73-15.3 5.34-28.64 9.99-30.13 40.91h161.17c-1.49-30.92-14.83-35.57-30.13-40.91-14.73-5.13-31.42-10.96-32.12-40.8-.08-3.31 2.54-6.06 5.85-6.14 3.31-.11 6.06 2.54 6.14 5.86.51 21.53 10.4 24.98 24.08 29.75 17.07 5.96 38.32 13.36 38.32 58.24 0 3.31-2.69 6-6 6z\"></path></g><g id=\"_200306616\"><path d=\"m419.27 443.04c-15.8 0-30.68-6.12-41.9-17.25-2.36-2.33-2.38-6.13-.04-8.48 2.33-2.35 6.13-2.37 8.48-.04 8.96 8.88 20.85 13.77 33.46 13.77 12.62 0 24.5-4.89 33.46-13.77 2.36-2.33 6.16-2.31 8.49.04s2.31 6.15-.04 8.48c-11.22 11.13-26.11 17.25-41.91 17.25z\"></path></g><g id=\"_200307672\"><path d=\"m374.04 486.53c-3.32 0-6-2.68-6-6v-19.82c0-3.31 2.68-6 6-6 3.31 0 6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307888\"><path d=\"m464.51 486.53c-3.31 0-6-2.68-6-6v-19.82c0-3.31 2.69-6 6-6s6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307744\"><path d=\"m135.35 340.14c-.4 0-.8-.04-1.21-.12-2.77-.57-4.77-3.01-4.79-5.84-.01-.8-.54-16.35-18.14-25.35-4.77 6.05-14.98 15.83-31.26 15.83-7.09 0-14.53-1.91-22.17-5.68-1.97 2.49-4.39 6.45-4.7 11.19-.18 2.67-2.11 4.89-4.72 5.46-2.62.57-5.29-.67-6.56-3.03-.72-1.35-17.54-33.58 6.24-66.87.25-.34.54-.67.86-.95.52-.48 13.03-11.64 29.73-11.64 8.32 0 16.16 2.73 23.31 8.11 6.78.84 29.41 4.94 40.34 22.87 8.22 13.48 7.74 31.11-1.42 52.39-.96 2.24-3.15 3.63-5.51 3.63zm-26.25-44.82c.72 0 1.46.13 2.17.41 12.4 4.82 19.69 12.1 23.97 19.04 1.81-9.72.76-17.87-3.18-24.36-9.39-15.48-32.65-17.37-32.88-17.39-1.22-.09-2.4-.56-3.35-1.33-5.36-4.35-11.14-6.55-17.2-6.55-10.52 0-19.21 6.52-21.24 8.17-10.04 14.4-10.85 28.57-9.4 38.73 2.4-3.14 4.55-4.96 4.74-5.12 1.93-1.61 4.67-1.85 6.84-.59 7.27 4.2 14.13 6.33 20.38 6.33 16.01 0 23.79-14.05 23.86-14.2 1.08-1.98 3.14-3.14 5.29-3.14z\"></path></g><g id=\"_200307960\"><path d=\"m92.91 411.58c-.16 0-.32 0-.48 0-10.3-.15-20.06-5.17-28.23-14.52-7.44-8.5-13.2-20.37-16.79-34.51-9.8-1.95-15.32-9.01-16.52-15.9-1.66-9.54 3.98-18.57 14.03-22.48 3.08-1.2 6.56.33 7.76 3.42s-.33 6.56-3.41 7.77c-5.64 2.19-7.06 6.34-6.56 9.23.53 3.02 3.36 6.31 9.74 6.48 2.77.08 5.12 2.03 5.71 4.73 5.7 26.37 19.22 43.55 34.45 43.78h.29c14.2 0 26.75-15.15 32.81-39.65.62-2.5 2.75-4.32 5.31-4.54 5.81-.5 8.33-3.74 8.74-6.61.43-2.97-1.08-6.91-6.58-9.05-3.09-1.2-4.62-4.68-3.42-7.76 1.2-3.09 4.68-4.62 7.77-3.42 9.78 3.8 15.45 12.62 14.11 21.93-1.16 8.02-6.99 14.03-15.3 16.15-7.9 27.89-24.3 44.95-43.43 44.95z\"></path></g><g id=\"_200307408\"><path d=\"m6 486.53c-1.59 0-3.11-.63-4.24-1.75-1.12-1.13-1.76-2.65-1.76-4.25 0-44.88 21.25-52.28 38.32-58.24 13.67-4.77 23.55-8.21 24.08-29.7.08-3.31 2.82-5.89 6.14-5.85 3.31.08 5.93 2.83 5.85 6.15-.73 29.78-17.41 35.6-32.12 40.73-15.3 5.34-28.64 9.99-30.13 40.91h161.17c-1.5-30.92-14.83-35.57-30.13-40.91-14.73-5.13-31.42-10.96-32.12-40.8-.08-3.31 2.54-6.06 5.85-6.14 3.27-.11 6.06 2.54 6.14 5.86.51 21.53 10.4 24.98 24.08 29.75 17.07 5.96 38.32 13.36 38.32 58.24 0 3.31-2.69 6-6 6h-173.45z\"></path></g><g id=\"_200307648\"><path d=\"m92.73 443.04c-15.81 0-30.69-6.12-41.91-17.25-2.36-2.33-2.37-6.13-.04-8.48s6.13-2.37 8.48-.04c8.97 8.88 20.85 13.77 33.47 13.77 12.61 0 24.49-4.89 33.45-13.77 2.36-2.33 6.16-2.31 8.49.04s2.31 6.15-.04 8.48c-11.22 11.13-26.11 17.25-41.9 17.25z\"></path></g><g id=\"_200307720\"><path d=\"m47.49 486.53c-3.32 0-6-2.68-6-6v-19.82c0-3.31 2.68-6 6-6 3.31 0 6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307456\"><path d=\"m137.96 486.53c-3.31 0-6-2.68-6-6v-19.82c0-3.31 2.69-6 6-6s6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307840\"><path d=\"m94.44 269.46c-3.31 0-6-2.68-6-6v-23.34c0-8.01 6.52-14.53 14.53-14.53h70.38c3.31 0 6 2.69 6 6 0 3.32-2.69 6-6 6h-70.38c-1.37 0-2.53 1.16-2.53 2.53v23.34c0 3.32-2.68 6-6 6zm323.12-1.73c-3.32 0-6-2.69-6-6v-21.61c0-1.37-1.16-2.53-2.53-2.53h-70.38c-3.31 0-6-2.68-6-6 0-3.31 2.69-6 6-6h70.37c8.02 0 14.54 6.52 14.54 14.53v21.61c0 3.31-2.69 6-6 6z\"></path></g></g></g></svg>							\n												<h5>\n													Relationship Improvement												</h5>\n											<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m434.61 333.03-21.34-36.58c6.76-18.2 7.07-35.07.96-51.47-5.64-15.15-16.96-29.98-34.59-45.33-11.13-9.69-23.22-17.82-35.9-24.21.12-3.43-1.13-6.87-3.68-9.41l-11.45-11.45c-.24-.24-.28-.47-.12-.78 1.77-3.49 3.28-7.13 4.5-10.84.11-.32.3-.46.64-.46h16.19c6.99 0 12.67-5.68 12.67-12.67v-22.44c0-6.99-5.68-12.67-12.67-12.67h-16.19c-.34 0-.53-.14-.64-.46-1.22-3.71-2.73-7.35-4.5-10.84-.15-.3-.12-.53.12-.77l11.45-11.45c2.39-2.39 3.71-5.57 3.71-8.96s-1.32-6.57-3.71-8.96l-15.87-15.87c-2.39-2.39-5.57-3.71-8.96-3.71s-6.57 1.32-8.96 3.71l-11.45 11.45c-.24.24-.47.28-.77.12-3.48-1.77-7.13-3.28-10.84-4.5-.32-.11-.46-.3-.46-.64v-16.17c0-6.99-5.68-12.67-12.67-12.67h-22.44c-6.99 0-12.67 5.68-12.67 12.67v16.19c0 .34-.14.53-.46.64-3.7 1.22-7.35 2.73-10.84 4.5-.3.15-.54.12-.77-.12l-11.45-11.45c-2.39-2.39-5.57-3.71-8.96-3.71s-6.57 1.32-8.96 3.71l-15.87 15.87c-2.39 2.39-3.71 5.57-3.71 8.96s1.32 6.57 3.71 8.96l11.45 11.45c.24.24.28.47.12.77-1.77 3.49-3.28 7.13-4.5 10.84-.11.32-.3.46-.64.46h-16.19c-6.99 0-12.67 5.68-12.67 12.67v10.02c-.5 1.37-.76 2.83-.76 4.3v16.19c0 .34-.14.53-.46.64-3.7 1.22-7.35 2.73-10.84 4.5-.3.15-.54.12-.78-.12l-11.45-11.45c-2.39-2.39-5.57-3.71-8.96-3.71s-6.57 1.32-8.96 3.71l-15.87 15.87c-2.39 2.39-3.71 5.57-3.71 8.96s1.32 6.57 3.71 8.96l11.45 11.45c.24.24.28.47.12.77-1.77 3.49-3.28 7.13-4.49 10.84-.11.32-.3.46-.64.46h-16.16c-6.99 0-12.67 5.68-12.67 12.67v22.44c0 6.99 5.68 12.67 12.67 12.67h16.19c.34 0 .53.14.63.46 1.22 3.7 2.73 7.35 4.5 10.84.15.3.12.53-.12.77l-11.45 11.45c-2.39 2.39-3.71 5.57-3.71 8.96s1.32 6.57 3.71 8.96l15.87 15.87c2.39 2.39 5.57 3.71 8.96 3.71s6.57-1.32 8.96-3.71l11.45-11.45c.24-.24.47-.28.78-.12 2.63 1.33 5.35 2.52 8.12 3.55 3.63 25.86 18.43 52.67 31.88 77.01 3.47 6.29 6.76 12.23 9.84 18.11 12.69 35.72 7.66 78.5-12.56 106.56l-6.85 9.51h173.63v-44.26c38.01-.13 59.59-5.99 67.67-18.29 6.96-10.6 1.74-22.31-1.38-29.3-.44-.98-.98-2.19-1.34-3.11 3.35-4.7 4.47-10.39 3.12-16.07.14-.2.3-.41.43-.59 2.26-3.05 6.46-8.74 3.06-18.47-.43-1.24-.63-2.03-.72-2.5.71-.41 1.88-.97 2.87-1.44 1.82-.86 4.08-1.94 6.69-3.46 4.46-2.6 7.64-6.79 8.96-11.8s.59-10.29-2.01-14.74zm-267.36-225.64c0-.36.31-.67.67-.67h16.19c5.49 0 10.32-3.5 12.04-8.71 1.03-3.13 2.31-6.21 3.8-9.16 2.48-4.9 1.54-10.8-2.34-14.68l-11.45-11.45c-.13-.13-.19-.29-.19-.47 0-.19.06-.35.19-.47l15.87-15.87c.25-.25.69-.25.95 0l11.45 11.45c3.88 3.88 9.78 4.82 14.68 2.34 2.95-1.49 6.03-2.77 9.16-3.8 5.21-1.71 8.72-6.55 8.72-12.04v-16.19c0-.36.31-.67.67-.67h22.44c.36 0 .67.31.67.67v16.19c0 5.49 3.5 10.32 8.71 12.04 3.13 1.03 6.21 2.31 9.16 3.8 4.9 2.48 10.8 1.54 14.68-2.34l11.45-11.45c.25-.25.69-.25.95 0l15.87 15.87c.13.13.19.29.19.47 0 .19-.06.35-.19.47l-11.45 11.45c-3.88 3.88-4.83 9.78-2.34 14.68 1.49 2.95 2.77 6.03 3.8 9.16 1.71 5.21 6.55 8.71 12.04 8.71h16.19c.36 0 .67.31.67.67v22.44c0 .36-.31.67-.67.67h-16.19c-5.49 0-10.32 3.5-12.04 8.71-1.03 3.13-2.31 6.21-3.8 9.16-2.48 4.9-1.54 10.8 2.34 14.68l4.07 4.07c-6.1-2.13-12.28-3.88-18.52-5.21-5.2-1.11-10.41-1.91-15.6-2.44 12.29-9.41 20.24-24.22 20.24-40.86 0-28.37-23.08-51.45-51.45-51.45s-51.45 23.08-51.45 51.45c0 20.1 11.59 37.53 28.43 45.99-1.46.45-2.91.93-4.35 1.43-13.15 4.6-25.02 11.14-35.4 19.37l-9.95-9.95c-.13-.13-.19-.28-.19-.47s.06-.35.19-.47l11.45-11.45c3.88-3.88 4.82-9.78 2.34-14.68-1.49-2.95-2.77-6.03-3.8-9.16-1.71-5.21-6.55-8.72-12.04-8.72h-16.19c-.36 0-.67-.31-.67-.67zm91.61 50.67c-21.75 0-39.45-17.7-39.45-39.45s17.7-39.45 39.45-39.45 39.45 17.7 39.45 39.45-17.7 39.45-39.45 39.45zm-81.2 25.88 9.4 9.4c-14.24 13.88-24.92 31.39-31.29 51.61-10.4-7.3-16.85-19.33-16.85-32.3 0-20.29 15.4-37.05 35.13-39.21-.06.51-.1 1.02-.1 1.54 0 3.39 1.32 6.57 3.71 8.96zm-43.73 89.97-11.45 11.45c-.25.25-.69.25-.94 0l-15.87-15.87c-.16-.16-.19-.34-.19-.47 0-.19.06-.35.19-.47l11.45-11.45c3.88-3.88 4.83-9.78 2.34-14.68-1.49-2.95-2.77-6.03-3.8-9.16-1.71-5.21-6.55-8.72-12.04-8.72h-16.19c-.36 0-.67-.31-.67-.67v-22.44c0-.36.31-.67.67-.67h16.19c5.49 0 10.32-3.5 12.04-8.71 1.03-3.13 2.31-6.21 3.8-9.16 2.48-4.9 1.54-10.8-2.34-14.68l-11.45-11.45c-.16-.16-.19-.34-.19-.47 0-.19.06-.35.19-.47l15.87-15.87c.25-.25.69-.25.95 0l11.45 11.45c3.88 3.88 9.78 4.82 14.68 2.34 2.95-1.49 6.03-2.77 9.16-3.8 3.75-1.23 6.61-4.09 7.92-7.63.72.13 1.47.21 2.23.21h16.19c.34 0 .53.14.63.46 1.22 3.7 2.73 7.35 4.5 10.84.15.3.12.53-.12.77l-6.78 6.78c-1.31-.1-2.64-.16-3.95-.16-28.37 0-51.45 23.08-51.45 51.45 0 18.39 9.91 35.35 25.61 44.49-.35 1.61-.69 3.23-.99 4.86-.64 3.46-.96 6.96-1.05 10.48-.63-.3-1.27-.6-1.89-.91-4.92-2.5-10.82-1.55-14.7 2.33zm291.06 70.74c-.5 1.91-1.71 3.5-3.4 4.49-2.17 1.27-4.1 2.18-5.8 2.99-6.98 3.32-12.43 7.02-8.33 18.75 1.31 3.74.35 5.03-1.38 7.37-1.5 2.02-4 5.41-2.62 9.89.88 2.86.29 5.54-1.71 7.76-3.67 4.08-1.39 9.2.82 14.14 3.1 6.95 5.42 13.09 2.31 17.82-3.31 5.04-15.96 13.42-63.57 12.85l-6.07-.07v44.36h-138.97c17.34-30.83 20.69-72.96 7.92-108.51l-.14-.39-.19-.37c-3.21-6.12-6.59-12.24-10.17-18.72-17.49-31.65-35.57-64.37-30.34-92.85 7.68-41.83 33.96-73.47 72.1-86.8 44.14-15.44 96.37-3.43 136.3 31.34 33.22 28.92 41.99 54.65 29.31 86.02l-1.1 2.73 24.28 41.62c.99 1.69 1.25 3.67.75 5.58zm-145.92-155.19c-51.35 0-93.14 41.78-93.14 93.14 0 51.35 41.78 93.13 93.14 93.13s93.14-41.78 93.14-93.13c0-51.36-41.78-93.14-93.14-93.14zm0 174.27c-44.74 0-81.14-36.4-81.14-81.13s36.4-81.14 81.14-81.14 81.14 36.4 81.14 81.14-36.4 81.13-81.14 81.13zm29.28-94.9c-3.51-13.57-12.31-26.17-25.63-36.38-2.15-1.65-5.15-1.65-7.3 0-13.32 10.22-22.12 22.81-25.63 36.38-7.81-2.14-16.51-2.65-25.56-1.45-2.69.35-4.81 2.47-5.16 5.16-2.5 18.97 2.38 35.68 13.74 47.04 9.42 9.42 22.51 14.38 37.52 14.38 2.85 0 5.77-.19 8.74-.55 2.98.36 5.89.55 8.74.55 15.01 0 28.1-4.96 37.52-14.38 11.36-11.36 16.24-28.07 13.74-47.04-.35-2.69-2.47-4.81-5.16-5.16-9.05-1.19-17.75-.68-25.56 1.45zm-29.28-23.87c12.29 10.71 19.01 23.83 19.01 37.34s-6.71 26.63-19.01 37.34c-12.29-10.71-19.01-23.83-19.01-37.34s6.72-26.63 19.01-37.34zm-48.55 33.87c6.31-.35 12.26.35 17.57 2.02-.01.48-.02.96-.02 1.45 0 14.08 5.57 27.65 15.92 39.27-9.08-1.12-16.89-4.67-22.68-10.47-7.77-7.75-11.52-19.08-10.79-32.27zm86.33 32.27c-5.8 5.8-13.61 9.34-22.68 10.47 10.35-11.63 15.91-25.19 15.91-39.27 0-.48-.01-.96-.02-1.45 5.31-1.67 11.25-2.36 17.57-2.02.73 13.19-3.03 24.52-10.78 32.27z\"></path></svg>							\n												<h5>\n													Skill Development												</h5>\n											<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>							\n												<h5>\n													Tailored Approaches												</h5>\n											<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.</p>										\n		Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:30:01', '2026-06-17 10:30:01', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=535', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(537, 1, '2026-06-17 10:43:38', '2026-06-17 10:43:38', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />																<h2>Psychotherapy</h2>		<ul style=\"margin-left: 18px;\">\n 	<li>Individual therapy</li>\n 	<li>Couples/marriage therapy</li>\n 	<li>Family therapy</li>\n 	<li>Child/teen therapy</li>\n 	<li>Online therapy</li>\n 	<li>COMMON SPECIALTIES &amp; approaches</li>\n 	<li>Anxiety therapy</li>\n 	<li>Cognitive behavioral therapy (CBT)</li>\n 	<li>Depression counseling</li>\n 	<li>Dialectical behavior therapy (DBT)</li>\n 	<li>Grief &amp; loss counseling</li>\n 	<li>Relational therapy</li>\n</ul>			<h3>Therapy can be highly beneficial for mental health for several reasons:</h3>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 64 64.1999969\" width=\"512\"><path d=\"m51.2529297 42.0226555c.6357422-.6357422.9863281-1.4804688.9863281-2.3808594 0-.8994141-.3500977-1.7441406-.9863281-2.3808594-1.3125-1.3125-3.4492188-1.3125-4.7617188 0l-9.3178711 9.3173828c-.7426758.7441406-1.1518555 1.7314453-1.1518555 2.7822266v11.6396484c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-5.109375l11.5913086-11.5917969c.1875-.1875.2929688-.4414062.2929688-.7070312v-11.5488281c0-2.0097656-1.6347656-3.6445312-3.6445312-3.6445312s-3.6450195 1.6347656-3.6450195 3.6445312v8.6582031l-4.2260742 4.2255859c-.1459961.1455078-.3828125.1435547-.527832 0-.1455078-.1455078-.1455078-.3818359 0-.5273438zm-3.7910156 4.3183594c.9243164.9248047 2.4306641.9267578 3.355957 0l4.519043-4.5185547c.1875-.1875.2929688-.4414062.2929688-.7070312v-9.0722656c0-.9072266.737793-1.6445312 1.6450195-1.6445312.9067383 0 1.6445312.7373047 1.6445312 1.6445312v11.1347656l-11.5913086 11.5917968c-.1875.1875-.2929688.4414062-.2929688.7070312v4.5234375h-9.0136719v-10.6396484c0-.5166016.2011719-1.0029297.5664062-1.3681641l9.3173828-9.3173828c.5332031-.5332031 1.4008789-.5332031 1.9331055 0 .2583008.2587891.4008789.6015625.4008789.9667969s-.1420898.7089844-.4003906.9667969l-2.3769531 2.3769531c-.9252929.9248047-.9252929 2.4306641.0000001 3.3554688z\"></path><path d=\"m6.7250977 28.398632c-2.0097656 0-3.6445312 1.6347656-3.6445312 3.6445312v11.5488281c0 .265625.1054688.5195312.2929688.7070312l11.5913086 11.5917969v5.109375c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-11.6396483c0-1.0507812-.4091797-2.0380859-1.1523438-2.7822266l-9.3173828-9.3173828c-1.3125-1.3125-3.4487305-1.3125-4.762207 0-.6357422.6367188-.9858398 1.4814453-.9858398 2.3808594 0 .9003906.3505859 1.7451172.9863281 2.3808594l2.3769531 2.3769531c.1455078.1455078.1455078.3818359 0 .5273438s-.3823242.1435547-.527832 0l-4.2260742-4.2255859v-8.6582031c-.0000002-2.0097657-1.6352541-3.6445314-3.6450197-3.6445314zm6.4570312 17.9423829c.925293.9267578 2.4316406.9257812 3.355957 0 .925293-.9248047.925293-2.4306641 0-3.3554688l-2.3769531-2.3769531c-.2583008-.2578125-.4003906-.6015625-.4003906-.9667969s.1425781-.7080078.4003906-.9667969c.5332031-.5332031 1.4003906-.5332031 1.9335938 0l9.3168945 9.3173828c.3657227.3652344.5668945.8515625.5668945 1.3681641v10.6396484h-9.0136719v-4.5234375c0-.265625-.1054688-.5195312-.2929688-.7070312l-11.5913085-11.5917969v-11.1347656c0-.9072266.737793-1.6445312 1.6445312-1.6445312.9072266 0 1.6450195.7373047 1.6450195 1.6445312v9.0722656c0 .265625.1054688.5195312.2929688.7070312z\"></path><path d=\"m32 2.0998046c-10.0986328 0-18.3144531 8.2158203-18.3144531 18.3144531s8.2158203 18.3144525 18.3144531 18.3144525 18.3144531-8.2158203 18.3144531-18.3144531-8.2158203-18.3144525-18.3144531-18.3144525zm0 2.0000003c7.614502 0 14.0088501 5.2510376 15.798584 12.3173819-3.1233521-2.2542105-8.8903809-3.70996-15.798584-3.70996s-12.6752319 1.4557495-15.798584 3.70996c1.7897339-7.0663443 8.184082-12.3173819 15.798584-12.3173819zm16.3144531 16.3144521c0 2.6992188-6.7001953 5.7070312-16.3144531 5.7070312s-16.3144531-3.0078125-16.3144531-5.7070312 6.7001953-5.7070302 16.3144531-5.7070302 16.3144531 3.0078115 16.3144531 5.7070302zm-16.3144531 16.3144532c-7.614502 0-14.0088501-5.2510376-15.798584-12.3173828 3.1233521 2.2542114 8.8903809 3.7099609 15.798584 3.7099609s12.6752319-1.4557495 15.798584-3.7099609c-1.7897339 7.0663452-8.184082 12.3173828-15.798584 12.3173828z\"></path></svg>							\n												<h5>\n													Safe Space												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"friendship-work\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><circle cx=\"72\" cy=\"102\" r=\"4\"></circle><circle cx=\"64\" cy=\"50\" r=\"4\"></circle><path d=\"m228 98h4v4c0 2.211 1.789 4 4 4s4-1.789 4-4v-4h4c2.211 0 4-1.789 4-4s-1.789-4-4-4h-4v-4c0-2.211-1.789-4-4-4s-4 1.789-4 4v4h-4c-2.211 0-4 1.789-4 4s1.789 4 4 4z\"></path><path d=\"m132 218h-16v-5.977c0-13.759-8.223-25.608-20-30.964v-35.059c0-.031-.017-.057-.018-.088 4.839-3.653 8.018-9.396 8.018-15.912 0-2.211-1.789-4-4-4h-30.707c-7.328 0-13.293 5.965-13.293 13.293v25.953c0 5.361 2.096 10.206 5.444 13.892-14.614 3.818-25.444 17.092-25.444 32.885v49.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-49.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v9.977c0 2.211 1.789 4 4 4h8v8h-20v-17.582c0-2.211-1.789-4-4-4s-4 1.789-4 4v21.582 24c0 2.211 1.789 4 4 4s4-1.789 4-4v-20h32c6.617 0 12-5.383 12-12s-5.383-12-12-12zm-68-78.707c0-2.918 2.375-5.293 5.293-5.293h26.023c-1.652 4.656-6.102 8-11.316 8h-20zm12.754 38.707c-7.031 0-12.754-5.723-12.754-12.754v-15.246h24v28zm55.246 56h-4v-8h4c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m56 210c-2.211 0-4 1.789-4 4v48c0 2.211 1.789 4 4 4s4-1.789 4-4v-48c0-2.211-1.789-4-4-4z\"></path><path d=\"m238.009 178.998c3.704-3.95 5.991-9.243 5.991-15.072v-9.926c0-11.027-8.973-20-20-20s-20 8.973-20 20v27.06c-11.777 5.355-20 17.205-20 30.964v45.976c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v45.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-15.99-11.1-29.402-25.991-33.025zm-26.009-.998v-24c0-6.617 5.383-12 12-12s12 5.383 12 12v9.926c0 7.762-6.312 14.074-14.074 14.074z\"></path><path d=\"m204 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m244 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m185.41 118.613c.102-.242.203-.488.301-.734 5.809-.832 10.289-5.844 10.289-11.879 0-1.206-.223-2.353-.555-3.452 10.229-11.777 15.466-22.512 15.466-31.899-.001-20.208-15.274-36.649-34.048-36.649-7.633 0-14.91 2.711-20.863 7.707-5.953-4.996-13.23-7.707-20.863-7.707-18.773 0-34.047 16.441-34.047 36.648 0 9.39 5.238 20.125 15.465 31.903-.333 1.098-.555 2.244-.555 3.449 0 6.035 4.48 11.047 10.289 11.879.098.246.199.488.301.73-3.516 4.699-3.141 11.406 1.125 15.672 4.27 4.27 10.98 4.633 15.672 1.129.242.102.488.203.734.301.832 5.809 5.844 10.289 11.879 10.289s11.047-4.48 11.879-10.289c.246-.098.492-.199.734-.301 4.688 3.504 11.398 3.141 15.672-1.129 4.262-4.261 4.641-10.965 1.125-15.668zm-50.273-76.613c6.707 0 13.09 2.82 17.965 7.945 1.516 1.586 4.281 1.586 5.797 0 4.874-5.125 11.257-7.945 17.964-7.945 14.363 0 26.047 12.852 26.047 28.648 0 6.991-4.298 15.714-12.379 25.343-1.433-.939-3.052-1.616-4.82-1.87-.098-.246-.199-.488-.301-.73 3.516-4.699 3.141-11.406-1.125-15.672-4.273-4.27-10.984-4.637-15.672-1.129-.242-.102-.488-.203-.734-.301-.832-5.809-5.844-10.289-11.879-10.289s-11.047 4.48-11.879 10.289c-.246.098-.492.199-.734.301-4.691-3.508-11.402-3.141-15.672 1.129-4.262 4.262-4.641 10.965-1.125 15.668-.102.242-.203.488-.301.734-1.769.253-3.387.931-4.821 1.87-8.079-9.625-12.378-18.35-12.378-25.343 0-15.796 11.683-28.648 26.047-28.648zm47.687 68c-1.77 0-3.328 1.16-3.832 2.855-.488 1.629-1.117 3.16-1.875 4.555-.848 1.562-.562 3.492.695 4.746l.812.812c1.562 1.559 1.562 4.098.004 5.656-1.562 1.566-4.098 1.559-5.66 0l-.82-.82c-1.254-1.254-3.18-1.535-4.73-.691-1.426.773-2.957 1.402-4.555 1.875-1.699.504-2.863 2.062-2.863 3.836v1.176c0 2.207-1.793 4-4 4s-4-1.793-4-4v-1.176c0-1.773-1.164-3.332-2.863-3.836-1.598-.473-3.129-1.102-4.555-1.875-.598-.324-1.254-.48-1.902-.48-1.035 0-2.059.402-2.828 1.172l-.82.82c-1.559 1.559-4.094 1.566-5.66 0-1.559-1.559-1.559-4.098-.008-5.648l.824-.82c1.258-1.254 1.543-3.184.695-4.746-.758-1.395-1.387-2.926-1.875-4.555-.504-1.695-2.062-2.855-3.832-2.855h-1.176c-2.207 0-4-1.793-4-4s1.793-4 4-4h1.176c1.77 0 3.328-1.16 3.832-2.855.488-1.629 1.117-3.16 1.875-4.555.848-1.562.562-3.492-.695-4.746l-.812-.812c-1.562-1.559-1.562-4.098-.004-5.656 1.57-1.562 4.105-1.559 5.66 0l.82.82c1.25 1.25 3.18 1.531 4.73.691 1.426-.773 2.957-1.402 4.555-1.875 1.699-.504 2.863-2.062 2.863-3.836v-1.177c0-2.207 1.793-4 4-4s4 1.793 4 4v1.176c0 1.773 1.164 3.332 2.863 3.836 1.598.473 3.129 1.102 4.555 1.875 1.555.844 3.48.562 4.73-.691l.82-.82c1.562-1.559 4.098-1.566 5.66 0 1.559 1.559 1.559 4.098.008 5.648l-.824.82c-1.258 1.254-1.543 3.184-.695 4.746.758 1.395 1.387 2.926 1.875 4.555.504 1.695 2.062 2.855 3.832 2.855h1.176c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m156 90c-8.824 0-16 7.176-16 16s7.176 16 16 16 16-7.176 16-16-7.176-16-16-16zm0 24c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path></g></svg>							\n												<h5>\n													Emotional Support												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m206.102 400.162c-46.373 0-92.751-17.652-128.056-52.957-34.207-34.208-53.046-79.687-53.046-128.061s18.839-93.853 53.046-128.06c70.615-70.615 185.512-70.605 256.117 0 70.614 70.614 70.614 185.507 0 256.121-35.305 35.305-81.683 52.957-128.061 52.957zm0-346.791c-42.47 0-84.94 16.167-117.271 48.498-64.665 64.666-64.665 169.885 0 234.551 64.666 64.666 169.891 64.661 234.547 0 31.328-31.328 48.578-72.978 48.578-117.276 0-44.297-17.25-85.947-48.578-117.275-32.33-32.331-74.801-48.498-117.276-48.498z\"></path><path d=\"m206.102 357.901c-37.063 0-71.905-14.435-98.109-40.643-54.098-54.1-54.098-142.128 0-196.227 54.1-54.1 142.124-54.09 196.223 0 54.1 54.099 54.1 142.128 0 196.227-26.208 26.208-61.051 40.643-98.114 40.643zm0-262.194c-31.626 0-63.25 12.036-87.324 36.109-48.151 48.156-48.151 126.502 0 174.657 23.323 23.328 54.338 36.174 87.324 36.174s64.001-12.845 87.329-36.174c48.151-48.156 48.151-126.502 0-174.657-24.078-24.073-55.703-36.109-87.329-36.109z\"></path><path d=\"m297.428 421.907c-8.813 0-17.618-3.352-24.326-10.061-2.978-2.978-2.978-7.805 0-10.785 2.98-2.98 7.806-2.98 10.786 0 7.468 7.468 19.619 7.468 27.087 0l77.045-77.05c3.615-3.62 5.606-8.427 5.606-13.54 0-5.115-1.991-9.921-5.606-13.541-2.979-2.98-2.979-7.805 0-10.785 2.98-2.979 7.806-2.979 10.785 0 13.412 13.412 13.412 35.241 0 48.652l-77.045 77.05c-6.709 6.707-15.523 10.06-24.332 10.06z\"></path><path d=\"m402.881 461.874c-12.275 0-23.809-4.783-32.489-13.462l-47.992-47.991c-2.979-2.98-2.979-7.805 0-10.785l54.194-54.193c2.979-2.979 7.805-2.979 10.785 0l47.992 47.991c8.679 8.68 13.461 20.215 13.461 32.49s-4.782 23.809-13.461 32.489c-8.68 8.679-20.216 13.461-32.49 13.461zm-64.303-66.846 42.599 42.599c11.967 11.967 31.442 11.967 43.408 0 11.968-11.968 11.968-31.442 0-43.408l-42.599-42.6z\"></path><path d=\"m467.373 461.874h-355.566c-4.211 0-7.627-3.417-7.627-7.628s3.416-7.627 7.627-7.627h355.566c4.211 0 7.627 3.416 7.627 7.627s-3.416 7.628-7.627 7.628z\"></path><path d=\"m401.258 421.926c-1.951 0-3.904-.744-5.392-2.234l-21.675-21.679c-2.98-2.979-2.98-7.806 0-10.786 2.979-2.979 7.805-2.979 10.785 0l21.675 21.68c2.98 2.979 2.98 7.805 0 10.785-1.491 1.489-3.442 2.234-5.393 2.234z\"></path><path d=\"m206.102 305.102c-.814 0-1.628-.129-2.413-.392-3.814-1.272-41.556-24.446-49.383-62.342-6.668-32.305 9.048-65.739 46.716-99.385 2.89-2.583 7.269-2.583 10.16 0 37.668 33.641 53.384 67.079 46.715 99.38-7.826 37.897-45.569 61.076-49.383 62.347-.783.263-1.598.392-2.412.392zm0-146.07c-27.603 26.133-40.27 51.358-37.674 75.049 3.138 28.626 28.11 47.967 37.674 54.392 9.564-6.426 34.541-25.762 37.679-54.392 2.597-23.691-10.075-48.916-37.679-75.049z\"></path><path d=\"m212.691 305.102c-3.48 0-5.675-.164-6.082-.198-2.652-.224-5.001-1.813-6.192-4.192-.029-.06-.243-.501-.268-.561-1.658-3.541-.373-7.757 2.979-9.768 10.835-6.515 63.212-41.869 30.112-98.402-1.073-1.832-1.331-4.027-.715-6.062.615-2.031 2.045-3.715 3.957-4.648 14.42-7.027 32.256-12.021 53.007-14.842 3.889-.571 7.478 1.927 8.427 5.685 11.51 45.499 7.364 80.353-12.324 103.586-22.525 26.577-58.58 29.402-72.901 29.402zm37.744-113.333c22.007 44.953-.696 78.336-19.848 96.52 13.933-2.384 31.348-8.268 43.364-22.45 15.403-18.178 19.019-46.169 10.775-83.267-12.915 2.146-24.4 5.225-34.291 9.197z\"></path><path d=\"m199.553 305.102c-14.291 0-50.42-2.82-72.944-29.416-19.678-23.233-23.824-58.082-12.314-103.571.948-3.758 4.509-6.256 8.422-5.685 20.756 2.821 38.592 7.816 53.012 14.842 1.912.933 3.342 2.617 3.958 4.648.615 2.035.358 4.23-.715 6.062-33.1 56.533 19.276 91.887 30.111 98.402 3.392 2.036 4.662 6.332 2.925 9.887-1.182 2.413-3.734 4.409-6.411 4.633-.408.035-2.589.198-6.044.198zm-72.07-122.529c-8.243 37.088-4.633 65.079 10.765 83.257 12.007 14.177 29.426 20.066 43.364 22.45-19.147-18.184-41.849-51.562-19.837-96.51-9.892-3.973-21.371-7.052-34.292-9.197z\"></path><path d=\"m205.154 304.547c-4.211 0-7.627-3.417-7.627-7.628v-71.533c0-4.211 3.416-7.627 7.627-7.627s7.628 3.416 7.628 7.627v71.533c-.001 4.211-3.417 7.628-7.628 7.628z\"></path></g></svg>							\n												<h5>\n													Self-Exploration												</h5>\n											<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m295.544 178.256a6.741 6.741 0 0 0 -3.689-3.623 6.718 6.718 0 0 0 -8.727 3.475c-.058.16-.123.319-.193.475a6.715 6.715 0 0 0 3.572 8.482q.238.087.473.192a6.789 6.789 0 0 0 8.569-9zm4.657-15.648a21.3 21.3 0 0 1 -18.927 38.018l-.027-.012a21.345 21.345 0 0 1 -11.856-27.305 7.1 7.1 0 0 1 .358-.879 21.238 21.238 0 0 1 11.277-11.14 21.465 21.465 0 0 1 4.89-1.409 108.471 108.471 0 0 1 110.169-79.395l-7.5-9.84a7.256 7.256 0 0 1 11.533-8.807l18.139 23.785a7.255 7.255 0 0 1 -1.364 10.17l-23.793 18.138a7.256 7.256 0 0 1 -8.8-11.532l9.821-7.488a94.123 94.123 0 0 0 -93.917 67.7zm-136.607 130.062c-1.181-.462-2.53-.937-4.2-1.439-1.749-.526-3.761-1.034-5.893-1.571-2.249-.568-4.622-1.167-6.887-1.817a81.221 81.221 0 0 1 -7.736-2.626 52.681 52.681 0 0 1 -7.96-3.915 57.093 57.093 0 0 1 -5.122-3.558 19.314 19.314 0 0 1 -2.1 3.175 29.979 29.979 0 0 1 -4.78 4.617c-1.583 1.254-3.581 2.64-5.787 4.091-1.069.7-2 1.305-2.835 1.842v15.331a30.06 30.06 0 0 0 7.975 20.595 25.087 25.087 0 0 0 37.345 0 30.056 30.056 0 0 0 7.976-20.595v-14.13zm-3.794 117.75q-.863.314-1.737.606a66.691 66.691 0 0 1 -42.171 0q-.874-.292-1.736-.606 8.1 16.046 22.822 31.483 14.722-15.438 22.822-31.483zm-44.516-66.689-1.446 6.36a26.013 26.013 0 0 1 -8.247 14.073q-.63.554-1.295 1.069a86.352 86.352 0 0 0 2.3 24.838 49.4 49.4 0 0 0 13.842 7.2 53.4 53.4 0 0 0 33.079 0 49.4 49.4 0 0 0 13.842-7.2 86.282 86.282 0 0 0 2.3-24.786q-.7-.539-1.362-1.121a26.01 26.01 0 0 1 -8.247-14.073l-1.446-6.36a39.133 39.133 0 0 1 -43.323 0zm102.131 19.247c21.553 5.007 34.482 13.526 35.172 45.641v.142h.028v79.966a7.273 7.273 0 0 1 -7.272 7.273h-216.795a7.273 7.273 0 0 1 -7.273-7.273v-79.966a7.309 7.309 0 0 1 .049-.842c.911-33.257 15.2-40.822 38.733-45.728.5-7.586 1.773-17.265 3.2-28.09 2.421-18.4 5.3-40.261 5.3-60.319a67.9 67.9 0 0 1 19.627-47.875 66.563 66.563 0 0 1 94.957 0 67.889 67.889 0 0 1 19.627 47.875c0 22.494 5.342 45.587 9.591 63.955 2.279 9.851 4.261 18.419 5.062 25.241zm-46.7-31.379a44.85 44.85 0 0 0 7.42-24.8v-18.92a7.275 7.275 0 0 0 -4.889-6.873c-1.2-.525-2.455-1.065-4.1-1.717-1.832-.726-3.692-1.4-5.606-1.978-2.014-.606-4.2-1.158-6.517-1.742-2.01-.507-4.13-1.042-6.433-1.7-2.252-.647-4.44-1.344-6.372-2.113a37.981 37.981 0 0 1 -5.745-2.837 66.527 66.527 0 0 1 -8.659-6.687c-.68-.593-.82-.722-1.072-.939l.012-.014a14.573 14.573 0 0 0 -4.812-3.1c-6.5-2.195-9.224.041-10.259 6.5a21.51 21.51 0 0 0 -.208 2.607 14.785 14.785 0 0 1 -.37 3.3 3.848 3.848 0 0 1 -.715 1.241 16.145 16.145 0 0 1 -2.507 2.344c-1.423 1.129-3.022 2.244-4.707 3.353-1.127.741-3.346 2.131-5.627 3.557a7.274 7.274 0 0 0 -3.8 6.392v19.327a44.847 44.847 0 0 0 7.42 24.8l-3.479 15.309a11.711 11.711 0 0 1 -3.7 6.345 18.2 18.2 0 0 1 -8.506 3.875c-3.592.726-8.189 1.542-12.649 2.326.575-6.608 1.632-14.641 2.8-23.479 2.5-19 5.467-41.557 5.467-62.194a53.45 53.45 0 0 1 15.423-37.7 52.155 52.155 0 0 1 74.275 0 53.45 53.45 0 0 1 15.423 37.7c0 24.013 5.564 48.064 9.989 67.193 1.675 7.243 3.177 13.738 4.1 19.051l-2.054-.362c-4.821-.846-9.929-1.744-13.842-2.535a18.2 18.2 0 0 1 -8.506-3.875 11.711 11.711 0 0 1 -3.7-6.345l-3.482-15.31zm-41.01 149.856h-45.614a7.289 7.289 0 0 0 -.715-1.2 26.958 26.958 0 0 1 -5.261-16.38q0-9.969 5.972-22.523a7.256 7.256 0 0 0 -13.125-6.193q-7.392 15.54-7.393 28.716a41.569 41.569 0 0 0 3.738 17.583h-31.487v-72.697c0-.137 0-.274-.012-.41.791-27.416 16-30.094 40.333-34.368 3.862-.679 7.947-1.4 13.53-2.518a102.527 102.527 0 0 0 9.229 40.627q10.013 22.326 30.808 43.123v26.24zm14.545-26.241q20.795-20.795 30.808-43.121a102.527 102.527 0 0 0 9.226-40.616c5.55 1.115 9.617 1.83 13.466 2.506 24.453 4.3 39.695 6.976 40.344 34.778h-.024v72.694h-31.422a41.554 41.554 0 0 0 3.738-17.583q0-13.176-7.392-28.716a7.256 7.256 0 1 0 -13.125 6.193q5.971 12.554 5.972 22.523a26.959 26.959 0 0 1 -5.262 16.38 7.359 7.359 0 0 0 -.715 1.2h-45.614zm314.57-424.669a17.825 17.825 0 0 1 12.368 4.889 15.841 15.841 0 0 1 4.992 11.445v162.839a15.841 15.841 0 0 1 -4.992 11.445 17.821 17.821 0 0 1 -12.368 4.889h-92.395a7.234 7.234 0 0 0 -3.9 1.136l-22.385 12.384q-.276.151-.532.323l-36.3 20.086v-26.656a7.273 7.273 0 0 0 -7.273-7.273h-55.544a17.824 17.824 0 0 1 -12.368-4.889 15.844 15.844 0 0 1 -4.991-11.445v-162.839a15.842 15.842 0 0 1 4.991-11.445 17.829 17.829 0 0 1 12.368-4.889zm-218.329-14.545h218.329a32.378 32.378 0 0 1 22.425 8.979 30.272 30.272 0 0 1 9.48 21.9v162.839a30.268 30.268 0 0 1 -9.48 21.9 32.375 32.375 0 0 1 -22.425 8.98h-90.544l-21.149 11.7q-.257.141-.518.259l-47.084 26.051a7.236 7.236 0 0 1 -10.73-6.335h-.037v-31.673h-48.267a32.378 32.378 0 0 1 -22.425-8.98 30.272 30.272 0 0 1 -9.48-21.9v-162.841a30.268 30.268 0 0 1 9.48-21.9 32.378 32.378 0 0 1 22.425-8.979zm53.254 72.778-10.193-10.192 10.193-10.193a7.272 7.272 0 0 0 -10.285-10.284l-10.192 10.191-10.192-10.19a7.272 7.272 0 0 0 -10.284 10.284l10.192 10.192-10.192 10.191a7.272 7.272 0 0 0 10.284 10.284l10.192-10.191 10.192 10.192a7.272 7.272 0 0 0 10.285-10.284zm123.469 89.042-10.192-10.192 10.192-10.193a7.272 7.272 0 0 0 -10.284-10.284l-10.192 10.192-10.192-10.191a7.272 7.272 0 1 0 -10.284 10.284l10.192 10.192-10.192 10.191a7.272 7.272 0 1 0 10.284 10.281l10.192-10.191 10.192 10.191a7.272 7.272 0 0 0 10.284-10.284z\" fill-rule=\"evenodd\"></path></svg>							\n												<h5>\n													Coping Strategies												</h5>\n											<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M248.298,398.776v-96.35c0-5.971-2.694-11.517-7.393-15.216l-59.928-47.132c-2.984-2.348-7.254-2.094-9.939,0.592   l-14.349,14.349c-2.986,2.985-4.637,7.118-4.53,11.338c0.106,4.215,1.961,8.252,5.079,11.069l30.406,27.556l-1.867,1.93   c-1.111,1.149-2.665,1.808-4.265,1.808h-5.366c-4.046,0-7.953-1.201-11.299-3.474l-66.646-45.245   c-1.237-0.838-1.976-2.237-1.976-3.742v-42.516c0-8.724-7.102-15.821-15.832-15.821h-23.54c-4.142,0-7.5,3.358-7.5,7.5v72.637   c0,6.404,3.145,12.405,8.408,16.048l46.124,31.979c3.404,2.359,8.077,1.513,10.437-1.89c2.36-3.404,1.514-8.077-1.89-10.437   l-46.128-31.982c-1.222-0.846-1.951-2.235-1.951-3.718v-65.137h16.039c0.458,0,0.832,0.368,0.832,0.821v42.516   c0,6.486,3.2,12.526,8.556,16.155l66.64,45.241c5.84,3.967,12.661,6.064,19.726,6.064h5.366c5.643,0,11.128-2.326,15.047-6.38   l2.254-2.331c2.749-2.837,4.193-6.572,4.066-10.518c-0.127-3.948-1.811-7.585-4.741-10.242l-30.836-27.946   c-0.039-0.036-0.143-0.129-0.148-0.327c-0.005-0.206,0.101-0.312,0.141-0.352l9.642-9.642l54.693,43.015   c1.061,0.834,1.668,2.084,1.668,3.427v88.844h-60.32v-24.995c0-6.607-3.24-12.792-8.658-16.538l-27.532-19.089   c-3.405-2.36-8.077-1.514-10.437,1.89s-1.514,8.077,1.89,10.437l27.541,19.095c1.375,0.951,2.196,2.522,2.196,4.205v24.995h-3.726   c-4.142,0-7.5,3.358-7.5,7.5v58.66c0,0.033,0.004,0.064,0.005,0.097V504.5c0,4.142,3.358,7.5,7.5,7.5h25.971   c4.142,0,7.5-3.358,7.5-7.5c0-4.142-3.358-7.5-7.5-7.5h-18.471v-47.64h71.535v8.07c0,0.016,0.002,0.032,0.002,0.048V497h-23.519   c-4.142,0-7.5,3.358-7.5,7.5c0,4.142,3.358,7.5,7.5,7.5h31.019c4.142,0,7.5-3.358,7.5-7.5v-62.64c0-0.016-0.002-0.032-0.002-0.048   v-42.92C248.293,398.853,248.298,398.815,248.298,398.776z M233.292,434.359h-71.54V406.27h3.62c0.036,0,0.07,0.005,0.106,0.005   h67.814V434.359z\"></path>	</g></g><g>	<g>		<path d=\"M455.147,197.92h-23.535c-8.728,0-15.828,7.101-15.828,15.828v42.51c0,1.501-0.742,2.9-1.984,3.744l-66.637,45.24   c-3.349,2.273-7.258,3.475-11.304,3.475h-5.362c-1.604,0-3.162-0.66-4.279-1.813l-1.862-1.922l30.408-27.549   c3.125-2.831,4.977-6.871,5.08-11.085c0.104-4.215-1.546-8.342-4.526-11.324l-14.354-14.354c-2.687-2.686-6.956-2.939-9.94-0.592   l-47.179,37.107l-12.747,10.025c-4.695,3.693-7.389,9.238-7.389,15.211v96.35c0,0.02,0.003,0.038,0.003,0.058v42.972   c0,0.02-0.003,0.038-0.003,0.058v62.64c0,4.142,3.357,7.5,7.5,7.5h86.538c4.143,0,7.5-3.358,7.5-7.5v-46.973   c0-0.033,0.005-0.064,0.005-0.097v-58.66c0-4.142-3.357-7.5-7.5-7.5h-3.729v-24.994c0-1.68,0.824-3.254,2.204-4.211l98.021-67.96   c5.26-3.647,8.4-9.646,8.4-16.046V205.42C462.647,201.278,459.29,197.92,455.147,197.92z M350.247,497h-71.538v-39.512   c0-0.02,0.003-0.038,0.003-0.058v-8.07h71.535V497z M350.252,434.36h-71.54v-28.088h67.811c0.013,0,0.026-0.002,0.039-0.002h3.69   V434.36z M447.65,278.059h-0.003c0,1.483-0.728,2.874-1.947,3.719l-98.021,67.961c-5.42,3.759-8.656,9.941-8.656,16.538v24.994   H278.71v-88.848c0-1.343,0.605-2.591,1.662-3.421l12.747-10.025l41.946-32.992l9.646,9.646c0.039,0.04,0.144,0.144,0.139,0.347   s-0.114,0.302-0.155,0.339l-30.83,27.931c-2.928,2.653-4.611,6.289-4.74,10.238c-0.128,3.95,1.314,7.688,4.065,10.527l2.256,2.328   c3.924,4.053,9.41,6.377,15.053,6.377h5.362c7.062,0,13.884-2.097,19.729-6.064l66.638-45.241   c5.359-3.639,8.559-9.677,8.559-16.154v-42.51c0-0.457,0.371-0.828,0.828-0.828h16.035V278.059z\"></path>	</g></g><g>	<g>		<path d=\"M256.002,0c-55.95,0-102.985,41.857-109.407,97.364c-0.476,4.115,2.474,7.836,6.588,8.313   c4.12,0.482,7.836-2.474,8.313-6.588C167.042,51.15,207.671,15,256.002,15c52.466,0,95.15,42.684,95.15,95.15   c0,41.507-26.532,77.917-66.021,90.603c-1.723,0.553-3.187,1.71-4.123,3.258l-25.006,41.333l-25.006-41.333   c-0.937-1.548-2.401-2.705-4.123-3.258c-33.804-10.859-58.561-39.313-64.609-74.259c-0.707-4.082-4.587-6.812-8.669-6.111   c-4.082,0.707-6.817,4.588-6.111,8.669c6.842,39.527,34.351,71.881,72.103,85.076l30,49.587c1.358,2.246,3.792,3.618,6.417,3.618   s5.059-1.372,6.417-3.618l29.999-49.587c44.219-15.453,73.732-56.883,73.732-103.978C366.152,49.413,316.739,0,256.002,0z\"></path>	</g></g><g>	<g>		<path d=\"M315.754,102.65h-10.565c-1.234-8.128-4.447-15.612-9.123-21.955l7.492-7.492c2.929-2.929,2.929-7.678,0-10.606   c-2.93-2.929-7.678-2.929-10.607,0l-7.491,7.491c-6.343-4.676-13.827-7.888-21.955-9.123V50.4c0-4.142-3.357-7.5-7.5-7.5   c-4.142,0-7.5,3.358-7.5,7.5v10.565c-8.128,1.234-15.612,4.447-21.955,9.123l-7.491-7.491c-2.929-2.929-7.678-2.929-10.606,0   c-2.929,2.929-2.929,7.678,0,10.606l7.491,7.491c-4.676,6.343-7.889,13.828-9.123,21.956c0,0-10.569,0-10.569,0   c-4.142,0-7.5,3.358-7.5,7.5c0,4.142,3.358,7.5,7.5,7.5h10.565c1.234,8.128,4.447,15.613,9.123,21.956l-7.491,7.491   c-2.929,2.929-2.929,7.678,0,10.606c1.464,1.464,3.384,2.197,5.303,2.197s3.839-0.732,5.303-2.197l7.491-7.491   c6.343,4.676,13.828,7.889,21.956,9.123V169.9c0,4.142,3.358,7.5,7.5,7.5c4.143,0,7.5-3.358,7.5-7.5v-10.565   c8.128-1.234,15.612-4.447,21.956-9.123l7.491,7.491c1.465,1.464,3.385,2.197,5.304,2.197c1.919,0,3.839-0.732,5.304-2.197   c2.929-2.929,2.929-7.678,0-10.606l-7.491-7.491c4.676-6.343,7.889-13.828,9.123-21.956h10.565c4.143,0,7.5-3.358,7.5-7.5   C323.254,106.008,319.897,102.65,315.754,102.65z M290.751,110.164c-0.007,19.151-15.586,34.731-34.738,34.738   c-0.004,0-0.009-0.001-0.013-0.001c-0.004,0-0.009,0.001-0.013,0.001c-19.151-0.007-34.731-15.586-34.738-34.738   c0-0.004,0.001-0.009,0.001-0.013c0-0.004-0.001-0.008-0.001-0.013c0.009-19.154,15.592-34.735,34.746-34.738   c0.002,0,0.004,0,0.006,0s0.004,0,0.006,0c19.155,0.004,34.737,15.584,34.744,34.738c0,0.004-0.001,0.008-0.001,0.013   C290.75,110.155,290.751,110.16,290.751,110.164z\"></path>	</g></g><g>	<g>		<path d=\"M256.002,85.119c-13.802,0-25.032,11.229-25.032,25.031c0,13.803,11.229,25.032,25.032,25.032   c13.803,0,25.031-11.229,25.031-25.031C281.033,96.348,269.804,85.119,256.002,85.119z M256.002,120.182   c-5.532,0-10.032-4.5-10.032-10.031c0-5.532,4.5-10.032,10.032-10.032c5.531,0,10.031,4.5,10.031,10.032   C266.033,115.682,261.533,120.182,256.002,120.182z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>							\n												<h5>\n													Goal Setting												</h5>\n											<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xodm=\"http://www.corel.com/coreldraw/odm/2003\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_2077007814064\"><g id=\"_200306976\"><path d=\"m256 319.44c-1.59 0-3.12-.63-4.24-1.75-11.13-11.13-22.33-21.98-33.17-32.48-62.94-60.98-117.31-113.65-117.31-179.39 0-44.31 36.05-80.35 80.36-80.35 37.74 0 57.46 18.43 74.36 48.87 16.9-30.44 36.62-48.87 74.35-48.87 44.31 0 80.36 36.04 80.36 80.35 0 65.74-54.36 118.41-117.31 179.39-10.83 10.49-22.03 21.35-33.16 32.48-1.12 1.12-2.65 1.75-4.24 1.75zm-74.36-281.97c-37.69 0-68.35 30.66-68.35 68.35 0 60.66 52.67 111.69 113.65 170.77 9.5 9.2 19.27 18.67 29.06 28.39 9.78-9.72 19.56-19.19 29.06-28.39 60.98-59.08 113.65-110.11 113.65-170.77 0-37.69-30.66-68.35-68.35-68.35-31.58 0-49.63 13.72-68.99 52.45-1.02 2.03-3.1 3.31-5.37 3.31s-4.35-1.28-5.37-3.31c-19.36-38.73-37.41-52.45-68.99-52.45z\"></path></g><g><g id=\"_200307000\"><path d=\"m268.35 249.13h-24.7c-3.32 0-6-2.68-6-6v-11.56c-2.07-.72-4.09-1.56-6.06-2.51l-8.18 8.18c-1.13 1.12-2.65 1.75-4.25 1.75-1.59 0-3.11-.63-4.24-1.75l-17.47-17.47c-2.34-2.34-2.34-6.14 0-8.49l8.18-8.18c-.95-1.97-1.79-3.99-2.51-6.06h-11.57c-3.31 0-6-2.68-6-6v-24.7c0-3.32 2.69-6 6-6h11.57c.72-2.07 1.56-4.09 2.51-6.06l-8.18-8.18c-1.13-1.13-1.76-2.65-1.76-4.24 0-1.6.63-3.12 1.76-4.25l17.47-17.47c2.34-2.34 6.14-2.34 8.49 0l8.18 8.18c1.96-.95 3.99-1.79 6.05-2.51v-11.56c0-3.32 2.69-6 6-6h24.71c3.31 0 6 2.68 6 6v11.56c2.07.72 4.09 1.56 6.06 2.51l8.18-8.18c1.12-1.12 2.65-1.76 4.24-1.76s3.12.64 4.24 1.76l17.48 17.47c1.12 1.13 1.75 2.65 1.75 4.25 0 1.59-.63 3.11-1.75 4.24l-8.19 8.18c.96 1.97 1.8 3.99 2.52 6.06h11.56c3.32 0 6 2.68 6 6v24.7c0 3.32-2.68 6-6 6h-11.56c-.72 2.07-1.56 4.09-2.52 6.06l8.19 8.18c1.12 1.13 1.75 2.65 1.75 4.24 0 1.6-.63 3.12-1.75 4.25l-17.47 17.47c-2.35 2.34-6.15 2.34-8.49 0l-8.18-8.18c-1.97.95-3.99 1.79-6.06 2.51v11.57c0 3.31-2.69 5.99-6 5.99zm-18.7-12h12.7v-10.02c0-2.74 1.86-5.14 4.52-5.82 4.06-1.03 7.95-2.64 11.56-4.79 2.36-1.4 5.37-1.02 7.31.92l7.09 7.09 8.99-8.99-7.09-7.09c-1.94-1.94-2.32-4.95-.92-7.31 2.15-3.6 3.76-7.49 4.79-11.56.68-2.66 3.07-4.52 5.82-4.52h10.02v-12.7h-10.02c-2.75 0-5.14-1.87-5.82-4.52-1.03-4.07-2.64-7.95-4.79-11.56-1.4-2.36-1.03-5.37.92-7.31l7.09-7.1-8.99-8.98-7.09 7.09c-1.94 1.94-4.95 2.32-7.31.92-3.61-2.15-7.5-3.77-11.56-4.8-2.66-.67-4.52-3.07-4.52-5.81v-10.03h-12.7v10.03c0 2.74-1.87 5.14-4.53 5.81-4.05 1.04-7.94 2.65-11.55 4.8-2.36 1.4-5.37 1.02-7.31-.92l-7.1-7.09-8.98 8.99 7.09 7.09c1.94 1.94 2.32 4.95.92 7.31-2.15 3.61-3.76 7.5-4.8 11.55-.67 2.66-3.07 4.53-5.81 4.53h-10.02v12.7h10.02c2.74 0 5.14 1.86 5.81 4.52 1.04 4.06 2.65 7.95 4.8 11.56 1.4 2.36 1.02 5.37-.92 7.31l-7.09 7.09 8.98 8.99 7.1-7.09c1.94-1.94 4.95-2.32 7.31-.92 3.61 2.15 7.5 3.76 11.56 4.79 2.66.68 4.52 3.08 4.52 5.82z\"></path></g><g id=\"_200306760\"><path d=\"m256 215.48c-20.29 0-36.8-16.5-36.8-36.79s16.51-36.8 36.8-36.8 36.79 16.51 36.79 36.8-16.5 36.79-36.79 36.79zm0-61.59c-13.67 0-24.8 11.13-24.8 24.8s11.13 24.79 24.8 24.79 24.79-11.12 24.79-24.79-11.12-24.8-24.79-24.8z\"></path></g></g><g id=\"_200306784\"><path d=\"m461.9 340.14c-.4 0-.8-.04-1.21-.12-2.77-.57-4.77-3.01-4.79-5.84-.01-.8-.54-16.35-18.14-25.35-4.77 6.05-14.98 15.83-31.26 15.83-7.09 0-14.53-1.91-22.17-5.68-1.97 2.49-4.39 6.45-4.71 11.19-.17 2.67-2.1 4.89-4.71 5.46-2.62.57-5.29-.67-6.56-3.03-.73-1.35-17.54-33.58 6.24-66.87.25-.34.54-.67.85-.95.53-.48 13.04-11.64 29.73-11.64 8.33 0 16.16 2.73 23.32 8.11 6.78.84 29.41 4.94 40.34 22.87 8.21 13.48 7.74 31.11-1.42 52.39-.96 2.24-3.15 3.63-5.51 3.63zm-26.24-44.82c.73 0 1.45.13 2.16.41 12.4 4.82 19.68 12.11 23.97 19.04 1.81-9.72.76-17.87-3.18-24.36-9.39-15.48-32.65-17.38-32.88-17.39-1.23-.09-2.4-.56-3.35-1.33-5.36-4.35-11.14-6.55-17.2-6.55-10.52 0-19.21 6.52-21.25 8.17-10.03 14.4-10.85 28.57-9.39 38.73 2.4-3.14 4.55-4.96 4.74-5.12 1.93-1.61 4.66-1.85 6.84-.59 7.27 4.2 14.13 6.33 20.38 6.33 15.81 0 23.56-13.64 23.88-14.22 1.09-1.97 3.15-3.12 5.28-3.12z\"></path></g><g id=\"_200307264\"><path d=\"m419.46 411.58c-.16 0-.32 0-.48 0-10.3-.15-20.06-5.17-28.23-14.52-7.44-8.5-13.2-20.37-16.78-34.51-9.81-1.95-15.33-9.01-16.53-15.9-1.66-9.54 3.98-18.57 14.03-22.48 3.08-1.2 6.56.33 7.76 3.42s-.33 6.56-3.41 7.77c-5.64 2.19-7.06 6.34-6.56 9.23.53 3.02 3.36 6.31 9.74 6.48 2.77.08 5.12 2.03 5.71 4.73 5.7 26.37 19.22 43.55 34.45 43.78h.29c14.2 0 26.75-15.15 32.81-39.65.62-2.5 2.75-4.32 5.31-4.54 5.81-.5 8.33-3.74 8.74-6.61.43-2.97-1.08-6.91-6.58-9.05-3.09-1.2-4.62-4.68-3.42-7.76 1.2-3.09 4.68-4.62 7.77-3.42 9.78 3.8 15.45 12.62 14.11 21.93-1.15 8.02-6.99 14.03-15.29 16.15-7.91 27.89-24.31 44.95-43.44 44.95z\"></path></g><g id=\"_200306808\"><path d=\"m332.55 486.53c-1.59 0-3.11-.63-4.24-1.75-1.12-1.13-1.76-2.65-1.76-4.25 0-44.88 21.25-52.28 38.32-58.24 13.67-4.77 23.55-8.21 24.07-29.7.08-3.31 2.86-5.89 6.15-5.85 3.31.08 5.93 2.83 5.85 6.15-.73 29.78-17.41 35.6-32.12 40.73-15.3 5.34-28.64 9.99-30.13 40.91h161.17c-1.49-30.92-14.83-35.57-30.13-40.91-14.73-5.13-31.42-10.96-32.12-40.8-.08-3.31 2.54-6.06 5.85-6.14 3.31-.11 6.06 2.54 6.14 5.86.51 21.53 10.4 24.98 24.08 29.75 17.07 5.96 38.32 13.36 38.32 58.24 0 3.31-2.69 6-6 6z\"></path></g><g id=\"_200306616\"><path d=\"m419.27 443.04c-15.8 0-30.68-6.12-41.9-17.25-2.36-2.33-2.38-6.13-.04-8.48 2.33-2.35 6.13-2.37 8.48-.04 8.96 8.88 20.85 13.77 33.46 13.77 12.62 0 24.5-4.89 33.46-13.77 2.36-2.33 6.16-2.31 8.49.04s2.31 6.15-.04 8.48c-11.22 11.13-26.11 17.25-41.91 17.25z\"></path></g><g id=\"_200307672\"><path d=\"m374.04 486.53c-3.32 0-6-2.68-6-6v-19.82c0-3.31 2.68-6 6-6 3.31 0 6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307888\"><path d=\"m464.51 486.53c-3.31 0-6-2.68-6-6v-19.82c0-3.31 2.69-6 6-6s6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307744\"><path d=\"m135.35 340.14c-.4 0-.8-.04-1.21-.12-2.77-.57-4.77-3.01-4.79-5.84-.01-.8-.54-16.35-18.14-25.35-4.77 6.05-14.98 15.83-31.26 15.83-7.09 0-14.53-1.91-22.17-5.68-1.97 2.49-4.39 6.45-4.7 11.19-.18 2.67-2.11 4.89-4.72 5.46-2.62.57-5.29-.67-6.56-3.03-.72-1.35-17.54-33.58 6.24-66.87.25-.34.54-.67.86-.95.52-.48 13.03-11.64 29.73-11.64 8.32 0 16.16 2.73 23.31 8.11 6.78.84 29.41 4.94 40.34 22.87 8.22 13.48 7.74 31.11-1.42 52.39-.96 2.24-3.15 3.63-5.51 3.63zm-26.25-44.82c.72 0 1.46.13 2.17.41 12.4 4.82 19.69 12.1 23.97 19.04 1.81-9.72.76-17.87-3.18-24.36-9.39-15.48-32.65-17.37-32.88-17.39-1.22-.09-2.4-.56-3.35-1.33-5.36-4.35-11.14-6.55-17.2-6.55-10.52 0-19.21 6.52-21.24 8.17-10.04 14.4-10.85 28.57-9.4 38.73 2.4-3.14 4.55-4.96 4.74-5.12 1.93-1.61 4.67-1.85 6.84-.59 7.27 4.2 14.13 6.33 20.38 6.33 16.01 0 23.79-14.05 23.86-14.2 1.08-1.98 3.14-3.14 5.29-3.14z\"></path></g><g id=\"_200307960\"><path d=\"m92.91 411.58c-.16 0-.32 0-.48 0-10.3-.15-20.06-5.17-28.23-14.52-7.44-8.5-13.2-20.37-16.79-34.51-9.8-1.95-15.32-9.01-16.52-15.9-1.66-9.54 3.98-18.57 14.03-22.48 3.08-1.2 6.56.33 7.76 3.42s-.33 6.56-3.41 7.77c-5.64 2.19-7.06 6.34-6.56 9.23.53 3.02 3.36 6.31 9.74 6.48 2.77.08 5.12 2.03 5.71 4.73 5.7 26.37 19.22 43.55 34.45 43.78h.29c14.2 0 26.75-15.15 32.81-39.65.62-2.5 2.75-4.32 5.31-4.54 5.81-.5 8.33-3.74 8.74-6.61.43-2.97-1.08-6.91-6.58-9.05-3.09-1.2-4.62-4.68-3.42-7.76 1.2-3.09 4.68-4.62 7.77-3.42 9.78 3.8 15.45 12.62 14.11 21.93-1.16 8.02-6.99 14.03-15.3 16.15-7.9 27.89-24.3 44.95-43.43 44.95z\"></path></g><g id=\"_200307408\"><path d=\"m6 486.53c-1.59 0-3.11-.63-4.24-1.75-1.12-1.13-1.76-2.65-1.76-4.25 0-44.88 21.25-52.28 38.32-58.24 13.67-4.77 23.55-8.21 24.08-29.7.08-3.31 2.82-5.89 6.14-5.85 3.31.08 5.93 2.83 5.85 6.15-.73 29.78-17.41 35.6-32.12 40.73-15.3 5.34-28.64 9.99-30.13 40.91h161.17c-1.5-30.92-14.83-35.57-30.13-40.91-14.73-5.13-31.42-10.96-32.12-40.8-.08-3.31 2.54-6.06 5.85-6.14 3.27-.11 6.06 2.54 6.14 5.86.51 21.53 10.4 24.98 24.08 29.75 17.07 5.96 38.32 13.36 38.32 58.24 0 3.31-2.69 6-6 6h-173.45z\"></path></g><g id=\"_200307648\"><path d=\"m92.73 443.04c-15.81 0-30.69-6.12-41.91-17.25-2.36-2.33-2.37-6.13-.04-8.48s6.13-2.37 8.48-.04c8.97 8.88 20.85 13.77 33.47 13.77 12.61 0 24.49-4.89 33.45-13.77 2.36-2.33 6.16-2.31 8.49.04s2.31 6.15-.04 8.48c-11.22 11.13-26.11 17.25-41.9 17.25z\"></path></g><g id=\"_200307720\"><path d=\"m47.49 486.53c-3.32 0-6-2.68-6-6v-19.82c0-3.31 2.68-6 6-6 3.31 0 6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307456\"><path d=\"m137.96 486.53c-3.31 0-6-2.68-6-6v-19.82c0-3.31 2.69-6 6-6s6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307840\"><path d=\"m94.44 269.46c-3.31 0-6-2.68-6-6v-23.34c0-8.01 6.52-14.53 14.53-14.53h70.38c3.31 0 6 2.69 6 6 0 3.32-2.69 6-6 6h-70.38c-1.37 0-2.53 1.16-2.53 2.53v23.34c0 3.32-2.68 6-6 6zm323.12-1.73c-3.32 0-6-2.69-6-6v-21.61c0-1.37-1.16-2.53-2.53-2.53h-70.38c-3.31 0-6-2.68-6-6 0-3.31 2.69-6 6-6h70.37c8.02 0 14.54 6.52 14.54 14.53v21.61c0 3.31-2.69 6-6 6z\"></path></g></g></g></svg>							\n												<h5>\n													Relationship Improvement												</h5>\n											<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m434.61 333.03-21.34-36.58c6.76-18.2 7.07-35.07.96-51.47-5.64-15.15-16.96-29.98-34.59-45.33-11.13-9.69-23.22-17.82-35.9-24.21.12-3.43-1.13-6.87-3.68-9.41l-11.45-11.45c-.24-.24-.28-.47-.12-.78 1.77-3.49 3.28-7.13 4.5-10.84.11-.32.3-.46.64-.46h16.19c6.99 0 12.67-5.68 12.67-12.67v-22.44c0-6.99-5.68-12.67-12.67-12.67h-16.19c-.34 0-.53-.14-.64-.46-1.22-3.71-2.73-7.35-4.5-10.84-.15-.3-.12-.53.12-.77l11.45-11.45c2.39-2.39 3.71-5.57 3.71-8.96s-1.32-6.57-3.71-8.96l-15.87-15.87c-2.39-2.39-5.57-3.71-8.96-3.71s-6.57 1.32-8.96 3.71l-11.45 11.45c-.24.24-.47.28-.77.12-3.48-1.77-7.13-3.28-10.84-4.5-.32-.11-.46-.3-.46-.64v-16.17c0-6.99-5.68-12.67-12.67-12.67h-22.44c-6.99 0-12.67 5.68-12.67 12.67v16.19c0 .34-.14.53-.46.64-3.7 1.22-7.35 2.73-10.84 4.5-.3.15-.54.12-.77-.12l-11.45-11.45c-2.39-2.39-5.57-3.71-8.96-3.71s-6.57 1.32-8.96 3.71l-15.87 15.87c-2.39 2.39-3.71 5.57-3.71 8.96s1.32 6.57 3.71 8.96l11.45 11.45c.24.24.28.47.12.77-1.77 3.49-3.28 7.13-4.5 10.84-.11.32-.3.46-.64.46h-16.19c-6.99 0-12.67 5.68-12.67 12.67v10.02c-.5 1.37-.76 2.83-.76 4.3v16.19c0 .34-.14.53-.46.64-3.7 1.22-7.35 2.73-10.84 4.5-.3.15-.54.12-.78-.12l-11.45-11.45c-2.39-2.39-5.57-3.71-8.96-3.71s-6.57 1.32-8.96 3.71l-15.87 15.87c-2.39 2.39-3.71 5.57-3.71 8.96s1.32 6.57 3.71 8.96l11.45 11.45c.24.24.28.47.12.77-1.77 3.49-3.28 7.13-4.49 10.84-.11.32-.3.46-.64.46h-16.16c-6.99 0-12.67 5.68-12.67 12.67v22.44c0 6.99 5.68 12.67 12.67 12.67h16.19c.34 0 .53.14.63.46 1.22 3.7 2.73 7.35 4.5 10.84.15.3.12.53-.12.77l-11.45 11.45c-2.39 2.39-3.71 5.57-3.71 8.96s1.32 6.57 3.71 8.96l15.87 15.87c2.39 2.39 5.57 3.71 8.96 3.71s6.57-1.32 8.96-3.71l11.45-11.45c.24-.24.47-.28.78-.12 2.63 1.33 5.35 2.52 8.12 3.55 3.63 25.86 18.43 52.67 31.88 77.01 3.47 6.29 6.76 12.23 9.84 18.11 12.69 35.72 7.66 78.5-12.56 106.56l-6.85 9.51h173.63v-44.26c38.01-.13 59.59-5.99 67.67-18.29 6.96-10.6 1.74-22.31-1.38-29.3-.44-.98-.98-2.19-1.34-3.11 3.35-4.7 4.47-10.39 3.12-16.07.14-.2.3-.41.43-.59 2.26-3.05 6.46-8.74 3.06-18.47-.43-1.24-.63-2.03-.72-2.5.71-.41 1.88-.97 2.87-1.44 1.82-.86 4.08-1.94 6.69-3.46 4.46-2.6 7.64-6.79 8.96-11.8s.59-10.29-2.01-14.74zm-267.36-225.64c0-.36.31-.67.67-.67h16.19c5.49 0 10.32-3.5 12.04-8.71 1.03-3.13 2.31-6.21 3.8-9.16 2.48-4.9 1.54-10.8-2.34-14.68l-11.45-11.45c-.13-.13-.19-.29-.19-.47 0-.19.06-.35.19-.47l15.87-15.87c.25-.25.69-.25.95 0l11.45 11.45c3.88 3.88 9.78 4.82 14.68 2.34 2.95-1.49 6.03-2.77 9.16-3.8 5.21-1.71 8.72-6.55 8.72-12.04v-16.19c0-.36.31-.67.67-.67h22.44c.36 0 .67.31.67.67v16.19c0 5.49 3.5 10.32 8.71 12.04 3.13 1.03 6.21 2.31 9.16 3.8 4.9 2.48 10.8 1.54 14.68-2.34l11.45-11.45c.25-.25.69-.25.95 0l15.87 15.87c.13.13.19.29.19.47 0 .19-.06.35-.19.47l-11.45 11.45c-3.88 3.88-4.83 9.78-2.34 14.68 1.49 2.95 2.77 6.03 3.8 9.16 1.71 5.21 6.55 8.71 12.04 8.71h16.19c.36 0 .67.31.67.67v22.44c0 .36-.31.67-.67.67h-16.19c-5.49 0-10.32 3.5-12.04 8.71-1.03 3.13-2.31 6.21-3.8 9.16-2.48 4.9-1.54 10.8 2.34 14.68l4.07 4.07c-6.1-2.13-12.28-3.88-18.52-5.21-5.2-1.11-10.41-1.91-15.6-2.44 12.29-9.41 20.24-24.22 20.24-40.86 0-28.37-23.08-51.45-51.45-51.45s-51.45 23.08-51.45 51.45c0 20.1 11.59 37.53 28.43 45.99-1.46.45-2.91.93-4.35 1.43-13.15 4.6-25.02 11.14-35.4 19.37l-9.95-9.95c-.13-.13-.19-.28-.19-.47s.06-.35.19-.47l11.45-11.45c3.88-3.88 4.82-9.78 2.34-14.68-1.49-2.95-2.77-6.03-3.8-9.16-1.71-5.21-6.55-8.72-12.04-8.72h-16.19c-.36 0-.67-.31-.67-.67zm91.61 50.67c-21.75 0-39.45-17.7-39.45-39.45s17.7-39.45 39.45-39.45 39.45 17.7 39.45 39.45-17.7 39.45-39.45 39.45zm-81.2 25.88 9.4 9.4c-14.24 13.88-24.92 31.39-31.29 51.61-10.4-7.3-16.85-19.33-16.85-32.3 0-20.29 15.4-37.05 35.13-39.21-.06.51-.1 1.02-.1 1.54 0 3.39 1.32 6.57 3.71 8.96zm-43.73 89.97-11.45 11.45c-.25.25-.69.25-.94 0l-15.87-15.87c-.16-.16-.19-.34-.19-.47 0-.19.06-.35.19-.47l11.45-11.45c3.88-3.88 4.83-9.78 2.34-14.68-1.49-2.95-2.77-6.03-3.8-9.16-1.71-5.21-6.55-8.72-12.04-8.72h-16.19c-.36 0-.67-.31-.67-.67v-22.44c0-.36.31-.67.67-.67h16.19c5.49 0 10.32-3.5 12.04-8.71 1.03-3.13 2.31-6.21 3.8-9.16 2.48-4.9 1.54-10.8-2.34-14.68l-11.45-11.45c-.16-.16-.19-.34-.19-.47 0-.19.06-.35.19-.47l15.87-15.87c.25-.25.69-.25.95 0l11.45 11.45c3.88 3.88 9.78 4.82 14.68 2.34 2.95-1.49 6.03-2.77 9.16-3.8 3.75-1.23 6.61-4.09 7.92-7.63.72.13 1.47.21 2.23.21h16.19c.34 0 .53.14.63.46 1.22 3.7 2.73 7.35 4.5 10.84.15.3.12.53-.12.77l-6.78 6.78c-1.31-.1-2.64-.16-3.95-.16-28.37 0-51.45 23.08-51.45 51.45 0 18.39 9.91 35.35 25.61 44.49-.35 1.61-.69 3.23-.99 4.86-.64 3.46-.96 6.96-1.05 10.48-.63-.3-1.27-.6-1.89-.91-4.92-2.5-10.82-1.55-14.7 2.33zm291.06 70.74c-.5 1.91-1.71 3.5-3.4 4.49-2.17 1.27-4.1 2.18-5.8 2.99-6.98 3.32-12.43 7.02-8.33 18.75 1.31 3.74.35 5.03-1.38 7.37-1.5 2.02-4 5.41-2.62 9.89.88 2.86.29 5.54-1.71 7.76-3.67 4.08-1.39 9.2.82 14.14 3.1 6.95 5.42 13.09 2.31 17.82-3.31 5.04-15.96 13.42-63.57 12.85l-6.07-.07v44.36h-138.97c17.34-30.83 20.69-72.96 7.92-108.51l-.14-.39-.19-.37c-3.21-6.12-6.59-12.24-10.17-18.72-17.49-31.65-35.57-64.37-30.34-92.85 7.68-41.83 33.96-73.47 72.1-86.8 44.14-15.44 96.37-3.43 136.3 31.34 33.22 28.92 41.99 54.65 29.31 86.02l-1.1 2.73 24.28 41.62c.99 1.69 1.25 3.67.75 5.58zm-145.92-155.19c-51.35 0-93.14 41.78-93.14 93.14 0 51.35 41.78 93.13 93.14 93.13s93.14-41.78 93.14-93.13c0-51.36-41.78-93.14-93.14-93.14zm0 174.27c-44.74 0-81.14-36.4-81.14-81.13s36.4-81.14 81.14-81.14 81.14 36.4 81.14 81.14-36.4 81.13-81.14 81.13zm29.28-94.9c-3.51-13.57-12.31-26.17-25.63-36.38-2.15-1.65-5.15-1.65-7.3 0-13.32 10.22-22.12 22.81-25.63 36.38-7.81-2.14-16.51-2.65-25.56-1.45-2.69.35-4.81 2.47-5.16 5.16-2.5 18.97 2.38 35.68 13.74 47.04 9.42 9.42 22.51 14.38 37.52 14.38 2.85 0 5.77-.19 8.74-.55 2.98.36 5.89.55 8.74.55 15.01 0 28.1-4.96 37.52-14.38 11.36-11.36 16.24-28.07 13.74-47.04-.35-2.69-2.47-4.81-5.16-5.16-9.05-1.19-17.75-.68-25.56 1.45zm-29.28-23.87c12.29 10.71 19.01 23.83 19.01 37.34s-6.71 26.63-19.01 37.34c-12.29-10.71-19.01-23.83-19.01-37.34s6.72-26.63 19.01-37.34zm-48.55 33.87c6.31-.35 12.26.35 17.57 2.02-.01.48-.02.96-.02 1.45 0 14.08 5.57 27.65 15.92 39.27-9.08-1.12-16.89-4.67-22.68-10.47-7.77-7.75-11.52-19.08-10.79-32.27zm86.33 32.27c-5.8 5.8-13.61 9.34-22.68 10.47 10.35-11.63 15.91-25.19 15.91-39.27 0-.48-.01-.96-.02-1.45 5.31-1.67 11.25-2.36 17.57-2.02.73 13.19-3.03 24.52-10.78 32.27z\"></path></svg>							\n												<h5>\n													Skill Development												</h5>\n											<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m273.006 83.567v168.425h87.5a4 4 0 1 1 0 8h-87.5v168.433h87.5a4 4 0 0 1 0 8h-91.5a4 4 0 0 1 -4-4v-172.431h-23.979a4 4 0 1 1 0-8h23.973v-172.428a4 4 0 0 1 4-4h91.5a4 4 0 0 1 0 8zm170 415.36a66.5 66.5 0 1 0 -66.5-66.5 66.569 66.569 0 0 0 66.5 66.5zm0-352.86a66.5 66.5 0 1 0 -66.5-66.5 66.569 66.569 0 0 0 66.5 66.5zm0 176.427a66.5 66.5 0 1 0 -66.498-66.494 66.569 66.569 0 0 0 66.5 66.494zm-344.212-195.217-6.473 100.7a4.046 4.046 0 0 0 .55 2.3l17.454 29.364a3.994 3.994 0 0 0 6.88 0l17.454-29.364a3.983 3.983 0 0 0 .55-2.3l-6.473-100.7 60.793 15.639c16.032 4.116 26.821 18.062 27.5 35.53v140.818a19.6 19.6 0 0 1 -6.9 15.283 37.861 37.861 0 0 1 -11.274 6.887 15.2 15.2 0 0 1 -12.961-.608v-142.018a4 4 0 1 0 -8 0v291.546a13.657 13.657 0 0 1 -13.646 13.639h-32.839a13.657 13.657 0 0 1 -13.646-13.639v-130.33a4 4 0 1 0 -8 0v130.33a13.657 13.657 0 0 1 -13.646 13.639h-32.831a13.651 13.651 0 0 1 -13.639-13.639v-291.546a4 4 0 0 0 -8 0v142.018a15.314 15.314 0 0 1 -12.967.608 37.924 37.924 0 0 1 -11.28-6.887 19.616 19.616 0 0 1 -6.895-15.283v-140.818c.672-17.468 11.46-31.414 27.492-35.53l60.793-15.639zm-96.287 50.948v141.039a27.649 27.649 0 0 0 9.61 21.284 45.823 45.823 0 0 0 13.638 8.338 23.478 23.478 0 0 0 15.89.6v140.868a21.667 21.667 0 0 0 21.641 21.646h32.836a21.632 21.632 0 0 0 17.647-9.131 21.608 21.608 0 0 0 17.64 9.131h32.836a21.673 21.673 0 0 0 21.647-21.641v-140.88a22.827 22.827 0 0 0 7.016 1.114 24.352 24.352 0 0 0 8.867-1.707 45.84 45.84 0 0 0 13.639-8.338 27.648 27.648 0 0 0 9.609-21.284v-141.039c-.786-21.127-13.932-38.031-33.493-43.06l-61.836-15.911c22.691-13.039 31.486-42.089 31.807-67.909.193-15.46-4.622-28.557-13.924-37.887a47.161 47.161 0 0 0 -33.301-13.458h-.943a47.221 47.221 0 0 0 -33.379 13.46c-9.3 9.33-14.118 22.427-13.925 37.887.322 25.82 9.124 54.87 31.815 67.909l-61.836 15.909c-19.562 5.029-32.715 21.933-33.5 43.06zm444.493-61.479a4 4 0 1 1 -8 0v-33.179h-33.164a4 4 0 0 1 0-8h33.172v-33.174a4 4 0 0 1 8 0v33.172h33.172a4 4 0 0 1 0 8h-33.18v33.179zm0 102.081v33.165h33.172a4 4 0 1 1 0 8h-33.172v33.171a4 4 0 1 1 -8 0v-33.169h-33.164a4 4 0 0 1 0-8h33.172v-33.167a4 4 0 1 1 8 0zm0 176.419v33.179h33.172a4 4 0 0 1 0 8h-33.172v33.175a4 4 0 0 1 -8 0v-33.173h-33.164a4 4 0 0 1 0-8h33.172v-33.181a4 4 0 1 1 8 0z\" fill-rule=\"evenodd\"></path></svg>							\n												<h5>\n													Tailored Approaches												</h5>\n											<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.</p>										\n		Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:43:38', '2026-06-17 10:43:38', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=537', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(538, 1, '2026-06-17 10:43:38', '2026-06-17 10:43:38', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />																<h2>Psychotherapy</h2>		<ul style=\"margin-left: 18px;\">\n 	<li>Individual therapy</li>\n 	<li>Couples/marriage therapy</li>\n 	<li>Family therapy</li>\n 	<li>Child/teen therapy</li>\n 	<li>Online therapy</li>\n 	<li>COMMON SPECIALTIES &amp; approaches</li>\n 	<li>Anxiety therapy</li>\n 	<li>Cognitive behavioral therapy (CBT)</li>\n 	<li>Depression counseling</li>\n 	<li>Dialectical behavior therapy (DBT)</li>\n 	<li>Grief &amp; loss counseling</li>\n 	<li>Relational therapy</li>\n</ul>			<h3>Therapy can be highly beneficial for mental health for several reasons:</h3>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 64 64.1999969\" width=\"512\"><path d=\"m51.2529297 42.0226555c.6357422-.6357422.9863281-1.4804688.9863281-2.3808594 0-.8994141-.3500977-1.7441406-.9863281-2.3808594-1.3125-1.3125-3.4492188-1.3125-4.7617188 0l-9.3178711 9.3173828c-.7426758.7441406-1.1518555 1.7314453-1.1518555 2.7822266v11.6396484c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-5.109375l11.5913086-11.5917969c.1875-.1875.2929688-.4414062.2929688-.7070312v-11.5488281c0-2.0097656-1.6347656-3.6445312-3.6445312-3.6445312s-3.6450195 1.6347656-3.6450195 3.6445312v8.6582031l-4.2260742 4.2255859c-.1459961.1455078-.3828125.1435547-.527832 0-.1455078-.1455078-.1455078-.3818359 0-.5273438zm-3.7910156 4.3183594c.9243164.9248047 2.4306641.9267578 3.355957 0l4.519043-4.5185547c.1875-.1875.2929688-.4414062.2929688-.7070312v-9.0722656c0-.9072266.737793-1.6445312 1.6450195-1.6445312.9067383 0 1.6445312.7373047 1.6445312 1.6445312v11.1347656l-11.5913086 11.5917968c-.1875.1875-.2929688.4414062-.2929688.7070312v4.5234375h-9.0136719v-10.6396484c0-.5166016.2011719-1.0029297.5664062-1.3681641l9.3173828-9.3173828c.5332031-.5332031 1.4008789-.5332031 1.9331055 0 .2583008.2587891.4008789.6015625.4008789.9667969s-.1420898.7089844-.4003906.9667969l-2.3769531 2.3769531c-.9252929.9248047-.9252929 2.4306641.0000001 3.3554688z\"></path><path d=\"m6.7250977 28.398632c-2.0097656 0-3.6445312 1.6347656-3.6445312 3.6445312v11.5488281c0 .265625.1054688.5195312.2929688.7070312l11.5913086 11.5917969v5.109375c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-11.6396483c0-1.0507812-.4091797-2.0380859-1.1523438-2.7822266l-9.3173828-9.3173828c-1.3125-1.3125-3.4487305-1.3125-4.762207 0-.6357422.6367188-.9858398 1.4814453-.9858398 2.3808594 0 .9003906.3505859 1.7451172.9863281 2.3808594l2.3769531 2.3769531c.1455078.1455078.1455078.3818359 0 .5273438s-.3823242.1435547-.527832 0l-4.2260742-4.2255859v-8.6582031c-.0000002-2.0097657-1.6352541-3.6445314-3.6450197-3.6445314zm6.4570312 17.9423829c.925293.9267578 2.4316406.9257812 3.355957 0 .925293-.9248047.925293-2.4306641 0-3.3554688l-2.3769531-2.3769531c-.2583008-.2578125-.4003906-.6015625-.4003906-.9667969s.1425781-.7080078.4003906-.9667969c.5332031-.5332031 1.4003906-.5332031 1.9335938 0l9.3168945 9.3173828c.3657227.3652344.5668945.8515625.5668945 1.3681641v10.6396484h-9.0136719v-4.5234375c0-.265625-.1054688-.5195312-.2929688-.7070312l-11.5913085-11.5917969v-11.1347656c0-.9072266.737793-1.6445312 1.6445312-1.6445312.9072266 0 1.6450195.7373047 1.6450195 1.6445312v9.0722656c0 .265625.1054688.5195312.2929688.7070312z\"></path><path d=\"m32 2.0998046c-10.0986328 0-18.3144531 8.2158203-18.3144531 18.3144531s8.2158203 18.3144525 18.3144531 18.3144525 18.3144531-8.2158203 18.3144531-18.3144531-8.2158203-18.3144525-18.3144531-18.3144525zm0 2.0000003c7.614502 0 14.0088501 5.2510376 15.798584 12.3173819-3.1233521-2.2542105-8.8903809-3.70996-15.798584-3.70996s-12.6752319 1.4557495-15.798584 3.70996c1.7897339-7.0663443 8.184082-12.3173819 15.798584-12.3173819zm16.3144531 16.3144521c0 2.6992188-6.7001953 5.7070312-16.3144531 5.7070312s-16.3144531-3.0078125-16.3144531-5.7070312 6.7001953-5.7070302 16.3144531-5.7070302 16.3144531 3.0078115 16.3144531 5.7070302zm-16.3144531 16.3144532c-7.614502 0-14.0088501-5.2510376-15.798584-12.3173828 3.1233521 2.2542114 8.8903809 3.7099609 15.798584 3.7099609s12.6752319-1.4557495 15.798584-3.7099609c-1.7897339 7.0663452-8.184082 12.3173828-15.798584 12.3173828z\"></path></svg>							\n												<h5>\n													Safe Space												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"friendship-work\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><circle cx=\"72\" cy=\"102\" r=\"4\"></circle><circle cx=\"64\" cy=\"50\" r=\"4\"></circle><path d=\"m228 98h4v4c0 2.211 1.789 4 4 4s4-1.789 4-4v-4h4c2.211 0 4-1.789 4-4s-1.789-4-4-4h-4v-4c0-2.211-1.789-4-4-4s-4 1.789-4 4v4h-4c-2.211 0-4 1.789-4 4s1.789 4 4 4z\"></path><path d=\"m132 218h-16v-5.977c0-13.759-8.223-25.608-20-30.964v-35.059c0-.031-.017-.057-.018-.088 4.839-3.653 8.018-9.396 8.018-15.912 0-2.211-1.789-4-4-4h-30.707c-7.328 0-13.293 5.965-13.293 13.293v25.953c0 5.361 2.096 10.206 5.444 13.892-14.614 3.818-25.444 17.092-25.444 32.885v49.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-49.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v9.977c0 2.211 1.789 4 4 4h8v8h-20v-17.582c0-2.211-1.789-4-4-4s-4 1.789-4 4v21.582 24c0 2.211 1.789 4 4 4s4-1.789 4-4v-20h32c6.617 0 12-5.383 12-12s-5.383-12-12-12zm-68-78.707c0-2.918 2.375-5.293 5.293-5.293h26.023c-1.652 4.656-6.102 8-11.316 8h-20zm12.754 38.707c-7.031 0-12.754-5.723-12.754-12.754v-15.246h24v28zm55.246 56h-4v-8h4c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m56 210c-2.211 0-4 1.789-4 4v48c0 2.211 1.789 4 4 4s4-1.789 4-4v-48c0-2.211-1.789-4-4-4z\"></path><path d=\"m238.009 178.998c3.704-3.95 5.991-9.243 5.991-15.072v-9.926c0-11.027-8.973-20-20-20s-20 8.973-20 20v27.06c-11.777 5.355-20 17.205-20 30.964v45.976c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v45.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-15.99-11.1-29.402-25.991-33.025zm-26.009-.998v-24c0-6.617 5.383-12 12-12s12 5.383 12 12v9.926c0 7.762-6.312 14.074-14.074 14.074z\"></path><path d=\"m204 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m244 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m185.41 118.613c.102-.242.203-.488.301-.734 5.809-.832 10.289-5.844 10.289-11.879 0-1.206-.223-2.353-.555-3.452 10.229-11.777 15.466-22.512 15.466-31.899-.001-20.208-15.274-36.649-34.048-36.649-7.633 0-14.91 2.711-20.863 7.707-5.953-4.996-13.23-7.707-20.863-7.707-18.773 0-34.047 16.441-34.047 36.648 0 9.39 5.238 20.125 15.465 31.903-.333 1.098-.555 2.244-.555 3.449 0 6.035 4.48 11.047 10.289 11.879.098.246.199.488.301.73-3.516 4.699-3.141 11.406 1.125 15.672 4.27 4.27 10.98 4.633 15.672 1.129.242.102.488.203.734.301.832 5.809 5.844 10.289 11.879 10.289s11.047-4.48 11.879-10.289c.246-.098.492-.199.734-.301 4.688 3.504 11.398 3.141 15.672-1.129 4.262-4.261 4.641-10.965 1.125-15.668zm-50.273-76.613c6.707 0 13.09 2.82 17.965 7.945 1.516 1.586 4.281 1.586 5.797 0 4.874-5.125 11.257-7.945 17.964-7.945 14.363 0 26.047 12.852 26.047 28.648 0 6.991-4.298 15.714-12.379 25.343-1.433-.939-3.052-1.616-4.82-1.87-.098-.246-.199-.488-.301-.73 3.516-4.699 3.141-11.406-1.125-15.672-4.273-4.27-10.984-4.637-15.672-1.129-.242-.102-.488-.203-.734-.301-.832-5.809-5.844-10.289-11.879-10.289s-11.047 4.48-11.879 10.289c-.246.098-.492.199-.734.301-4.691-3.508-11.402-3.141-15.672 1.129-4.262 4.262-4.641 10.965-1.125 15.668-.102.242-.203.488-.301.734-1.769.253-3.387.931-4.821 1.87-8.079-9.625-12.378-18.35-12.378-25.343 0-15.796 11.683-28.648 26.047-28.648zm47.687 68c-1.77 0-3.328 1.16-3.832 2.855-.488 1.629-1.117 3.16-1.875 4.555-.848 1.562-.562 3.492.695 4.746l.812.812c1.562 1.559 1.562 4.098.004 5.656-1.562 1.566-4.098 1.559-5.66 0l-.82-.82c-1.254-1.254-3.18-1.535-4.73-.691-1.426.773-2.957 1.402-4.555 1.875-1.699.504-2.863 2.062-2.863 3.836v1.176c0 2.207-1.793 4-4 4s-4-1.793-4-4v-1.176c0-1.773-1.164-3.332-2.863-3.836-1.598-.473-3.129-1.102-4.555-1.875-.598-.324-1.254-.48-1.902-.48-1.035 0-2.059.402-2.828 1.172l-.82.82c-1.559 1.559-4.094 1.566-5.66 0-1.559-1.559-1.559-4.098-.008-5.648l.824-.82c1.258-1.254 1.543-3.184.695-4.746-.758-1.395-1.387-2.926-1.875-4.555-.504-1.695-2.062-2.855-3.832-2.855h-1.176c-2.207 0-4-1.793-4-4s1.793-4 4-4h1.176c1.77 0 3.328-1.16 3.832-2.855.488-1.629 1.117-3.16 1.875-4.555.848-1.562.562-3.492-.695-4.746l-.812-.812c-1.562-1.559-1.562-4.098-.004-5.656 1.57-1.562 4.105-1.559 5.66 0l.82.82c1.25 1.25 3.18 1.531 4.73.691 1.426-.773 2.957-1.402 4.555-1.875 1.699-.504 2.863-2.062 2.863-3.836v-1.177c0-2.207 1.793-4 4-4s4 1.793 4 4v1.176c0 1.773 1.164 3.332 2.863 3.836 1.598.473 3.129 1.102 4.555 1.875 1.555.844 3.48.562 4.73-.691l.82-.82c1.562-1.559 4.098-1.566 5.66 0 1.559 1.559 1.559 4.098.008 5.648l-.824.82c-1.258 1.254-1.543 3.184-.695 4.746.758 1.395 1.387 2.926 1.875 4.555.504 1.695 2.062 2.855 3.832 2.855h1.176c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m156 90c-8.824 0-16 7.176-16 16s7.176 16 16 16 16-7.176 16-16-7.176-16-16-16zm0 24c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path></g></svg>							\n												<h5>\n													Emotional Support												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m206.102 400.162c-46.373 0-92.751-17.652-128.056-52.957-34.207-34.208-53.046-79.687-53.046-128.061s18.839-93.853 53.046-128.06c70.615-70.615 185.512-70.605 256.117 0 70.614 70.614 70.614 185.507 0 256.121-35.305 35.305-81.683 52.957-128.061 52.957zm0-346.791c-42.47 0-84.94 16.167-117.271 48.498-64.665 64.666-64.665 169.885 0 234.551 64.666 64.666 169.891 64.661 234.547 0 31.328-31.328 48.578-72.978 48.578-117.276 0-44.297-17.25-85.947-48.578-117.275-32.33-32.331-74.801-48.498-117.276-48.498z\"></path><path d=\"m206.102 357.901c-37.063 0-71.905-14.435-98.109-40.643-54.098-54.1-54.098-142.128 0-196.227 54.1-54.1 142.124-54.09 196.223 0 54.1 54.099 54.1 142.128 0 196.227-26.208 26.208-61.051 40.643-98.114 40.643zm0-262.194c-31.626 0-63.25 12.036-87.324 36.109-48.151 48.156-48.151 126.502 0 174.657 23.323 23.328 54.338 36.174 87.324 36.174s64.001-12.845 87.329-36.174c48.151-48.156 48.151-126.502 0-174.657-24.078-24.073-55.703-36.109-87.329-36.109z\"></path><path d=\"m297.428 421.907c-8.813 0-17.618-3.352-24.326-10.061-2.978-2.978-2.978-7.805 0-10.785 2.98-2.98 7.806-2.98 10.786 0 7.468 7.468 19.619 7.468 27.087 0l77.045-77.05c3.615-3.62 5.606-8.427 5.606-13.54 0-5.115-1.991-9.921-5.606-13.541-2.979-2.98-2.979-7.805 0-10.785 2.98-2.979 7.806-2.979 10.785 0 13.412 13.412 13.412 35.241 0 48.652l-77.045 77.05c-6.709 6.707-15.523 10.06-24.332 10.06z\"></path><path d=\"m402.881 461.874c-12.275 0-23.809-4.783-32.489-13.462l-47.992-47.991c-2.979-2.98-2.979-7.805 0-10.785l54.194-54.193c2.979-2.979 7.805-2.979 10.785 0l47.992 47.991c8.679 8.68 13.461 20.215 13.461 32.49s-4.782 23.809-13.461 32.489c-8.68 8.679-20.216 13.461-32.49 13.461zm-64.303-66.846 42.599 42.599c11.967 11.967 31.442 11.967 43.408 0 11.968-11.968 11.968-31.442 0-43.408l-42.599-42.6z\"></path><path d=\"m467.373 461.874h-355.566c-4.211 0-7.627-3.417-7.627-7.628s3.416-7.627 7.627-7.627h355.566c4.211 0 7.627 3.416 7.627 7.627s-3.416 7.628-7.627 7.628z\"></path><path d=\"m401.258 421.926c-1.951 0-3.904-.744-5.392-2.234l-21.675-21.679c-2.98-2.979-2.98-7.806 0-10.786 2.979-2.979 7.805-2.979 10.785 0l21.675 21.68c2.98 2.979 2.98 7.805 0 10.785-1.491 1.489-3.442 2.234-5.393 2.234z\"></path><path d=\"m206.102 305.102c-.814 0-1.628-.129-2.413-.392-3.814-1.272-41.556-24.446-49.383-62.342-6.668-32.305 9.048-65.739 46.716-99.385 2.89-2.583 7.269-2.583 10.16 0 37.668 33.641 53.384 67.079 46.715 99.38-7.826 37.897-45.569 61.076-49.383 62.347-.783.263-1.598.392-2.412.392zm0-146.07c-27.603 26.133-40.27 51.358-37.674 75.049 3.138 28.626 28.11 47.967 37.674 54.392 9.564-6.426 34.541-25.762 37.679-54.392 2.597-23.691-10.075-48.916-37.679-75.049z\"></path><path d=\"m212.691 305.102c-3.48 0-5.675-.164-6.082-.198-2.652-.224-5.001-1.813-6.192-4.192-.029-.06-.243-.501-.268-.561-1.658-3.541-.373-7.757 2.979-9.768 10.835-6.515 63.212-41.869 30.112-98.402-1.073-1.832-1.331-4.027-.715-6.062.615-2.031 2.045-3.715 3.957-4.648 14.42-7.027 32.256-12.021 53.007-14.842 3.889-.571 7.478 1.927 8.427 5.685 11.51 45.499 7.364 80.353-12.324 103.586-22.525 26.577-58.58 29.402-72.901 29.402zm37.744-113.333c22.007 44.953-.696 78.336-19.848 96.52 13.933-2.384 31.348-8.268 43.364-22.45 15.403-18.178 19.019-46.169 10.775-83.267-12.915 2.146-24.4 5.225-34.291 9.197z\"></path><path d=\"m199.553 305.102c-14.291 0-50.42-2.82-72.944-29.416-19.678-23.233-23.824-58.082-12.314-103.571.948-3.758 4.509-6.256 8.422-5.685 20.756 2.821 38.592 7.816 53.012 14.842 1.912.933 3.342 2.617 3.958 4.648.615 2.035.358 4.23-.715 6.062-33.1 56.533 19.276 91.887 30.111 98.402 3.392 2.036 4.662 6.332 2.925 9.887-1.182 2.413-3.734 4.409-6.411 4.633-.408.035-2.589.198-6.044.198zm-72.07-122.529c-8.243 37.088-4.633 65.079 10.765 83.257 12.007 14.177 29.426 20.066 43.364 22.45-19.147-18.184-41.849-51.562-19.837-96.51-9.892-3.973-21.371-7.052-34.292-9.197z\"></path><path d=\"m205.154 304.547c-4.211 0-7.627-3.417-7.627-7.628v-71.533c0-4.211 3.416-7.627 7.627-7.627s7.628 3.416 7.628 7.627v71.533c-.001 4.211-3.417 7.628-7.628 7.628z\"></path></g></svg>							\n												<h5>\n													Self-Exploration												</h5>\n											<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m295.544 178.256a6.741 6.741 0 0 0 -3.689-3.623 6.718 6.718 0 0 0 -8.727 3.475c-.058.16-.123.319-.193.475a6.715 6.715 0 0 0 3.572 8.482q.238.087.473.192a6.789 6.789 0 0 0 8.569-9zm4.657-15.648a21.3 21.3 0 0 1 -18.927 38.018l-.027-.012a21.345 21.345 0 0 1 -11.856-27.305 7.1 7.1 0 0 1 .358-.879 21.238 21.238 0 0 1 11.277-11.14 21.465 21.465 0 0 1 4.89-1.409 108.471 108.471 0 0 1 110.169-79.395l-7.5-9.84a7.256 7.256 0 0 1 11.533-8.807l18.139 23.785a7.255 7.255 0 0 1 -1.364 10.17l-23.793 18.138a7.256 7.256 0 0 1 -8.8-11.532l9.821-7.488a94.123 94.123 0 0 0 -93.917 67.7zm-136.607 130.062c-1.181-.462-2.53-.937-4.2-1.439-1.749-.526-3.761-1.034-5.893-1.571-2.249-.568-4.622-1.167-6.887-1.817a81.221 81.221 0 0 1 -7.736-2.626 52.681 52.681 0 0 1 -7.96-3.915 57.093 57.093 0 0 1 -5.122-3.558 19.314 19.314 0 0 1 -2.1 3.175 29.979 29.979 0 0 1 -4.78 4.617c-1.583 1.254-3.581 2.64-5.787 4.091-1.069.7-2 1.305-2.835 1.842v15.331a30.06 30.06 0 0 0 7.975 20.595 25.087 25.087 0 0 0 37.345 0 30.056 30.056 0 0 0 7.976-20.595v-14.13zm-3.794 117.75q-.863.314-1.737.606a66.691 66.691 0 0 1 -42.171 0q-.874-.292-1.736-.606 8.1 16.046 22.822 31.483 14.722-15.438 22.822-31.483zm-44.516-66.689-1.446 6.36a26.013 26.013 0 0 1 -8.247 14.073q-.63.554-1.295 1.069a86.352 86.352 0 0 0 2.3 24.838 49.4 49.4 0 0 0 13.842 7.2 53.4 53.4 0 0 0 33.079 0 49.4 49.4 0 0 0 13.842-7.2 86.282 86.282 0 0 0 2.3-24.786q-.7-.539-1.362-1.121a26.01 26.01 0 0 1 -8.247-14.073l-1.446-6.36a39.133 39.133 0 0 1 -43.323 0zm102.131 19.247c21.553 5.007 34.482 13.526 35.172 45.641v.142h.028v79.966a7.273 7.273 0 0 1 -7.272 7.273h-216.795a7.273 7.273 0 0 1 -7.273-7.273v-79.966a7.309 7.309 0 0 1 .049-.842c.911-33.257 15.2-40.822 38.733-45.728.5-7.586 1.773-17.265 3.2-28.09 2.421-18.4 5.3-40.261 5.3-60.319a67.9 67.9 0 0 1 19.627-47.875 66.563 66.563 0 0 1 94.957 0 67.889 67.889 0 0 1 19.627 47.875c0 22.494 5.342 45.587 9.591 63.955 2.279 9.851 4.261 18.419 5.062 25.241zm-46.7-31.379a44.85 44.85 0 0 0 7.42-24.8v-18.92a7.275 7.275 0 0 0 -4.889-6.873c-1.2-.525-2.455-1.065-4.1-1.717-1.832-.726-3.692-1.4-5.606-1.978-2.014-.606-4.2-1.158-6.517-1.742-2.01-.507-4.13-1.042-6.433-1.7-2.252-.647-4.44-1.344-6.372-2.113a37.981 37.981 0 0 1 -5.745-2.837 66.527 66.527 0 0 1 -8.659-6.687c-.68-.593-.82-.722-1.072-.939l.012-.014a14.573 14.573 0 0 0 -4.812-3.1c-6.5-2.195-9.224.041-10.259 6.5a21.51 21.51 0 0 0 -.208 2.607 14.785 14.785 0 0 1 -.37 3.3 3.848 3.848 0 0 1 -.715 1.241 16.145 16.145 0 0 1 -2.507 2.344c-1.423 1.129-3.022 2.244-4.707 3.353-1.127.741-3.346 2.131-5.627 3.557a7.274 7.274 0 0 0 -3.8 6.392v19.327a44.847 44.847 0 0 0 7.42 24.8l-3.479 15.309a11.711 11.711 0 0 1 -3.7 6.345 18.2 18.2 0 0 1 -8.506 3.875c-3.592.726-8.189 1.542-12.649 2.326.575-6.608 1.632-14.641 2.8-23.479 2.5-19 5.467-41.557 5.467-62.194a53.45 53.45 0 0 1 15.423-37.7 52.155 52.155 0 0 1 74.275 0 53.45 53.45 0 0 1 15.423 37.7c0 24.013 5.564 48.064 9.989 67.193 1.675 7.243 3.177 13.738 4.1 19.051l-2.054-.362c-4.821-.846-9.929-1.744-13.842-2.535a18.2 18.2 0 0 1 -8.506-3.875 11.711 11.711 0 0 1 -3.7-6.345l-3.482-15.31zm-41.01 149.856h-45.614a7.289 7.289 0 0 0 -.715-1.2 26.958 26.958 0 0 1 -5.261-16.38q0-9.969 5.972-22.523a7.256 7.256 0 0 0 -13.125-6.193q-7.392 15.54-7.393 28.716a41.569 41.569 0 0 0 3.738 17.583h-31.487v-72.697c0-.137 0-.274-.012-.41.791-27.416 16-30.094 40.333-34.368 3.862-.679 7.947-1.4 13.53-2.518a102.527 102.527 0 0 0 9.229 40.627q10.013 22.326 30.808 43.123v26.24zm14.545-26.241q20.795-20.795 30.808-43.121a102.527 102.527 0 0 0 9.226-40.616c5.55 1.115 9.617 1.83 13.466 2.506 24.453 4.3 39.695 6.976 40.344 34.778h-.024v72.694h-31.422a41.554 41.554 0 0 0 3.738-17.583q0-13.176-7.392-28.716a7.256 7.256 0 1 0 -13.125 6.193q5.971 12.554 5.972 22.523a26.959 26.959 0 0 1 -5.262 16.38 7.359 7.359 0 0 0 -.715 1.2h-45.614zm314.57-424.669a17.825 17.825 0 0 1 12.368 4.889 15.841 15.841 0 0 1 4.992 11.445v162.839a15.841 15.841 0 0 1 -4.992 11.445 17.821 17.821 0 0 1 -12.368 4.889h-92.395a7.234 7.234 0 0 0 -3.9 1.136l-22.385 12.384q-.276.151-.532.323l-36.3 20.086v-26.656a7.273 7.273 0 0 0 -7.273-7.273h-55.544a17.824 17.824 0 0 1 -12.368-4.889 15.844 15.844 0 0 1 -4.991-11.445v-162.839a15.842 15.842 0 0 1 4.991-11.445 17.829 17.829 0 0 1 12.368-4.889zm-218.329-14.545h218.329a32.378 32.378 0 0 1 22.425 8.979 30.272 30.272 0 0 1 9.48 21.9v162.839a30.268 30.268 0 0 1 -9.48 21.9 32.375 32.375 0 0 1 -22.425 8.98h-90.544l-21.149 11.7q-.257.141-.518.259l-47.084 26.051a7.236 7.236 0 0 1 -10.73-6.335h-.037v-31.673h-48.267a32.378 32.378 0 0 1 -22.425-8.98 30.272 30.272 0 0 1 -9.48-21.9v-162.841a30.268 30.268 0 0 1 9.48-21.9 32.378 32.378 0 0 1 22.425-8.979zm53.254 72.778-10.193-10.192 10.193-10.193a7.272 7.272 0 0 0 -10.285-10.284l-10.192 10.191-10.192-10.19a7.272 7.272 0 0 0 -10.284 10.284l10.192 10.192-10.192 10.191a7.272 7.272 0 0 0 10.284 10.284l10.192-10.191 10.192 10.192a7.272 7.272 0 0 0 10.285-10.284zm123.469 89.042-10.192-10.192 10.192-10.193a7.272 7.272 0 0 0 -10.284-10.284l-10.192 10.192-10.192-10.191a7.272 7.272 0 1 0 -10.284 10.284l10.192 10.192-10.192 10.191a7.272 7.272 0 1 0 10.284 10.281l10.192-10.191 10.192 10.191a7.272 7.272 0 0 0 10.284-10.284z\" fill-rule=\"evenodd\"></path></svg>							\n												<h5>\n													Coping Strategies												</h5>\n											<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M248.298,398.776v-96.35c0-5.971-2.694-11.517-7.393-15.216l-59.928-47.132c-2.984-2.348-7.254-2.094-9.939,0.592   l-14.349,14.349c-2.986,2.985-4.637,7.118-4.53,11.338c0.106,4.215,1.961,8.252,5.079,11.069l30.406,27.556l-1.867,1.93   c-1.111,1.149-2.665,1.808-4.265,1.808h-5.366c-4.046,0-7.953-1.201-11.299-3.474l-66.646-45.245   c-1.237-0.838-1.976-2.237-1.976-3.742v-42.516c0-8.724-7.102-15.821-15.832-15.821h-23.54c-4.142,0-7.5,3.358-7.5,7.5v72.637   c0,6.404,3.145,12.405,8.408,16.048l46.124,31.979c3.404,2.359,8.077,1.513,10.437-1.89c2.36-3.404,1.514-8.077-1.89-10.437   l-46.128-31.982c-1.222-0.846-1.951-2.235-1.951-3.718v-65.137h16.039c0.458,0,0.832,0.368,0.832,0.821v42.516   c0,6.486,3.2,12.526,8.556,16.155l66.64,45.241c5.84,3.967,12.661,6.064,19.726,6.064h5.366c5.643,0,11.128-2.326,15.047-6.38   l2.254-2.331c2.749-2.837,4.193-6.572,4.066-10.518c-0.127-3.948-1.811-7.585-4.741-10.242l-30.836-27.946   c-0.039-0.036-0.143-0.129-0.148-0.327c-0.005-0.206,0.101-0.312,0.141-0.352l9.642-9.642l54.693,43.015   c1.061,0.834,1.668,2.084,1.668,3.427v88.844h-60.32v-24.995c0-6.607-3.24-12.792-8.658-16.538l-27.532-19.089   c-3.405-2.36-8.077-1.514-10.437,1.89s-1.514,8.077,1.89,10.437l27.541,19.095c1.375,0.951,2.196,2.522,2.196,4.205v24.995h-3.726   c-4.142,0-7.5,3.358-7.5,7.5v58.66c0,0.033,0.004,0.064,0.005,0.097V504.5c0,4.142,3.358,7.5,7.5,7.5h25.971   c4.142,0,7.5-3.358,7.5-7.5c0-4.142-3.358-7.5-7.5-7.5h-18.471v-47.64h71.535v8.07c0,0.016,0.002,0.032,0.002,0.048V497h-23.519   c-4.142,0-7.5,3.358-7.5,7.5c0,4.142,3.358,7.5,7.5,7.5h31.019c4.142,0,7.5-3.358,7.5-7.5v-62.64c0-0.016-0.002-0.032-0.002-0.048   v-42.92C248.293,398.853,248.298,398.815,248.298,398.776z M233.292,434.359h-71.54V406.27h3.62c0.036,0,0.07,0.005,0.106,0.005   h67.814V434.359z\"></path>	</g></g><g>	<g>		<path d=\"M455.147,197.92h-23.535c-8.728,0-15.828,7.101-15.828,15.828v42.51c0,1.501-0.742,2.9-1.984,3.744l-66.637,45.24   c-3.349,2.273-7.258,3.475-11.304,3.475h-5.362c-1.604,0-3.162-0.66-4.279-1.813l-1.862-1.922l30.408-27.549   c3.125-2.831,4.977-6.871,5.08-11.085c0.104-4.215-1.546-8.342-4.526-11.324l-14.354-14.354c-2.687-2.686-6.956-2.939-9.94-0.592   l-47.179,37.107l-12.747,10.025c-4.695,3.693-7.389,9.238-7.389,15.211v96.35c0,0.02,0.003,0.038,0.003,0.058v42.972   c0,0.02-0.003,0.038-0.003,0.058v62.64c0,4.142,3.357,7.5,7.5,7.5h86.538c4.143,0,7.5-3.358,7.5-7.5v-46.973   c0-0.033,0.005-0.064,0.005-0.097v-58.66c0-4.142-3.357-7.5-7.5-7.5h-3.729v-24.994c0-1.68,0.824-3.254,2.204-4.211l98.021-67.96   c5.26-3.647,8.4-9.646,8.4-16.046V205.42C462.647,201.278,459.29,197.92,455.147,197.92z M350.247,497h-71.538v-39.512   c0-0.02,0.003-0.038,0.003-0.058v-8.07h71.535V497z M350.252,434.36h-71.54v-28.088h67.811c0.013,0,0.026-0.002,0.039-0.002h3.69   V434.36z M447.65,278.059h-0.003c0,1.483-0.728,2.874-1.947,3.719l-98.021,67.961c-5.42,3.759-8.656,9.941-8.656,16.538v24.994   H278.71v-88.848c0-1.343,0.605-2.591,1.662-3.421l12.747-10.025l41.946-32.992l9.646,9.646c0.039,0.04,0.144,0.144,0.139,0.347   s-0.114,0.302-0.155,0.339l-30.83,27.931c-2.928,2.653-4.611,6.289-4.74,10.238c-0.128,3.95,1.314,7.688,4.065,10.527l2.256,2.328   c3.924,4.053,9.41,6.377,15.053,6.377h5.362c7.062,0,13.884-2.097,19.729-6.064l66.638-45.241   c5.359-3.639,8.559-9.677,8.559-16.154v-42.51c0-0.457,0.371-0.828,0.828-0.828h16.035V278.059z\"></path>	</g></g><g>	<g>		<path d=\"M256.002,0c-55.95,0-102.985,41.857-109.407,97.364c-0.476,4.115,2.474,7.836,6.588,8.313   c4.12,0.482,7.836-2.474,8.313-6.588C167.042,51.15,207.671,15,256.002,15c52.466,0,95.15,42.684,95.15,95.15   c0,41.507-26.532,77.917-66.021,90.603c-1.723,0.553-3.187,1.71-4.123,3.258l-25.006,41.333l-25.006-41.333   c-0.937-1.548-2.401-2.705-4.123-3.258c-33.804-10.859-58.561-39.313-64.609-74.259c-0.707-4.082-4.587-6.812-8.669-6.111   c-4.082,0.707-6.817,4.588-6.111,8.669c6.842,39.527,34.351,71.881,72.103,85.076l30,49.587c1.358,2.246,3.792,3.618,6.417,3.618   s5.059-1.372,6.417-3.618l29.999-49.587c44.219-15.453,73.732-56.883,73.732-103.978C366.152,49.413,316.739,0,256.002,0z\"></path>	</g></g><g>	<g>		<path d=\"M315.754,102.65h-10.565c-1.234-8.128-4.447-15.612-9.123-21.955l7.492-7.492c2.929-2.929,2.929-7.678,0-10.606   c-2.93-2.929-7.678-2.929-10.607,0l-7.491,7.491c-6.343-4.676-13.827-7.888-21.955-9.123V50.4c0-4.142-3.357-7.5-7.5-7.5   c-4.142,0-7.5,3.358-7.5,7.5v10.565c-8.128,1.234-15.612,4.447-21.955,9.123l-7.491-7.491c-2.929-2.929-7.678-2.929-10.606,0   c-2.929,2.929-2.929,7.678,0,10.606l7.491,7.491c-4.676,6.343-7.889,13.828-9.123,21.956c0,0-10.569,0-10.569,0   c-4.142,0-7.5,3.358-7.5,7.5c0,4.142,3.358,7.5,7.5,7.5h10.565c1.234,8.128,4.447,15.613,9.123,21.956l-7.491,7.491   c-2.929,2.929-2.929,7.678,0,10.606c1.464,1.464,3.384,2.197,5.303,2.197s3.839-0.732,5.303-2.197l7.491-7.491   c6.343,4.676,13.828,7.889,21.956,9.123V169.9c0,4.142,3.358,7.5,7.5,7.5c4.143,0,7.5-3.358,7.5-7.5v-10.565   c8.128-1.234,15.612-4.447,21.956-9.123l7.491,7.491c1.465,1.464,3.385,2.197,5.304,2.197c1.919,0,3.839-0.732,5.304-2.197   c2.929-2.929,2.929-7.678,0-10.606l-7.491-7.491c4.676-6.343,7.889-13.828,9.123-21.956h10.565c4.143,0,7.5-3.358,7.5-7.5   C323.254,106.008,319.897,102.65,315.754,102.65z M290.751,110.164c-0.007,19.151-15.586,34.731-34.738,34.738   c-0.004,0-0.009-0.001-0.013-0.001c-0.004,0-0.009,0.001-0.013,0.001c-19.151-0.007-34.731-15.586-34.738-34.738   c0-0.004,0.001-0.009,0.001-0.013c0-0.004-0.001-0.008-0.001-0.013c0.009-19.154,15.592-34.735,34.746-34.738   c0.002,0,0.004,0,0.006,0s0.004,0,0.006,0c19.155,0.004,34.737,15.584,34.744,34.738c0,0.004-0.001,0.008-0.001,0.013   C290.75,110.155,290.751,110.16,290.751,110.164z\"></path>	</g></g><g>	<g>		<path d=\"M256.002,85.119c-13.802,0-25.032,11.229-25.032,25.031c0,13.803,11.229,25.032,25.032,25.032   c13.803,0,25.031-11.229,25.031-25.031C281.033,96.348,269.804,85.119,256.002,85.119z M256.002,120.182   c-5.532,0-10.032-4.5-10.032-10.031c0-5.532,4.5-10.032,10.032-10.032c5.531,0,10.031,4.5,10.031,10.032   C266.033,115.682,261.533,120.182,256.002,120.182z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>							\n												<h5>\n													Goal Setting												</h5>\n											<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xodm=\"http://www.corel.com/coreldraw/odm/2003\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_2077007814064\"><g id=\"_200306976\"><path d=\"m256 319.44c-1.59 0-3.12-.63-4.24-1.75-11.13-11.13-22.33-21.98-33.17-32.48-62.94-60.98-117.31-113.65-117.31-179.39 0-44.31 36.05-80.35 80.36-80.35 37.74 0 57.46 18.43 74.36 48.87 16.9-30.44 36.62-48.87 74.35-48.87 44.31 0 80.36 36.04 80.36 80.35 0 65.74-54.36 118.41-117.31 179.39-10.83 10.49-22.03 21.35-33.16 32.48-1.12 1.12-2.65 1.75-4.24 1.75zm-74.36-281.97c-37.69 0-68.35 30.66-68.35 68.35 0 60.66 52.67 111.69 113.65 170.77 9.5 9.2 19.27 18.67 29.06 28.39 9.78-9.72 19.56-19.19 29.06-28.39 60.98-59.08 113.65-110.11 113.65-170.77 0-37.69-30.66-68.35-68.35-68.35-31.58 0-49.63 13.72-68.99 52.45-1.02 2.03-3.1 3.31-5.37 3.31s-4.35-1.28-5.37-3.31c-19.36-38.73-37.41-52.45-68.99-52.45z\"></path></g><g><g id=\"_200307000\"><path d=\"m268.35 249.13h-24.7c-3.32 0-6-2.68-6-6v-11.56c-2.07-.72-4.09-1.56-6.06-2.51l-8.18 8.18c-1.13 1.12-2.65 1.75-4.25 1.75-1.59 0-3.11-.63-4.24-1.75l-17.47-17.47c-2.34-2.34-2.34-6.14 0-8.49l8.18-8.18c-.95-1.97-1.79-3.99-2.51-6.06h-11.57c-3.31 0-6-2.68-6-6v-24.7c0-3.32 2.69-6 6-6h11.57c.72-2.07 1.56-4.09 2.51-6.06l-8.18-8.18c-1.13-1.13-1.76-2.65-1.76-4.24 0-1.6.63-3.12 1.76-4.25l17.47-17.47c2.34-2.34 6.14-2.34 8.49 0l8.18 8.18c1.96-.95 3.99-1.79 6.05-2.51v-11.56c0-3.32 2.69-6 6-6h24.71c3.31 0 6 2.68 6 6v11.56c2.07.72 4.09 1.56 6.06 2.51l8.18-8.18c1.12-1.12 2.65-1.76 4.24-1.76s3.12.64 4.24 1.76l17.48 17.47c1.12 1.13 1.75 2.65 1.75 4.25 0 1.59-.63 3.11-1.75 4.24l-8.19 8.18c.96 1.97 1.8 3.99 2.52 6.06h11.56c3.32 0 6 2.68 6 6v24.7c0 3.32-2.68 6-6 6h-11.56c-.72 2.07-1.56 4.09-2.52 6.06l8.19 8.18c1.12 1.13 1.75 2.65 1.75 4.24 0 1.6-.63 3.12-1.75 4.25l-17.47 17.47c-2.35 2.34-6.15 2.34-8.49 0l-8.18-8.18c-1.97.95-3.99 1.79-6.06 2.51v11.57c0 3.31-2.69 5.99-6 5.99zm-18.7-12h12.7v-10.02c0-2.74 1.86-5.14 4.52-5.82 4.06-1.03 7.95-2.64 11.56-4.79 2.36-1.4 5.37-1.02 7.31.92l7.09 7.09 8.99-8.99-7.09-7.09c-1.94-1.94-2.32-4.95-.92-7.31 2.15-3.6 3.76-7.49 4.79-11.56.68-2.66 3.07-4.52 5.82-4.52h10.02v-12.7h-10.02c-2.75 0-5.14-1.87-5.82-4.52-1.03-4.07-2.64-7.95-4.79-11.56-1.4-2.36-1.03-5.37.92-7.31l7.09-7.1-8.99-8.98-7.09 7.09c-1.94 1.94-4.95 2.32-7.31.92-3.61-2.15-7.5-3.77-11.56-4.8-2.66-.67-4.52-3.07-4.52-5.81v-10.03h-12.7v10.03c0 2.74-1.87 5.14-4.53 5.81-4.05 1.04-7.94 2.65-11.55 4.8-2.36 1.4-5.37 1.02-7.31-.92l-7.1-7.09-8.98 8.99 7.09 7.09c1.94 1.94 2.32 4.95.92 7.31-2.15 3.61-3.76 7.5-4.8 11.55-.67 2.66-3.07 4.53-5.81 4.53h-10.02v12.7h10.02c2.74 0 5.14 1.86 5.81 4.52 1.04 4.06 2.65 7.95 4.8 11.56 1.4 2.36 1.02 5.37-.92 7.31l-7.09 7.09 8.98 8.99 7.1-7.09c1.94-1.94 4.95-2.32 7.31-.92 3.61 2.15 7.5 3.76 11.56 4.79 2.66.68 4.52 3.08 4.52 5.82z\"></path></g><g id=\"_200306760\"><path d=\"m256 215.48c-20.29 0-36.8-16.5-36.8-36.79s16.51-36.8 36.8-36.8 36.79 16.51 36.79 36.8-16.5 36.79-36.79 36.79zm0-61.59c-13.67 0-24.8 11.13-24.8 24.8s11.13 24.79 24.8 24.79 24.79-11.12 24.79-24.79-11.12-24.8-24.79-24.8z\"></path></g></g><g id=\"_200306784\"><path d=\"m461.9 340.14c-.4 0-.8-.04-1.21-.12-2.77-.57-4.77-3.01-4.79-5.84-.01-.8-.54-16.35-18.14-25.35-4.77 6.05-14.98 15.83-31.26 15.83-7.09 0-14.53-1.91-22.17-5.68-1.97 2.49-4.39 6.45-4.71 11.19-.17 2.67-2.1 4.89-4.71 5.46-2.62.57-5.29-.67-6.56-3.03-.73-1.35-17.54-33.58 6.24-66.87.25-.34.54-.67.85-.95.53-.48 13.04-11.64 29.73-11.64 8.33 0 16.16 2.73 23.32 8.11 6.78.84 29.41 4.94 40.34 22.87 8.21 13.48 7.74 31.11-1.42 52.39-.96 2.24-3.15 3.63-5.51 3.63zm-26.24-44.82c.73 0 1.45.13 2.16.41 12.4 4.82 19.68 12.11 23.97 19.04 1.81-9.72.76-17.87-3.18-24.36-9.39-15.48-32.65-17.38-32.88-17.39-1.23-.09-2.4-.56-3.35-1.33-5.36-4.35-11.14-6.55-17.2-6.55-10.52 0-19.21 6.52-21.25 8.17-10.03 14.4-10.85 28.57-9.39 38.73 2.4-3.14 4.55-4.96 4.74-5.12 1.93-1.61 4.66-1.85 6.84-.59 7.27 4.2 14.13 6.33 20.38 6.33 15.81 0 23.56-13.64 23.88-14.22 1.09-1.97 3.15-3.12 5.28-3.12z\"></path></g><g id=\"_200307264\"><path d=\"m419.46 411.58c-.16 0-.32 0-.48 0-10.3-.15-20.06-5.17-28.23-14.52-7.44-8.5-13.2-20.37-16.78-34.51-9.81-1.95-15.33-9.01-16.53-15.9-1.66-9.54 3.98-18.57 14.03-22.48 3.08-1.2 6.56.33 7.76 3.42s-.33 6.56-3.41 7.77c-5.64 2.19-7.06 6.34-6.56 9.23.53 3.02 3.36 6.31 9.74 6.48 2.77.08 5.12 2.03 5.71 4.73 5.7 26.37 19.22 43.55 34.45 43.78h.29c14.2 0 26.75-15.15 32.81-39.65.62-2.5 2.75-4.32 5.31-4.54 5.81-.5 8.33-3.74 8.74-6.61.43-2.97-1.08-6.91-6.58-9.05-3.09-1.2-4.62-4.68-3.42-7.76 1.2-3.09 4.68-4.62 7.77-3.42 9.78 3.8 15.45 12.62 14.11 21.93-1.15 8.02-6.99 14.03-15.29 16.15-7.91 27.89-24.31 44.95-43.44 44.95z\"></path></g><g id=\"_200306808\"><path d=\"m332.55 486.53c-1.59 0-3.11-.63-4.24-1.75-1.12-1.13-1.76-2.65-1.76-4.25 0-44.88 21.25-52.28 38.32-58.24 13.67-4.77 23.55-8.21 24.07-29.7.08-3.31 2.86-5.89 6.15-5.85 3.31.08 5.93 2.83 5.85 6.15-.73 29.78-17.41 35.6-32.12 40.73-15.3 5.34-28.64 9.99-30.13 40.91h161.17c-1.49-30.92-14.83-35.57-30.13-40.91-14.73-5.13-31.42-10.96-32.12-40.8-.08-3.31 2.54-6.06 5.85-6.14 3.31-.11 6.06 2.54 6.14 5.86.51 21.53 10.4 24.98 24.08 29.75 17.07 5.96 38.32 13.36 38.32 58.24 0 3.31-2.69 6-6 6z\"></path></g><g id=\"_200306616\"><path d=\"m419.27 443.04c-15.8 0-30.68-6.12-41.9-17.25-2.36-2.33-2.38-6.13-.04-8.48 2.33-2.35 6.13-2.37 8.48-.04 8.96 8.88 20.85 13.77 33.46 13.77 12.62 0 24.5-4.89 33.46-13.77 2.36-2.33 6.16-2.31 8.49.04s2.31 6.15-.04 8.48c-11.22 11.13-26.11 17.25-41.91 17.25z\"></path></g><g id=\"_200307672\"><path d=\"m374.04 486.53c-3.32 0-6-2.68-6-6v-19.82c0-3.31 2.68-6 6-6 3.31 0 6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307888\"><path d=\"m464.51 486.53c-3.31 0-6-2.68-6-6v-19.82c0-3.31 2.69-6 6-6s6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307744\"><path d=\"m135.35 340.14c-.4 0-.8-.04-1.21-.12-2.77-.57-4.77-3.01-4.79-5.84-.01-.8-.54-16.35-18.14-25.35-4.77 6.05-14.98 15.83-31.26 15.83-7.09 0-14.53-1.91-22.17-5.68-1.97 2.49-4.39 6.45-4.7 11.19-.18 2.67-2.11 4.89-4.72 5.46-2.62.57-5.29-.67-6.56-3.03-.72-1.35-17.54-33.58 6.24-66.87.25-.34.54-.67.86-.95.52-.48 13.03-11.64 29.73-11.64 8.32 0 16.16 2.73 23.31 8.11 6.78.84 29.41 4.94 40.34 22.87 8.22 13.48 7.74 31.11-1.42 52.39-.96 2.24-3.15 3.63-5.51 3.63zm-26.25-44.82c.72 0 1.46.13 2.17.41 12.4 4.82 19.69 12.1 23.97 19.04 1.81-9.72.76-17.87-3.18-24.36-9.39-15.48-32.65-17.37-32.88-17.39-1.22-.09-2.4-.56-3.35-1.33-5.36-4.35-11.14-6.55-17.2-6.55-10.52 0-19.21 6.52-21.24 8.17-10.04 14.4-10.85 28.57-9.4 38.73 2.4-3.14 4.55-4.96 4.74-5.12 1.93-1.61 4.67-1.85 6.84-.59 7.27 4.2 14.13 6.33 20.38 6.33 16.01 0 23.79-14.05 23.86-14.2 1.08-1.98 3.14-3.14 5.29-3.14z\"></path></g><g id=\"_200307960\"><path d=\"m92.91 411.58c-.16 0-.32 0-.48 0-10.3-.15-20.06-5.17-28.23-14.52-7.44-8.5-13.2-20.37-16.79-34.51-9.8-1.95-15.32-9.01-16.52-15.9-1.66-9.54 3.98-18.57 14.03-22.48 3.08-1.2 6.56.33 7.76 3.42s-.33 6.56-3.41 7.77c-5.64 2.19-7.06 6.34-6.56 9.23.53 3.02 3.36 6.31 9.74 6.48 2.77.08 5.12 2.03 5.71 4.73 5.7 26.37 19.22 43.55 34.45 43.78h.29c14.2 0 26.75-15.15 32.81-39.65.62-2.5 2.75-4.32 5.31-4.54 5.81-.5 8.33-3.74 8.74-6.61.43-2.97-1.08-6.91-6.58-9.05-3.09-1.2-4.62-4.68-3.42-7.76 1.2-3.09 4.68-4.62 7.77-3.42 9.78 3.8 15.45 12.62 14.11 21.93-1.16 8.02-6.99 14.03-15.3 16.15-7.9 27.89-24.3 44.95-43.43 44.95z\"></path></g><g id=\"_200307408\"><path d=\"m6 486.53c-1.59 0-3.11-.63-4.24-1.75-1.12-1.13-1.76-2.65-1.76-4.25 0-44.88 21.25-52.28 38.32-58.24 13.67-4.77 23.55-8.21 24.08-29.7.08-3.31 2.82-5.89 6.14-5.85 3.31.08 5.93 2.83 5.85 6.15-.73 29.78-17.41 35.6-32.12 40.73-15.3 5.34-28.64 9.99-30.13 40.91h161.17c-1.5-30.92-14.83-35.57-30.13-40.91-14.73-5.13-31.42-10.96-32.12-40.8-.08-3.31 2.54-6.06 5.85-6.14 3.27-.11 6.06 2.54 6.14 5.86.51 21.53 10.4 24.98 24.08 29.75 17.07 5.96 38.32 13.36 38.32 58.24 0 3.31-2.69 6-6 6h-173.45z\"></path></g><g id=\"_200307648\"><path d=\"m92.73 443.04c-15.81 0-30.69-6.12-41.91-17.25-2.36-2.33-2.37-6.13-.04-8.48s6.13-2.37 8.48-.04c8.97 8.88 20.85 13.77 33.47 13.77 12.61 0 24.49-4.89 33.45-13.77 2.36-2.33 6.16-2.31 8.49.04s2.31 6.15-.04 8.48c-11.22 11.13-26.11 17.25-41.9 17.25z\"></path></g><g id=\"_200307720\"><path d=\"m47.49 486.53c-3.32 0-6-2.68-6-6v-19.82c0-3.31 2.68-6 6-6 3.31 0 6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307456\"><path d=\"m137.96 486.53c-3.31 0-6-2.68-6-6v-19.82c0-3.31 2.69-6 6-6s6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307840\"><path d=\"m94.44 269.46c-3.31 0-6-2.68-6-6v-23.34c0-8.01 6.52-14.53 14.53-14.53h70.38c3.31 0 6 2.69 6 6 0 3.32-2.69 6-6 6h-70.38c-1.37 0-2.53 1.16-2.53 2.53v23.34c0 3.32-2.68 6-6 6zm323.12-1.73c-3.32 0-6-2.69-6-6v-21.61c0-1.37-1.16-2.53-2.53-2.53h-70.38c-3.31 0-6-2.68-6-6 0-3.31 2.69-6 6-6h70.37c8.02 0 14.54 6.52 14.54 14.53v21.61c0 3.31-2.69 6-6 6z\"></path></g></g></g></svg>							\n												<h5>\n													Relationship Improvement												</h5>\n											<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m434.61 333.03-21.34-36.58c6.76-18.2 7.07-35.07.96-51.47-5.64-15.15-16.96-29.98-34.59-45.33-11.13-9.69-23.22-17.82-35.9-24.21.12-3.43-1.13-6.87-3.68-9.41l-11.45-11.45c-.24-.24-.28-.47-.12-.78 1.77-3.49 3.28-7.13 4.5-10.84.11-.32.3-.46.64-.46h16.19c6.99 0 12.67-5.68 12.67-12.67v-22.44c0-6.99-5.68-12.67-12.67-12.67h-16.19c-.34 0-.53-.14-.64-.46-1.22-3.71-2.73-7.35-4.5-10.84-.15-.3-.12-.53.12-.77l11.45-11.45c2.39-2.39 3.71-5.57 3.71-8.96s-1.32-6.57-3.71-8.96l-15.87-15.87c-2.39-2.39-5.57-3.71-8.96-3.71s-6.57 1.32-8.96 3.71l-11.45 11.45c-.24.24-.47.28-.77.12-3.48-1.77-7.13-3.28-10.84-4.5-.32-.11-.46-.3-.46-.64v-16.17c0-6.99-5.68-12.67-12.67-12.67h-22.44c-6.99 0-12.67 5.68-12.67 12.67v16.19c0 .34-.14.53-.46.64-3.7 1.22-7.35 2.73-10.84 4.5-.3.15-.54.12-.77-.12l-11.45-11.45c-2.39-2.39-5.57-3.71-8.96-3.71s-6.57 1.32-8.96 3.71l-15.87 15.87c-2.39 2.39-3.71 5.57-3.71 8.96s1.32 6.57 3.71 8.96l11.45 11.45c.24.24.28.47.12.77-1.77 3.49-3.28 7.13-4.5 10.84-.11.32-.3.46-.64.46h-16.19c-6.99 0-12.67 5.68-12.67 12.67v10.02c-.5 1.37-.76 2.83-.76 4.3v16.19c0 .34-.14.53-.46.64-3.7 1.22-7.35 2.73-10.84 4.5-.3.15-.54.12-.78-.12l-11.45-11.45c-2.39-2.39-5.57-3.71-8.96-3.71s-6.57 1.32-8.96 3.71l-15.87 15.87c-2.39 2.39-3.71 5.57-3.71 8.96s1.32 6.57 3.71 8.96l11.45 11.45c.24.24.28.47.12.77-1.77 3.49-3.28 7.13-4.49 10.84-.11.32-.3.46-.64.46h-16.16c-6.99 0-12.67 5.68-12.67 12.67v22.44c0 6.99 5.68 12.67 12.67 12.67h16.19c.34 0 .53.14.63.46 1.22 3.7 2.73 7.35 4.5 10.84.15.3.12.53-.12.77l-11.45 11.45c-2.39 2.39-3.71 5.57-3.71 8.96s1.32 6.57 3.71 8.96l15.87 15.87c2.39 2.39 5.57 3.71 8.96 3.71s6.57-1.32 8.96-3.71l11.45-11.45c.24-.24.47-.28.78-.12 2.63 1.33 5.35 2.52 8.12 3.55 3.63 25.86 18.43 52.67 31.88 77.01 3.47 6.29 6.76 12.23 9.84 18.11 12.69 35.72 7.66 78.5-12.56 106.56l-6.85 9.51h173.63v-44.26c38.01-.13 59.59-5.99 67.67-18.29 6.96-10.6 1.74-22.31-1.38-29.3-.44-.98-.98-2.19-1.34-3.11 3.35-4.7 4.47-10.39 3.12-16.07.14-.2.3-.41.43-.59 2.26-3.05 6.46-8.74 3.06-18.47-.43-1.24-.63-2.03-.72-2.5.71-.41 1.88-.97 2.87-1.44 1.82-.86 4.08-1.94 6.69-3.46 4.46-2.6 7.64-6.79 8.96-11.8s.59-10.29-2.01-14.74zm-267.36-225.64c0-.36.31-.67.67-.67h16.19c5.49 0 10.32-3.5 12.04-8.71 1.03-3.13 2.31-6.21 3.8-9.16 2.48-4.9 1.54-10.8-2.34-14.68l-11.45-11.45c-.13-.13-.19-.29-.19-.47 0-.19.06-.35.19-.47l15.87-15.87c.25-.25.69-.25.95 0l11.45 11.45c3.88 3.88 9.78 4.82 14.68 2.34 2.95-1.49 6.03-2.77 9.16-3.8 5.21-1.71 8.72-6.55 8.72-12.04v-16.19c0-.36.31-.67.67-.67h22.44c.36 0 .67.31.67.67v16.19c0 5.49 3.5 10.32 8.71 12.04 3.13 1.03 6.21 2.31 9.16 3.8 4.9 2.48 10.8 1.54 14.68-2.34l11.45-11.45c.25-.25.69-.25.95 0l15.87 15.87c.13.13.19.29.19.47 0 .19-.06.35-.19.47l-11.45 11.45c-3.88 3.88-4.83 9.78-2.34 14.68 1.49 2.95 2.77 6.03 3.8 9.16 1.71 5.21 6.55 8.71 12.04 8.71h16.19c.36 0 .67.31.67.67v22.44c0 .36-.31.67-.67.67h-16.19c-5.49 0-10.32 3.5-12.04 8.71-1.03 3.13-2.31 6.21-3.8 9.16-2.48 4.9-1.54 10.8 2.34 14.68l4.07 4.07c-6.1-2.13-12.28-3.88-18.52-5.21-5.2-1.11-10.41-1.91-15.6-2.44 12.29-9.41 20.24-24.22 20.24-40.86 0-28.37-23.08-51.45-51.45-51.45s-51.45 23.08-51.45 51.45c0 20.1 11.59 37.53 28.43 45.99-1.46.45-2.91.93-4.35 1.43-13.15 4.6-25.02 11.14-35.4 19.37l-9.95-9.95c-.13-.13-.19-.28-.19-.47s.06-.35.19-.47l11.45-11.45c3.88-3.88 4.82-9.78 2.34-14.68-1.49-2.95-2.77-6.03-3.8-9.16-1.71-5.21-6.55-8.72-12.04-8.72h-16.19c-.36 0-.67-.31-.67-.67zm91.61 50.67c-21.75 0-39.45-17.7-39.45-39.45s17.7-39.45 39.45-39.45 39.45 17.7 39.45 39.45-17.7 39.45-39.45 39.45zm-81.2 25.88 9.4 9.4c-14.24 13.88-24.92 31.39-31.29 51.61-10.4-7.3-16.85-19.33-16.85-32.3 0-20.29 15.4-37.05 35.13-39.21-.06.51-.1 1.02-.1 1.54 0 3.39 1.32 6.57 3.71 8.96zm-43.73 89.97-11.45 11.45c-.25.25-.69.25-.94 0l-15.87-15.87c-.16-.16-.19-.34-.19-.47 0-.19.06-.35.19-.47l11.45-11.45c3.88-3.88 4.83-9.78 2.34-14.68-1.49-2.95-2.77-6.03-3.8-9.16-1.71-5.21-6.55-8.72-12.04-8.72h-16.19c-.36 0-.67-.31-.67-.67v-22.44c0-.36.31-.67.67-.67h16.19c5.49 0 10.32-3.5 12.04-8.71 1.03-3.13 2.31-6.21 3.8-9.16 2.48-4.9 1.54-10.8-2.34-14.68l-11.45-11.45c-.16-.16-.19-.34-.19-.47 0-.19.06-.35.19-.47l15.87-15.87c.25-.25.69-.25.95 0l11.45 11.45c3.88 3.88 9.78 4.82 14.68 2.34 2.95-1.49 6.03-2.77 9.16-3.8 3.75-1.23 6.61-4.09 7.92-7.63.72.13 1.47.21 2.23.21h16.19c.34 0 .53.14.63.46 1.22 3.7 2.73 7.35 4.5 10.84.15.3.12.53-.12.77l-6.78 6.78c-1.31-.1-2.64-.16-3.95-.16-28.37 0-51.45 23.08-51.45 51.45 0 18.39 9.91 35.35 25.61 44.49-.35 1.61-.69 3.23-.99 4.86-.64 3.46-.96 6.96-1.05 10.48-.63-.3-1.27-.6-1.89-.91-4.92-2.5-10.82-1.55-14.7 2.33zm291.06 70.74c-.5 1.91-1.71 3.5-3.4 4.49-2.17 1.27-4.1 2.18-5.8 2.99-6.98 3.32-12.43 7.02-8.33 18.75 1.31 3.74.35 5.03-1.38 7.37-1.5 2.02-4 5.41-2.62 9.89.88 2.86.29 5.54-1.71 7.76-3.67 4.08-1.39 9.2.82 14.14 3.1 6.95 5.42 13.09 2.31 17.82-3.31 5.04-15.96 13.42-63.57 12.85l-6.07-.07v44.36h-138.97c17.34-30.83 20.69-72.96 7.92-108.51l-.14-.39-.19-.37c-3.21-6.12-6.59-12.24-10.17-18.72-17.49-31.65-35.57-64.37-30.34-92.85 7.68-41.83 33.96-73.47 72.1-86.8 44.14-15.44 96.37-3.43 136.3 31.34 33.22 28.92 41.99 54.65 29.31 86.02l-1.1 2.73 24.28 41.62c.99 1.69 1.25 3.67.75 5.58zm-145.92-155.19c-51.35 0-93.14 41.78-93.14 93.14 0 51.35 41.78 93.13 93.14 93.13s93.14-41.78 93.14-93.13c0-51.36-41.78-93.14-93.14-93.14zm0 174.27c-44.74 0-81.14-36.4-81.14-81.13s36.4-81.14 81.14-81.14 81.14 36.4 81.14 81.14-36.4 81.13-81.14 81.13zm29.28-94.9c-3.51-13.57-12.31-26.17-25.63-36.38-2.15-1.65-5.15-1.65-7.3 0-13.32 10.22-22.12 22.81-25.63 36.38-7.81-2.14-16.51-2.65-25.56-1.45-2.69.35-4.81 2.47-5.16 5.16-2.5 18.97 2.38 35.68 13.74 47.04 9.42 9.42 22.51 14.38 37.52 14.38 2.85 0 5.77-.19 8.74-.55 2.98.36 5.89.55 8.74.55 15.01 0 28.1-4.96 37.52-14.38 11.36-11.36 16.24-28.07 13.74-47.04-.35-2.69-2.47-4.81-5.16-5.16-9.05-1.19-17.75-.68-25.56 1.45zm-29.28-23.87c12.29 10.71 19.01 23.83 19.01 37.34s-6.71 26.63-19.01 37.34c-12.29-10.71-19.01-23.83-19.01-37.34s6.72-26.63 19.01-37.34zm-48.55 33.87c6.31-.35 12.26.35 17.57 2.02-.01.48-.02.96-.02 1.45 0 14.08 5.57 27.65 15.92 39.27-9.08-1.12-16.89-4.67-22.68-10.47-7.77-7.75-11.52-19.08-10.79-32.27zm86.33 32.27c-5.8 5.8-13.61 9.34-22.68 10.47 10.35-11.63 15.91-25.19 15.91-39.27 0-.48-.01-.96-.02-1.45 5.31-1.67 11.25-2.36 17.57-2.02.73 13.19-3.03 24.52-10.78 32.27z\"></path></svg>							\n												<h5>\n													Skill Development												</h5>\n											<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m273.006 83.567v168.425h87.5a4 4 0 1 1 0 8h-87.5v168.433h87.5a4 4 0 0 1 0 8h-91.5a4 4 0 0 1 -4-4v-172.431h-23.979a4 4 0 1 1 0-8h23.973v-172.428a4 4 0 0 1 4-4h91.5a4 4 0 0 1 0 8zm170 415.36a66.5 66.5 0 1 0 -66.5-66.5 66.569 66.569 0 0 0 66.5 66.5zm0-352.86a66.5 66.5 0 1 0 -66.5-66.5 66.569 66.569 0 0 0 66.5 66.5zm0 176.427a66.5 66.5 0 1 0 -66.498-66.494 66.569 66.569 0 0 0 66.5 66.494zm-344.212-195.217-6.473 100.7a4.046 4.046 0 0 0 .55 2.3l17.454 29.364a3.994 3.994 0 0 0 6.88 0l17.454-29.364a3.983 3.983 0 0 0 .55-2.3l-6.473-100.7 60.793 15.639c16.032 4.116 26.821 18.062 27.5 35.53v140.818a19.6 19.6 0 0 1 -6.9 15.283 37.861 37.861 0 0 1 -11.274 6.887 15.2 15.2 0 0 1 -12.961-.608v-142.018a4 4 0 1 0 -8 0v291.546a13.657 13.657 0 0 1 -13.646 13.639h-32.839a13.657 13.657 0 0 1 -13.646-13.639v-130.33a4 4 0 1 0 -8 0v130.33a13.657 13.657 0 0 1 -13.646 13.639h-32.831a13.651 13.651 0 0 1 -13.639-13.639v-291.546a4 4 0 0 0 -8 0v142.018a15.314 15.314 0 0 1 -12.967.608 37.924 37.924 0 0 1 -11.28-6.887 19.616 19.616 0 0 1 -6.895-15.283v-140.818c.672-17.468 11.46-31.414 27.492-35.53l60.793-15.639zm-96.287 50.948v141.039a27.649 27.649 0 0 0 9.61 21.284 45.823 45.823 0 0 0 13.638 8.338 23.478 23.478 0 0 0 15.89.6v140.868a21.667 21.667 0 0 0 21.641 21.646h32.836a21.632 21.632 0 0 0 17.647-9.131 21.608 21.608 0 0 0 17.64 9.131h32.836a21.673 21.673 0 0 0 21.647-21.641v-140.88a22.827 22.827 0 0 0 7.016 1.114 24.352 24.352 0 0 0 8.867-1.707 45.84 45.84 0 0 0 13.639-8.338 27.648 27.648 0 0 0 9.609-21.284v-141.039c-.786-21.127-13.932-38.031-33.493-43.06l-61.836-15.911c22.691-13.039 31.486-42.089 31.807-67.909.193-15.46-4.622-28.557-13.924-37.887a47.161 47.161 0 0 0 -33.301-13.458h-.943a47.221 47.221 0 0 0 -33.379 13.46c-9.3 9.33-14.118 22.427-13.925 37.887.322 25.82 9.124 54.87 31.815 67.909l-61.836 15.909c-19.562 5.029-32.715 21.933-33.5 43.06zm444.493-61.479a4 4 0 1 1 -8 0v-33.179h-33.164a4 4 0 0 1 0-8h33.172v-33.174a4 4 0 0 1 8 0v33.172h33.172a4 4 0 0 1 0 8h-33.18v33.179zm0 102.081v33.165h33.172a4 4 0 1 1 0 8h-33.172v33.171a4 4 0 1 1 -8 0v-33.169h-33.164a4 4 0 0 1 0-8h33.172v-33.167a4 4 0 1 1 8 0zm0 176.419v33.179h33.172a4 4 0 0 1 0 8h-33.172v33.175a4 4 0 0 1 -8 0v-33.173h-33.164a4 4 0 0 1 0-8h33.172v-33.181a4 4 0 1 1 8 0z\" fill-rule=\"evenodd\"></path></svg>							\n												<h5>\n													Tailored Approaches												</h5>\n											<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.</p>										\n		Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:43:38', '2026-06-17 10:43:38', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=538', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(539, 1, '2026-06-17 10:43:39', '2026-06-17 10:43:39', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />																<h2>Psychotherapy</h2>		<ul style=\"margin-left: 18px;\">\n 	<li>Individual therapy</li>\n 	<li>Couples/marriage therapy</li>\n 	<li>Family therapy</li>\n 	<li>Child/teen therapy</li>\n 	<li>Online therapy</li>\n 	<li>COMMON SPECIALTIES &amp; approaches</li>\n 	<li>Anxiety therapy</li>\n 	<li>Cognitive behavioral therapy (CBT)</li>\n 	<li>Depression counseling</li>\n 	<li>Dialectical behavior therapy (DBT)</li>\n 	<li>Grief &amp; loss counseling</li>\n 	<li>Relational therapy</li>\n</ul>			<h3>Therapy can be highly beneficial for mental health for several reasons:</h3>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 64 64.1999969\" width=\"512\"><path d=\"m51.2529297 42.0226555c.6357422-.6357422.9863281-1.4804688.9863281-2.3808594 0-.8994141-.3500977-1.7441406-.9863281-2.3808594-1.3125-1.3125-3.4492188-1.3125-4.7617188 0l-9.3178711 9.3173828c-.7426758.7441406-1.1518555 1.7314453-1.1518555 2.7822266v11.6396484c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-5.109375l11.5913086-11.5917969c.1875-.1875.2929688-.4414062.2929688-.7070312v-11.5488281c0-2.0097656-1.6347656-3.6445312-3.6445312-3.6445312s-3.6450195 1.6347656-3.6450195 3.6445312v8.6582031l-4.2260742 4.2255859c-.1459961.1455078-.3828125.1435547-.527832 0-.1455078-.1455078-.1455078-.3818359 0-.5273438zm-3.7910156 4.3183594c.9243164.9248047 2.4306641.9267578 3.355957 0l4.519043-4.5185547c.1875-.1875.2929688-.4414062.2929688-.7070312v-9.0722656c0-.9072266.737793-1.6445312 1.6450195-1.6445312.9067383 0 1.6445312.7373047 1.6445312 1.6445312v11.1347656l-11.5913086 11.5917968c-.1875.1875-.2929688.4414062-.2929688.7070312v4.5234375h-9.0136719v-10.6396484c0-.5166016.2011719-1.0029297.5664062-1.3681641l9.3173828-9.3173828c.5332031-.5332031 1.4008789-.5332031 1.9331055 0 .2583008.2587891.4008789.6015625.4008789.9667969s-.1420898.7089844-.4003906.9667969l-2.3769531 2.3769531c-.9252929.9248047-.9252929 2.4306641.0000001 3.3554688z\"></path><path d=\"m6.7250977 28.398632c-2.0097656 0-3.6445312 1.6347656-3.6445312 3.6445312v11.5488281c0 .265625.1054688.5195312.2929688.7070312l11.5913086 11.5917969v5.109375c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-11.6396483c0-1.0507812-.4091797-2.0380859-1.1523438-2.7822266l-9.3173828-9.3173828c-1.3125-1.3125-3.4487305-1.3125-4.762207 0-.6357422.6367188-.9858398 1.4814453-.9858398 2.3808594 0 .9003906.3505859 1.7451172.9863281 2.3808594l2.3769531 2.3769531c.1455078.1455078.1455078.3818359 0 .5273438s-.3823242.1435547-.527832 0l-4.2260742-4.2255859v-8.6582031c-.0000002-2.0097657-1.6352541-3.6445314-3.6450197-3.6445314zm6.4570312 17.9423829c.925293.9267578 2.4316406.9257812 3.355957 0 .925293-.9248047.925293-2.4306641 0-3.3554688l-2.3769531-2.3769531c-.2583008-.2578125-.4003906-.6015625-.4003906-.9667969s.1425781-.7080078.4003906-.9667969c.5332031-.5332031 1.4003906-.5332031 1.9335938 0l9.3168945 9.3173828c.3657227.3652344.5668945.8515625.5668945 1.3681641v10.6396484h-9.0136719v-4.5234375c0-.265625-.1054688-.5195312-.2929688-.7070312l-11.5913085-11.5917969v-11.1347656c0-.9072266.737793-1.6445312 1.6445312-1.6445312.9072266 0 1.6450195.7373047 1.6450195 1.6445312v9.0722656c0 .265625.1054688.5195312.2929688.7070312z\"></path><path d=\"m32 2.0998046c-10.0986328 0-18.3144531 8.2158203-18.3144531 18.3144531s8.2158203 18.3144525 18.3144531 18.3144525 18.3144531-8.2158203 18.3144531-18.3144531-8.2158203-18.3144525-18.3144531-18.3144525zm0 2.0000003c7.614502 0 14.0088501 5.2510376 15.798584 12.3173819-3.1233521-2.2542105-8.8903809-3.70996-15.798584-3.70996s-12.6752319 1.4557495-15.798584 3.70996c1.7897339-7.0663443 8.184082-12.3173819 15.798584-12.3173819zm16.3144531 16.3144521c0 2.6992188-6.7001953 5.7070312-16.3144531 5.7070312s-16.3144531-3.0078125-16.3144531-5.7070312 6.7001953-5.7070302 16.3144531-5.7070302 16.3144531 3.0078115 16.3144531 5.7070302zm-16.3144531 16.3144532c-7.614502 0-14.0088501-5.2510376-15.798584-12.3173828 3.1233521 2.2542114 8.8903809 3.7099609 15.798584 3.7099609s12.6752319-1.4557495 15.798584-3.7099609c-1.7897339 7.0663452-8.184082 12.3173828-15.798584 12.3173828z\"></path></svg>							\n												<h5>\n													Safe Space												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"friendship-work\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><circle cx=\"72\" cy=\"102\" r=\"4\"></circle><circle cx=\"64\" cy=\"50\" r=\"4\"></circle><path d=\"m228 98h4v4c0 2.211 1.789 4 4 4s4-1.789 4-4v-4h4c2.211 0 4-1.789 4-4s-1.789-4-4-4h-4v-4c0-2.211-1.789-4-4-4s-4 1.789-4 4v4h-4c-2.211 0-4 1.789-4 4s1.789 4 4 4z\"></path><path d=\"m132 218h-16v-5.977c0-13.759-8.223-25.608-20-30.964v-35.059c0-.031-.017-.057-.018-.088 4.839-3.653 8.018-9.396 8.018-15.912 0-2.211-1.789-4-4-4h-30.707c-7.328 0-13.293 5.965-13.293 13.293v25.953c0 5.361 2.096 10.206 5.444 13.892-14.614 3.818-25.444 17.092-25.444 32.885v49.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-49.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v9.977c0 2.211 1.789 4 4 4h8v8h-20v-17.582c0-2.211-1.789-4-4-4s-4 1.789-4 4v21.582 24c0 2.211 1.789 4 4 4s4-1.789 4-4v-20h32c6.617 0 12-5.383 12-12s-5.383-12-12-12zm-68-78.707c0-2.918 2.375-5.293 5.293-5.293h26.023c-1.652 4.656-6.102 8-11.316 8h-20zm12.754 38.707c-7.031 0-12.754-5.723-12.754-12.754v-15.246h24v28zm55.246 56h-4v-8h4c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m56 210c-2.211 0-4 1.789-4 4v48c0 2.211 1.789 4 4 4s4-1.789 4-4v-48c0-2.211-1.789-4-4-4z\"></path><path d=\"m238.009 178.998c3.704-3.95 5.991-9.243 5.991-15.072v-9.926c0-11.027-8.973-20-20-20s-20 8.973-20 20v27.06c-11.777 5.355-20 17.205-20 30.964v45.976c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v45.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-15.99-11.1-29.402-25.991-33.025zm-26.009-.998v-24c0-6.617 5.383-12 12-12s12 5.383 12 12v9.926c0 7.762-6.312 14.074-14.074 14.074z\"></path><path d=\"m204 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m244 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m185.41 118.613c.102-.242.203-.488.301-.734 5.809-.832 10.289-5.844 10.289-11.879 0-1.206-.223-2.353-.555-3.452 10.229-11.777 15.466-22.512 15.466-31.899-.001-20.208-15.274-36.649-34.048-36.649-7.633 0-14.91 2.711-20.863 7.707-5.953-4.996-13.23-7.707-20.863-7.707-18.773 0-34.047 16.441-34.047 36.648 0 9.39 5.238 20.125 15.465 31.903-.333 1.098-.555 2.244-.555 3.449 0 6.035 4.48 11.047 10.289 11.879.098.246.199.488.301.73-3.516 4.699-3.141 11.406 1.125 15.672 4.27 4.27 10.98 4.633 15.672 1.129.242.102.488.203.734.301.832 5.809 5.844 10.289 11.879 10.289s11.047-4.48 11.879-10.289c.246-.098.492-.199.734-.301 4.688 3.504 11.398 3.141 15.672-1.129 4.262-4.261 4.641-10.965 1.125-15.668zm-50.273-76.613c6.707 0 13.09 2.82 17.965 7.945 1.516 1.586 4.281 1.586 5.797 0 4.874-5.125 11.257-7.945 17.964-7.945 14.363 0 26.047 12.852 26.047 28.648 0 6.991-4.298 15.714-12.379 25.343-1.433-.939-3.052-1.616-4.82-1.87-.098-.246-.199-.488-.301-.73 3.516-4.699 3.141-11.406-1.125-15.672-4.273-4.27-10.984-4.637-15.672-1.129-.242-.102-.488-.203-.734-.301-.832-5.809-5.844-10.289-11.879-10.289s-11.047 4.48-11.879 10.289c-.246.098-.492.199-.734.301-4.691-3.508-11.402-3.141-15.672 1.129-4.262 4.262-4.641 10.965-1.125 15.668-.102.242-.203.488-.301.734-1.769.253-3.387.931-4.821 1.87-8.079-9.625-12.378-18.35-12.378-25.343 0-15.796 11.683-28.648 26.047-28.648zm47.687 68c-1.77 0-3.328 1.16-3.832 2.855-.488 1.629-1.117 3.16-1.875 4.555-.848 1.562-.562 3.492.695 4.746l.812.812c1.562 1.559 1.562 4.098.004 5.656-1.562 1.566-4.098 1.559-5.66 0l-.82-.82c-1.254-1.254-3.18-1.535-4.73-.691-1.426.773-2.957 1.402-4.555 1.875-1.699.504-2.863 2.062-2.863 3.836v1.176c0 2.207-1.793 4-4 4s-4-1.793-4-4v-1.176c0-1.773-1.164-3.332-2.863-3.836-1.598-.473-3.129-1.102-4.555-1.875-.598-.324-1.254-.48-1.902-.48-1.035 0-2.059.402-2.828 1.172l-.82.82c-1.559 1.559-4.094 1.566-5.66 0-1.559-1.559-1.559-4.098-.008-5.648l.824-.82c1.258-1.254 1.543-3.184.695-4.746-.758-1.395-1.387-2.926-1.875-4.555-.504-1.695-2.062-2.855-3.832-2.855h-1.176c-2.207 0-4-1.793-4-4s1.793-4 4-4h1.176c1.77 0 3.328-1.16 3.832-2.855.488-1.629 1.117-3.16 1.875-4.555.848-1.562.562-3.492-.695-4.746l-.812-.812c-1.562-1.559-1.562-4.098-.004-5.656 1.57-1.562 4.105-1.559 5.66 0l.82.82c1.25 1.25 3.18 1.531 4.73.691 1.426-.773 2.957-1.402 4.555-1.875 1.699-.504 2.863-2.062 2.863-3.836v-1.177c0-2.207 1.793-4 4-4s4 1.793 4 4v1.176c0 1.773 1.164 3.332 2.863 3.836 1.598.473 3.129 1.102 4.555 1.875 1.555.844 3.48.562 4.73-.691l.82-.82c1.562-1.559 4.098-1.566 5.66 0 1.559 1.559 1.559 4.098.008 5.648l-.824.82c-1.258 1.254-1.543 3.184-.695 4.746.758 1.395 1.387 2.926 1.875 4.555.504 1.695 2.062 2.855 3.832 2.855h1.176c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m156 90c-8.824 0-16 7.176-16 16s7.176 16 16 16 16-7.176 16-16-7.176-16-16-16zm0 24c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path></g></svg>							\n												<h5>\n													Emotional Support												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m206.102 400.162c-46.373 0-92.751-17.652-128.056-52.957-34.207-34.208-53.046-79.687-53.046-128.061s18.839-93.853 53.046-128.06c70.615-70.615 185.512-70.605 256.117 0 70.614 70.614 70.614 185.507 0 256.121-35.305 35.305-81.683 52.957-128.061 52.957zm0-346.791c-42.47 0-84.94 16.167-117.271 48.498-64.665 64.666-64.665 169.885 0 234.551 64.666 64.666 169.891 64.661 234.547 0 31.328-31.328 48.578-72.978 48.578-117.276 0-44.297-17.25-85.947-48.578-117.275-32.33-32.331-74.801-48.498-117.276-48.498z\"></path><path d=\"m206.102 357.901c-37.063 0-71.905-14.435-98.109-40.643-54.098-54.1-54.098-142.128 0-196.227 54.1-54.1 142.124-54.09 196.223 0 54.1 54.099 54.1 142.128 0 196.227-26.208 26.208-61.051 40.643-98.114 40.643zm0-262.194c-31.626 0-63.25 12.036-87.324 36.109-48.151 48.156-48.151 126.502 0 174.657 23.323 23.328 54.338 36.174 87.324 36.174s64.001-12.845 87.329-36.174c48.151-48.156 48.151-126.502 0-174.657-24.078-24.073-55.703-36.109-87.329-36.109z\"></path><path d=\"m297.428 421.907c-8.813 0-17.618-3.352-24.326-10.061-2.978-2.978-2.978-7.805 0-10.785 2.98-2.98 7.806-2.98 10.786 0 7.468 7.468 19.619 7.468 27.087 0l77.045-77.05c3.615-3.62 5.606-8.427 5.606-13.54 0-5.115-1.991-9.921-5.606-13.541-2.979-2.98-2.979-7.805 0-10.785 2.98-2.979 7.806-2.979 10.785 0 13.412 13.412 13.412 35.241 0 48.652l-77.045 77.05c-6.709 6.707-15.523 10.06-24.332 10.06z\"></path><path d=\"m402.881 461.874c-12.275 0-23.809-4.783-32.489-13.462l-47.992-47.991c-2.979-2.98-2.979-7.805 0-10.785l54.194-54.193c2.979-2.979 7.805-2.979 10.785 0l47.992 47.991c8.679 8.68 13.461 20.215 13.461 32.49s-4.782 23.809-13.461 32.489c-8.68 8.679-20.216 13.461-32.49 13.461zm-64.303-66.846 42.599 42.599c11.967 11.967 31.442 11.967 43.408 0 11.968-11.968 11.968-31.442 0-43.408l-42.599-42.6z\"></path><path d=\"m467.373 461.874h-355.566c-4.211 0-7.627-3.417-7.627-7.628s3.416-7.627 7.627-7.627h355.566c4.211 0 7.627 3.416 7.627 7.627s-3.416 7.628-7.627 7.628z\"></path><path d=\"m401.258 421.926c-1.951 0-3.904-.744-5.392-2.234l-21.675-21.679c-2.98-2.979-2.98-7.806 0-10.786 2.979-2.979 7.805-2.979 10.785 0l21.675 21.68c2.98 2.979 2.98 7.805 0 10.785-1.491 1.489-3.442 2.234-5.393 2.234z\"></path><path d=\"m206.102 305.102c-.814 0-1.628-.129-2.413-.392-3.814-1.272-41.556-24.446-49.383-62.342-6.668-32.305 9.048-65.739 46.716-99.385 2.89-2.583 7.269-2.583 10.16 0 37.668 33.641 53.384 67.079 46.715 99.38-7.826 37.897-45.569 61.076-49.383 62.347-.783.263-1.598.392-2.412.392zm0-146.07c-27.603 26.133-40.27 51.358-37.674 75.049 3.138 28.626 28.11 47.967 37.674 54.392 9.564-6.426 34.541-25.762 37.679-54.392 2.597-23.691-10.075-48.916-37.679-75.049z\"></path><path d=\"m212.691 305.102c-3.48 0-5.675-.164-6.082-.198-2.652-.224-5.001-1.813-6.192-4.192-.029-.06-.243-.501-.268-.561-1.658-3.541-.373-7.757 2.979-9.768 10.835-6.515 63.212-41.869 30.112-98.402-1.073-1.832-1.331-4.027-.715-6.062.615-2.031 2.045-3.715 3.957-4.648 14.42-7.027 32.256-12.021 53.007-14.842 3.889-.571 7.478 1.927 8.427 5.685 11.51 45.499 7.364 80.353-12.324 103.586-22.525 26.577-58.58 29.402-72.901 29.402zm37.744-113.333c22.007 44.953-.696 78.336-19.848 96.52 13.933-2.384 31.348-8.268 43.364-22.45 15.403-18.178 19.019-46.169 10.775-83.267-12.915 2.146-24.4 5.225-34.291 9.197z\"></path><path d=\"m199.553 305.102c-14.291 0-50.42-2.82-72.944-29.416-19.678-23.233-23.824-58.082-12.314-103.571.948-3.758 4.509-6.256 8.422-5.685 20.756 2.821 38.592 7.816 53.012 14.842 1.912.933 3.342 2.617 3.958 4.648.615 2.035.358 4.23-.715 6.062-33.1 56.533 19.276 91.887 30.111 98.402 3.392 2.036 4.662 6.332 2.925 9.887-1.182 2.413-3.734 4.409-6.411 4.633-.408.035-2.589.198-6.044.198zm-72.07-122.529c-8.243 37.088-4.633 65.079 10.765 83.257 12.007 14.177 29.426 20.066 43.364 22.45-19.147-18.184-41.849-51.562-19.837-96.51-9.892-3.973-21.371-7.052-34.292-9.197z\"></path><path d=\"m205.154 304.547c-4.211 0-7.627-3.417-7.627-7.628v-71.533c0-4.211 3.416-7.627 7.627-7.627s7.628 3.416 7.628 7.627v71.533c-.001 4.211-3.417 7.628-7.628 7.628z\"></path></g></svg>							\n												<h5>\n													Self-Exploration												</h5>\n											<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m295.544 178.256a6.741 6.741 0 0 0 -3.689-3.623 6.718 6.718 0 0 0 -8.727 3.475c-.058.16-.123.319-.193.475a6.715 6.715 0 0 0 3.572 8.482q.238.087.473.192a6.789 6.789 0 0 0 8.569-9zm4.657-15.648a21.3 21.3 0 0 1 -18.927 38.018l-.027-.012a21.345 21.345 0 0 1 -11.856-27.305 7.1 7.1 0 0 1 .358-.879 21.238 21.238 0 0 1 11.277-11.14 21.465 21.465 0 0 1 4.89-1.409 108.471 108.471 0 0 1 110.169-79.395l-7.5-9.84a7.256 7.256 0 0 1 11.533-8.807l18.139 23.785a7.255 7.255 0 0 1 -1.364 10.17l-23.793 18.138a7.256 7.256 0 0 1 -8.8-11.532l9.821-7.488a94.123 94.123 0 0 0 -93.917 67.7zm-136.607 130.062c-1.181-.462-2.53-.937-4.2-1.439-1.749-.526-3.761-1.034-5.893-1.571-2.249-.568-4.622-1.167-6.887-1.817a81.221 81.221 0 0 1 -7.736-2.626 52.681 52.681 0 0 1 -7.96-3.915 57.093 57.093 0 0 1 -5.122-3.558 19.314 19.314 0 0 1 -2.1 3.175 29.979 29.979 0 0 1 -4.78 4.617c-1.583 1.254-3.581 2.64-5.787 4.091-1.069.7-2 1.305-2.835 1.842v15.331a30.06 30.06 0 0 0 7.975 20.595 25.087 25.087 0 0 0 37.345 0 30.056 30.056 0 0 0 7.976-20.595v-14.13zm-3.794 117.75q-.863.314-1.737.606a66.691 66.691 0 0 1 -42.171 0q-.874-.292-1.736-.606 8.1 16.046 22.822 31.483 14.722-15.438 22.822-31.483zm-44.516-66.689-1.446 6.36a26.013 26.013 0 0 1 -8.247 14.073q-.63.554-1.295 1.069a86.352 86.352 0 0 0 2.3 24.838 49.4 49.4 0 0 0 13.842 7.2 53.4 53.4 0 0 0 33.079 0 49.4 49.4 0 0 0 13.842-7.2 86.282 86.282 0 0 0 2.3-24.786q-.7-.539-1.362-1.121a26.01 26.01 0 0 1 -8.247-14.073l-1.446-6.36a39.133 39.133 0 0 1 -43.323 0zm102.131 19.247c21.553 5.007 34.482 13.526 35.172 45.641v.142h.028v79.966a7.273 7.273 0 0 1 -7.272 7.273h-216.795a7.273 7.273 0 0 1 -7.273-7.273v-79.966a7.309 7.309 0 0 1 .049-.842c.911-33.257 15.2-40.822 38.733-45.728.5-7.586 1.773-17.265 3.2-28.09 2.421-18.4 5.3-40.261 5.3-60.319a67.9 67.9 0 0 1 19.627-47.875 66.563 66.563 0 0 1 94.957 0 67.889 67.889 0 0 1 19.627 47.875c0 22.494 5.342 45.587 9.591 63.955 2.279 9.851 4.261 18.419 5.062 25.241zm-46.7-31.379a44.85 44.85 0 0 0 7.42-24.8v-18.92a7.275 7.275 0 0 0 -4.889-6.873c-1.2-.525-2.455-1.065-4.1-1.717-1.832-.726-3.692-1.4-5.606-1.978-2.014-.606-4.2-1.158-6.517-1.742-2.01-.507-4.13-1.042-6.433-1.7-2.252-.647-4.44-1.344-6.372-2.113a37.981 37.981 0 0 1 -5.745-2.837 66.527 66.527 0 0 1 -8.659-6.687c-.68-.593-.82-.722-1.072-.939l.012-.014a14.573 14.573 0 0 0 -4.812-3.1c-6.5-2.195-9.224.041-10.259 6.5a21.51 21.51 0 0 0 -.208 2.607 14.785 14.785 0 0 1 -.37 3.3 3.848 3.848 0 0 1 -.715 1.241 16.145 16.145 0 0 1 -2.507 2.344c-1.423 1.129-3.022 2.244-4.707 3.353-1.127.741-3.346 2.131-5.627 3.557a7.274 7.274 0 0 0 -3.8 6.392v19.327a44.847 44.847 0 0 0 7.42 24.8l-3.479 15.309a11.711 11.711 0 0 1 -3.7 6.345 18.2 18.2 0 0 1 -8.506 3.875c-3.592.726-8.189 1.542-12.649 2.326.575-6.608 1.632-14.641 2.8-23.479 2.5-19 5.467-41.557 5.467-62.194a53.45 53.45 0 0 1 15.423-37.7 52.155 52.155 0 0 1 74.275 0 53.45 53.45 0 0 1 15.423 37.7c0 24.013 5.564 48.064 9.989 67.193 1.675 7.243 3.177 13.738 4.1 19.051l-2.054-.362c-4.821-.846-9.929-1.744-13.842-2.535a18.2 18.2 0 0 1 -8.506-3.875 11.711 11.711 0 0 1 -3.7-6.345l-3.482-15.31zm-41.01 149.856h-45.614a7.289 7.289 0 0 0 -.715-1.2 26.958 26.958 0 0 1 -5.261-16.38q0-9.969 5.972-22.523a7.256 7.256 0 0 0 -13.125-6.193q-7.392 15.54-7.393 28.716a41.569 41.569 0 0 0 3.738 17.583h-31.487v-72.697c0-.137 0-.274-.012-.41.791-27.416 16-30.094 40.333-34.368 3.862-.679 7.947-1.4 13.53-2.518a102.527 102.527 0 0 0 9.229 40.627q10.013 22.326 30.808 43.123v26.24zm14.545-26.241q20.795-20.795 30.808-43.121a102.527 102.527 0 0 0 9.226-40.616c5.55 1.115 9.617 1.83 13.466 2.506 24.453 4.3 39.695 6.976 40.344 34.778h-.024v72.694h-31.422a41.554 41.554 0 0 0 3.738-17.583q0-13.176-7.392-28.716a7.256 7.256 0 1 0 -13.125 6.193q5.971 12.554 5.972 22.523a26.959 26.959 0 0 1 -5.262 16.38 7.359 7.359 0 0 0 -.715 1.2h-45.614zm314.57-424.669a17.825 17.825 0 0 1 12.368 4.889 15.841 15.841 0 0 1 4.992 11.445v162.839a15.841 15.841 0 0 1 -4.992 11.445 17.821 17.821 0 0 1 -12.368 4.889h-92.395a7.234 7.234 0 0 0 -3.9 1.136l-22.385 12.384q-.276.151-.532.323l-36.3 20.086v-26.656a7.273 7.273 0 0 0 -7.273-7.273h-55.544a17.824 17.824 0 0 1 -12.368-4.889 15.844 15.844 0 0 1 -4.991-11.445v-162.839a15.842 15.842 0 0 1 4.991-11.445 17.829 17.829 0 0 1 12.368-4.889zm-218.329-14.545h218.329a32.378 32.378 0 0 1 22.425 8.979 30.272 30.272 0 0 1 9.48 21.9v162.839a30.268 30.268 0 0 1 -9.48 21.9 32.375 32.375 0 0 1 -22.425 8.98h-90.544l-21.149 11.7q-.257.141-.518.259l-47.084 26.051a7.236 7.236 0 0 1 -10.73-6.335h-.037v-31.673h-48.267a32.378 32.378 0 0 1 -22.425-8.98 30.272 30.272 0 0 1 -9.48-21.9v-162.841a30.268 30.268 0 0 1 9.48-21.9 32.378 32.378 0 0 1 22.425-8.979zm53.254 72.778-10.193-10.192 10.193-10.193a7.272 7.272 0 0 0 -10.285-10.284l-10.192 10.191-10.192-10.19a7.272 7.272 0 0 0 -10.284 10.284l10.192 10.192-10.192 10.191a7.272 7.272 0 0 0 10.284 10.284l10.192-10.191 10.192 10.192a7.272 7.272 0 0 0 10.285-10.284zm123.469 89.042-10.192-10.192 10.192-10.193a7.272 7.272 0 0 0 -10.284-10.284l-10.192 10.192-10.192-10.191a7.272 7.272 0 1 0 -10.284 10.284l10.192 10.192-10.192 10.191a7.272 7.272 0 1 0 10.284 10.281l10.192-10.191 10.192 10.191a7.272 7.272 0 0 0 10.284-10.284z\" fill-rule=\"evenodd\"></path></svg>							\n												<h5>\n													Coping Strategies												</h5>\n											<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M248.298,398.776v-96.35c0-5.971-2.694-11.517-7.393-15.216l-59.928-47.132c-2.984-2.348-7.254-2.094-9.939,0.592   l-14.349,14.349c-2.986,2.985-4.637,7.118-4.53,11.338c0.106,4.215,1.961,8.252,5.079,11.069l30.406,27.556l-1.867,1.93   c-1.111,1.149-2.665,1.808-4.265,1.808h-5.366c-4.046,0-7.953-1.201-11.299-3.474l-66.646-45.245   c-1.237-0.838-1.976-2.237-1.976-3.742v-42.516c0-8.724-7.102-15.821-15.832-15.821h-23.54c-4.142,0-7.5,3.358-7.5,7.5v72.637   c0,6.404,3.145,12.405,8.408,16.048l46.124,31.979c3.404,2.359,8.077,1.513,10.437-1.89c2.36-3.404,1.514-8.077-1.89-10.437   l-46.128-31.982c-1.222-0.846-1.951-2.235-1.951-3.718v-65.137h16.039c0.458,0,0.832,0.368,0.832,0.821v42.516   c0,6.486,3.2,12.526,8.556,16.155l66.64,45.241c5.84,3.967,12.661,6.064,19.726,6.064h5.366c5.643,0,11.128-2.326,15.047-6.38   l2.254-2.331c2.749-2.837,4.193-6.572,4.066-10.518c-0.127-3.948-1.811-7.585-4.741-10.242l-30.836-27.946   c-0.039-0.036-0.143-0.129-0.148-0.327c-0.005-0.206,0.101-0.312,0.141-0.352l9.642-9.642l54.693,43.015   c1.061,0.834,1.668,2.084,1.668,3.427v88.844h-60.32v-24.995c0-6.607-3.24-12.792-8.658-16.538l-27.532-19.089   c-3.405-2.36-8.077-1.514-10.437,1.89s-1.514,8.077,1.89,10.437l27.541,19.095c1.375,0.951,2.196,2.522,2.196,4.205v24.995h-3.726   c-4.142,0-7.5,3.358-7.5,7.5v58.66c0,0.033,0.004,0.064,0.005,0.097V504.5c0,4.142,3.358,7.5,7.5,7.5h25.971   c4.142,0,7.5-3.358,7.5-7.5c0-4.142-3.358-7.5-7.5-7.5h-18.471v-47.64h71.535v8.07c0,0.016,0.002,0.032,0.002,0.048V497h-23.519   c-4.142,0-7.5,3.358-7.5,7.5c0,4.142,3.358,7.5,7.5,7.5h31.019c4.142,0,7.5-3.358,7.5-7.5v-62.64c0-0.016-0.002-0.032-0.002-0.048   v-42.92C248.293,398.853,248.298,398.815,248.298,398.776z M233.292,434.359h-71.54V406.27h3.62c0.036,0,0.07,0.005,0.106,0.005   h67.814V434.359z\"></path>	</g></g><g>	<g>		<path d=\"M455.147,197.92h-23.535c-8.728,0-15.828,7.101-15.828,15.828v42.51c0,1.501-0.742,2.9-1.984,3.744l-66.637,45.24   c-3.349,2.273-7.258,3.475-11.304,3.475h-5.362c-1.604,0-3.162-0.66-4.279-1.813l-1.862-1.922l30.408-27.549   c3.125-2.831,4.977-6.871,5.08-11.085c0.104-4.215-1.546-8.342-4.526-11.324l-14.354-14.354c-2.687-2.686-6.956-2.939-9.94-0.592   l-47.179,37.107l-12.747,10.025c-4.695,3.693-7.389,9.238-7.389,15.211v96.35c0,0.02,0.003,0.038,0.003,0.058v42.972   c0,0.02-0.003,0.038-0.003,0.058v62.64c0,4.142,3.357,7.5,7.5,7.5h86.538c4.143,0,7.5-3.358,7.5-7.5v-46.973   c0-0.033,0.005-0.064,0.005-0.097v-58.66c0-4.142-3.357-7.5-7.5-7.5h-3.729v-24.994c0-1.68,0.824-3.254,2.204-4.211l98.021-67.96   c5.26-3.647,8.4-9.646,8.4-16.046V205.42C462.647,201.278,459.29,197.92,455.147,197.92z M350.247,497h-71.538v-39.512   c0-0.02,0.003-0.038,0.003-0.058v-8.07h71.535V497z M350.252,434.36h-71.54v-28.088h67.811c0.013,0,0.026-0.002,0.039-0.002h3.69   V434.36z M447.65,278.059h-0.003c0,1.483-0.728,2.874-1.947,3.719l-98.021,67.961c-5.42,3.759-8.656,9.941-8.656,16.538v24.994   H278.71v-88.848c0-1.343,0.605-2.591,1.662-3.421l12.747-10.025l41.946-32.992l9.646,9.646c0.039,0.04,0.144,0.144,0.139,0.347   s-0.114,0.302-0.155,0.339l-30.83,27.931c-2.928,2.653-4.611,6.289-4.74,10.238c-0.128,3.95,1.314,7.688,4.065,10.527l2.256,2.328   c3.924,4.053,9.41,6.377,15.053,6.377h5.362c7.062,0,13.884-2.097,19.729-6.064l66.638-45.241   c5.359-3.639,8.559-9.677,8.559-16.154v-42.51c0-0.457,0.371-0.828,0.828-0.828h16.035V278.059z\"></path>	</g></g><g>	<g>		<path d=\"M256.002,0c-55.95,0-102.985,41.857-109.407,97.364c-0.476,4.115,2.474,7.836,6.588,8.313   c4.12,0.482,7.836-2.474,8.313-6.588C167.042,51.15,207.671,15,256.002,15c52.466,0,95.15,42.684,95.15,95.15   c0,41.507-26.532,77.917-66.021,90.603c-1.723,0.553-3.187,1.71-4.123,3.258l-25.006,41.333l-25.006-41.333   c-0.937-1.548-2.401-2.705-4.123-3.258c-33.804-10.859-58.561-39.313-64.609-74.259c-0.707-4.082-4.587-6.812-8.669-6.111   c-4.082,0.707-6.817,4.588-6.111,8.669c6.842,39.527,34.351,71.881,72.103,85.076l30,49.587c1.358,2.246,3.792,3.618,6.417,3.618   s5.059-1.372,6.417-3.618l29.999-49.587c44.219-15.453,73.732-56.883,73.732-103.978C366.152,49.413,316.739,0,256.002,0z\"></path>	</g></g><g>	<g>		<path d=\"M315.754,102.65h-10.565c-1.234-8.128-4.447-15.612-9.123-21.955l7.492-7.492c2.929-2.929,2.929-7.678,0-10.606   c-2.93-2.929-7.678-2.929-10.607,0l-7.491,7.491c-6.343-4.676-13.827-7.888-21.955-9.123V50.4c0-4.142-3.357-7.5-7.5-7.5   c-4.142,0-7.5,3.358-7.5,7.5v10.565c-8.128,1.234-15.612,4.447-21.955,9.123l-7.491-7.491c-2.929-2.929-7.678-2.929-10.606,0   c-2.929,2.929-2.929,7.678,0,10.606l7.491,7.491c-4.676,6.343-7.889,13.828-9.123,21.956c0,0-10.569,0-10.569,0   c-4.142,0-7.5,3.358-7.5,7.5c0,4.142,3.358,7.5,7.5,7.5h10.565c1.234,8.128,4.447,15.613,9.123,21.956l-7.491,7.491   c-2.929,2.929-2.929,7.678,0,10.606c1.464,1.464,3.384,2.197,5.303,2.197s3.839-0.732,5.303-2.197l7.491-7.491   c6.343,4.676,13.828,7.889,21.956,9.123V169.9c0,4.142,3.358,7.5,7.5,7.5c4.143,0,7.5-3.358,7.5-7.5v-10.565   c8.128-1.234,15.612-4.447,21.956-9.123l7.491,7.491c1.465,1.464,3.385,2.197,5.304,2.197c1.919,0,3.839-0.732,5.304-2.197   c2.929-2.929,2.929-7.678,0-10.606l-7.491-7.491c4.676-6.343,7.889-13.828,9.123-21.956h10.565c4.143,0,7.5-3.358,7.5-7.5   C323.254,106.008,319.897,102.65,315.754,102.65z M290.751,110.164c-0.007,19.151-15.586,34.731-34.738,34.738   c-0.004,0-0.009-0.001-0.013-0.001c-0.004,0-0.009,0.001-0.013,0.001c-19.151-0.007-34.731-15.586-34.738-34.738   c0-0.004,0.001-0.009,0.001-0.013c0-0.004-0.001-0.008-0.001-0.013c0.009-19.154,15.592-34.735,34.746-34.738   c0.002,0,0.004,0,0.006,0s0.004,0,0.006,0c19.155,0.004,34.737,15.584,34.744,34.738c0,0.004-0.001,0.008-0.001,0.013   C290.75,110.155,290.751,110.16,290.751,110.164z\"></path>	</g></g><g>	<g>		<path d=\"M256.002,85.119c-13.802,0-25.032,11.229-25.032,25.031c0,13.803,11.229,25.032,25.032,25.032   c13.803,0,25.031-11.229,25.031-25.031C281.033,96.348,269.804,85.119,256.002,85.119z M256.002,120.182   c-5.532,0-10.032-4.5-10.032-10.031c0-5.532,4.5-10.032,10.032-10.032c5.531,0,10.031,4.5,10.031,10.032   C266.033,115.682,261.533,120.182,256.002,120.182z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>							\n												<h5>\n													Goal Setting												</h5>\n											<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xodm=\"http://www.corel.com/coreldraw/odm/2003\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_2077007814064\"><g id=\"_200306976\"><path d=\"m256 319.44c-1.59 0-3.12-.63-4.24-1.75-11.13-11.13-22.33-21.98-33.17-32.48-62.94-60.98-117.31-113.65-117.31-179.39 0-44.31 36.05-80.35 80.36-80.35 37.74 0 57.46 18.43 74.36 48.87 16.9-30.44 36.62-48.87 74.35-48.87 44.31 0 80.36 36.04 80.36 80.35 0 65.74-54.36 118.41-117.31 179.39-10.83 10.49-22.03 21.35-33.16 32.48-1.12 1.12-2.65 1.75-4.24 1.75zm-74.36-281.97c-37.69 0-68.35 30.66-68.35 68.35 0 60.66 52.67 111.69 113.65 170.77 9.5 9.2 19.27 18.67 29.06 28.39 9.78-9.72 19.56-19.19 29.06-28.39 60.98-59.08 113.65-110.11 113.65-170.77 0-37.69-30.66-68.35-68.35-68.35-31.58 0-49.63 13.72-68.99 52.45-1.02 2.03-3.1 3.31-5.37 3.31s-4.35-1.28-5.37-3.31c-19.36-38.73-37.41-52.45-68.99-52.45z\"></path></g><g><g id=\"_200307000\"><path d=\"m268.35 249.13h-24.7c-3.32 0-6-2.68-6-6v-11.56c-2.07-.72-4.09-1.56-6.06-2.51l-8.18 8.18c-1.13 1.12-2.65 1.75-4.25 1.75-1.59 0-3.11-.63-4.24-1.75l-17.47-17.47c-2.34-2.34-2.34-6.14 0-8.49l8.18-8.18c-.95-1.97-1.79-3.99-2.51-6.06h-11.57c-3.31 0-6-2.68-6-6v-24.7c0-3.32 2.69-6 6-6h11.57c.72-2.07 1.56-4.09 2.51-6.06l-8.18-8.18c-1.13-1.13-1.76-2.65-1.76-4.24 0-1.6.63-3.12 1.76-4.25l17.47-17.47c2.34-2.34 6.14-2.34 8.49 0l8.18 8.18c1.96-.95 3.99-1.79 6.05-2.51v-11.56c0-3.32 2.69-6 6-6h24.71c3.31 0 6 2.68 6 6v11.56c2.07.72 4.09 1.56 6.06 2.51l8.18-8.18c1.12-1.12 2.65-1.76 4.24-1.76s3.12.64 4.24 1.76l17.48 17.47c1.12 1.13 1.75 2.65 1.75 4.25 0 1.59-.63 3.11-1.75 4.24l-8.19 8.18c.96 1.97 1.8 3.99 2.52 6.06h11.56c3.32 0 6 2.68 6 6v24.7c0 3.32-2.68 6-6 6h-11.56c-.72 2.07-1.56 4.09-2.52 6.06l8.19 8.18c1.12 1.13 1.75 2.65 1.75 4.24 0 1.6-.63 3.12-1.75 4.25l-17.47 17.47c-2.35 2.34-6.15 2.34-8.49 0l-8.18-8.18c-1.97.95-3.99 1.79-6.06 2.51v11.57c0 3.31-2.69 5.99-6 5.99zm-18.7-12h12.7v-10.02c0-2.74 1.86-5.14 4.52-5.82 4.06-1.03 7.95-2.64 11.56-4.79 2.36-1.4 5.37-1.02 7.31.92l7.09 7.09 8.99-8.99-7.09-7.09c-1.94-1.94-2.32-4.95-.92-7.31 2.15-3.6 3.76-7.49 4.79-11.56.68-2.66 3.07-4.52 5.82-4.52h10.02v-12.7h-10.02c-2.75 0-5.14-1.87-5.82-4.52-1.03-4.07-2.64-7.95-4.79-11.56-1.4-2.36-1.03-5.37.92-7.31l7.09-7.1-8.99-8.98-7.09 7.09c-1.94 1.94-4.95 2.32-7.31.92-3.61-2.15-7.5-3.77-11.56-4.8-2.66-.67-4.52-3.07-4.52-5.81v-10.03h-12.7v10.03c0 2.74-1.87 5.14-4.53 5.81-4.05 1.04-7.94 2.65-11.55 4.8-2.36 1.4-5.37 1.02-7.31-.92l-7.1-7.09-8.98 8.99 7.09 7.09c1.94 1.94 2.32 4.95.92 7.31-2.15 3.61-3.76 7.5-4.8 11.55-.67 2.66-3.07 4.53-5.81 4.53h-10.02v12.7h10.02c2.74 0 5.14 1.86 5.81 4.52 1.04 4.06 2.65 7.95 4.8 11.56 1.4 2.36 1.02 5.37-.92 7.31l-7.09 7.09 8.98 8.99 7.1-7.09c1.94-1.94 4.95-2.32 7.31-.92 3.61 2.15 7.5 3.76 11.56 4.79 2.66.68 4.52 3.08 4.52 5.82z\"></path></g><g id=\"_200306760\"><path d=\"m256 215.48c-20.29 0-36.8-16.5-36.8-36.79s16.51-36.8 36.8-36.8 36.79 16.51 36.79 36.8-16.5 36.79-36.79 36.79zm0-61.59c-13.67 0-24.8 11.13-24.8 24.8s11.13 24.79 24.8 24.79 24.79-11.12 24.79-24.79-11.12-24.8-24.79-24.8z\"></path></g></g><g id=\"_200306784\"><path d=\"m461.9 340.14c-.4 0-.8-.04-1.21-.12-2.77-.57-4.77-3.01-4.79-5.84-.01-.8-.54-16.35-18.14-25.35-4.77 6.05-14.98 15.83-31.26 15.83-7.09 0-14.53-1.91-22.17-5.68-1.97 2.49-4.39 6.45-4.71 11.19-.17 2.67-2.1 4.89-4.71 5.46-2.62.57-5.29-.67-6.56-3.03-.73-1.35-17.54-33.58 6.24-66.87.25-.34.54-.67.85-.95.53-.48 13.04-11.64 29.73-11.64 8.33 0 16.16 2.73 23.32 8.11 6.78.84 29.41 4.94 40.34 22.87 8.21 13.48 7.74 31.11-1.42 52.39-.96 2.24-3.15 3.63-5.51 3.63zm-26.24-44.82c.73 0 1.45.13 2.16.41 12.4 4.82 19.68 12.11 23.97 19.04 1.81-9.72.76-17.87-3.18-24.36-9.39-15.48-32.65-17.38-32.88-17.39-1.23-.09-2.4-.56-3.35-1.33-5.36-4.35-11.14-6.55-17.2-6.55-10.52 0-19.21 6.52-21.25 8.17-10.03 14.4-10.85 28.57-9.39 38.73 2.4-3.14 4.55-4.96 4.74-5.12 1.93-1.61 4.66-1.85 6.84-.59 7.27 4.2 14.13 6.33 20.38 6.33 15.81 0 23.56-13.64 23.88-14.22 1.09-1.97 3.15-3.12 5.28-3.12z\"></path></g><g id=\"_200307264\"><path d=\"m419.46 411.58c-.16 0-.32 0-.48 0-10.3-.15-20.06-5.17-28.23-14.52-7.44-8.5-13.2-20.37-16.78-34.51-9.81-1.95-15.33-9.01-16.53-15.9-1.66-9.54 3.98-18.57 14.03-22.48 3.08-1.2 6.56.33 7.76 3.42s-.33 6.56-3.41 7.77c-5.64 2.19-7.06 6.34-6.56 9.23.53 3.02 3.36 6.31 9.74 6.48 2.77.08 5.12 2.03 5.71 4.73 5.7 26.37 19.22 43.55 34.45 43.78h.29c14.2 0 26.75-15.15 32.81-39.65.62-2.5 2.75-4.32 5.31-4.54 5.81-.5 8.33-3.74 8.74-6.61.43-2.97-1.08-6.91-6.58-9.05-3.09-1.2-4.62-4.68-3.42-7.76 1.2-3.09 4.68-4.62 7.77-3.42 9.78 3.8 15.45 12.62 14.11 21.93-1.15 8.02-6.99 14.03-15.29 16.15-7.91 27.89-24.31 44.95-43.44 44.95z\"></path></g><g id=\"_200306808\"><path d=\"m332.55 486.53c-1.59 0-3.11-.63-4.24-1.75-1.12-1.13-1.76-2.65-1.76-4.25 0-44.88 21.25-52.28 38.32-58.24 13.67-4.77 23.55-8.21 24.07-29.7.08-3.31 2.86-5.89 6.15-5.85 3.31.08 5.93 2.83 5.85 6.15-.73 29.78-17.41 35.6-32.12 40.73-15.3 5.34-28.64 9.99-30.13 40.91h161.17c-1.49-30.92-14.83-35.57-30.13-40.91-14.73-5.13-31.42-10.96-32.12-40.8-.08-3.31 2.54-6.06 5.85-6.14 3.31-.11 6.06 2.54 6.14 5.86.51 21.53 10.4 24.98 24.08 29.75 17.07 5.96 38.32 13.36 38.32 58.24 0 3.31-2.69 6-6 6z\"></path></g><g id=\"_200306616\"><path d=\"m419.27 443.04c-15.8 0-30.68-6.12-41.9-17.25-2.36-2.33-2.38-6.13-.04-8.48 2.33-2.35 6.13-2.37 8.48-.04 8.96 8.88 20.85 13.77 33.46 13.77 12.62 0 24.5-4.89 33.46-13.77 2.36-2.33 6.16-2.31 8.49.04s2.31 6.15-.04 8.48c-11.22 11.13-26.11 17.25-41.91 17.25z\"></path></g><g id=\"_200307672\"><path d=\"m374.04 486.53c-3.32 0-6-2.68-6-6v-19.82c0-3.31 2.68-6 6-6 3.31 0 6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307888\"><path d=\"m464.51 486.53c-3.31 0-6-2.68-6-6v-19.82c0-3.31 2.69-6 6-6s6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307744\"><path d=\"m135.35 340.14c-.4 0-.8-.04-1.21-.12-2.77-.57-4.77-3.01-4.79-5.84-.01-.8-.54-16.35-18.14-25.35-4.77 6.05-14.98 15.83-31.26 15.83-7.09 0-14.53-1.91-22.17-5.68-1.97 2.49-4.39 6.45-4.7 11.19-.18 2.67-2.11 4.89-4.72 5.46-2.62.57-5.29-.67-6.56-3.03-.72-1.35-17.54-33.58 6.24-66.87.25-.34.54-.67.86-.95.52-.48 13.03-11.64 29.73-11.64 8.32 0 16.16 2.73 23.31 8.11 6.78.84 29.41 4.94 40.34 22.87 8.22 13.48 7.74 31.11-1.42 52.39-.96 2.24-3.15 3.63-5.51 3.63zm-26.25-44.82c.72 0 1.46.13 2.17.41 12.4 4.82 19.69 12.1 23.97 19.04 1.81-9.72.76-17.87-3.18-24.36-9.39-15.48-32.65-17.37-32.88-17.39-1.22-.09-2.4-.56-3.35-1.33-5.36-4.35-11.14-6.55-17.2-6.55-10.52 0-19.21 6.52-21.24 8.17-10.04 14.4-10.85 28.57-9.4 38.73 2.4-3.14 4.55-4.96 4.74-5.12 1.93-1.61 4.67-1.85 6.84-.59 7.27 4.2 14.13 6.33 20.38 6.33 16.01 0 23.79-14.05 23.86-14.2 1.08-1.98 3.14-3.14 5.29-3.14z\"></path></g><g id=\"_200307960\"><path d=\"m92.91 411.58c-.16 0-.32 0-.48 0-10.3-.15-20.06-5.17-28.23-14.52-7.44-8.5-13.2-20.37-16.79-34.51-9.8-1.95-15.32-9.01-16.52-15.9-1.66-9.54 3.98-18.57 14.03-22.48 3.08-1.2 6.56.33 7.76 3.42s-.33 6.56-3.41 7.77c-5.64 2.19-7.06 6.34-6.56 9.23.53 3.02 3.36 6.31 9.74 6.48 2.77.08 5.12 2.03 5.71 4.73 5.7 26.37 19.22 43.55 34.45 43.78h.29c14.2 0 26.75-15.15 32.81-39.65.62-2.5 2.75-4.32 5.31-4.54 5.81-.5 8.33-3.74 8.74-6.61.43-2.97-1.08-6.91-6.58-9.05-3.09-1.2-4.62-4.68-3.42-7.76 1.2-3.09 4.68-4.62 7.77-3.42 9.78 3.8 15.45 12.62 14.11 21.93-1.16 8.02-6.99 14.03-15.3 16.15-7.9 27.89-24.3 44.95-43.43 44.95z\"></path></g><g id=\"_200307408\"><path d=\"m6 486.53c-1.59 0-3.11-.63-4.24-1.75-1.12-1.13-1.76-2.65-1.76-4.25 0-44.88 21.25-52.28 38.32-58.24 13.67-4.77 23.55-8.21 24.08-29.7.08-3.31 2.82-5.89 6.14-5.85 3.31.08 5.93 2.83 5.85 6.15-.73 29.78-17.41 35.6-32.12 40.73-15.3 5.34-28.64 9.99-30.13 40.91h161.17c-1.5-30.92-14.83-35.57-30.13-40.91-14.73-5.13-31.42-10.96-32.12-40.8-.08-3.31 2.54-6.06 5.85-6.14 3.27-.11 6.06 2.54 6.14 5.86.51 21.53 10.4 24.98 24.08 29.75 17.07 5.96 38.32 13.36 38.32 58.24 0 3.31-2.69 6-6 6h-173.45z\"></path></g><g id=\"_200307648\"><path d=\"m92.73 443.04c-15.81 0-30.69-6.12-41.91-17.25-2.36-2.33-2.37-6.13-.04-8.48s6.13-2.37 8.48-.04c8.97 8.88 20.85 13.77 33.47 13.77 12.61 0 24.49-4.89 33.45-13.77 2.36-2.33 6.16-2.31 8.49.04s2.31 6.15-.04 8.48c-11.22 11.13-26.11 17.25-41.9 17.25z\"></path></g><g id=\"_200307720\"><path d=\"m47.49 486.53c-3.32 0-6-2.68-6-6v-19.82c0-3.31 2.68-6 6-6 3.31 0 6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307456\"><path d=\"m137.96 486.53c-3.31 0-6-2.68-6-6v-19.82c0-3.31 2.69-6 6-6s6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307840\"><path d=\"m94.44 269.46c-3.31 0-6-2.68-6-6v-23.34c0-8.01 6.52-14.53 14.53-14.53h70.38c3.31 0 6 2.69 6 6 0 3.32-2.69 6-6 6h-70.38c-1.37 0-2.53 1.16-2.53 2.53v23.34c0 3.32-2.68 6-6 6zm323.12-1.73c-3.32 0-6-2.69-6-6v-21.61c0-1.37-1.16-2.53-2.53-2.53h-70.38c-3.31 0-6-2.68-6-6 0-3.31 2.69-6 6-6h70.37c8.02 0 14.54 6.52 14.54 14.53v21.61c0 3.31-2.69 6-6 6z\"></path></g></g></g></svg>							\n												<h5>\n													Relationship Improvement												</h5>\n											<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m434.61 333.03-21.34-36.58c6.76-18.2 7.07-35.07.96-51.47-5.64-15.15-16.96-29.98-34.59-45.33-11.13-9.69-23.22-17.82-35.9-24.21.12-3.43-1.13-6.87-3.68-9.41l-11.45-11.45c-.24-.24-.28-.47-.12-.78 1.77-3.49 3.28-7.13 4.5-10.84.11-.32.3-.46.64-.46h16.19c6.99 0 12.67-5.68 12.67-12.67v-22.44c0-6.99-5.68-12.67-12.67-12.67h-16.19c-.34 0-.53-.14-.64-.46-1.22-3.71-2.73-7.35-4.5-10.84-.15-.3-.12-.53.12-.77l11.45-11.45c2.39-2.39 3.71-5.57 3.71-8.96s-1.32-6.57-3.71-8.96l-15.87-15.87c-2.39-2.39-5.57-3.71-8.96-3.71s-6.57 1.32-8.96 3.71l-11.45 11.45c-.24.24-.47.28-.77.12-3.48-1.77-7.13-3.28-10.84-4.5-.32-.11-.46-.3-.46-.64v-16.17c0-6.99-5.68-12.67-12.67-12.67h-22.44c-6.99 0-12.67 5.68-12.67 12.67v16.19c0 .34-.14.53-.46.64-3.7 1.22-7.35 2.73-10.84 4.5-.3.15-.54.12-.77-.12l-11.45-11.45c-2.39-2.39-5.57-3.71-8.96-3.71s-6.57 1.32-8.96 3.71l-15.87 15.87c-2.39 2.39-3.71 5.57-3.71 8.96s1.32 6.57 3.71 8.96l11.45 11.45c.24.24.28.47.12.77-1.77 3.49-3.28 7.13-4.5 10.84-.11.32-.3.46-.64.46h-16.19c-6.99 0-12.67 5.68-12.67 12.67v10.02c-.5 1.37-.76 2.83-.76 4.3v16.19c0 .34-.14.53-.46.64-3.7 1.22-7.35 2.73-10.84 4.5-.3.15-.54.12-.78-.12l-11.45-11.45c-2.39-2.39-5.57-3.71-8.96-3.71s-6.57 1.32-8.96 3.71l-15.87 15.87c-2.39 2.39-3.71 5.57-3.71 8.96s1.32 6.57 3.71 8.96l11.45 11.45c.24.24.28.47.12.77-1.77 3.49-3.28 7.13-4.49 10.84-.11.32-.3.46-.64.46h-16.16c-6.99 0-12.67 5.68-12.67 12.67v22.44c0 6.99 5.68 12.67 12.67 12.67h16.19c.34 0 .53.14.63.46 1.22 3.7 2.73 7.35 4.5 10.84.15.3.12.53-.12.77l-11.45 11.45c-2.39 2.39-3.71 5.57-3.71 8.96s1.32 6.57 3.71 8.96l15.87 15.87c2.39 2.39 5.57 3.71 8.96 3.71s6.57-1.32 8.96-3.71l11.45-11.45c.24-.24.47-.28.78-.12 2.63 1.33 5.35 2.52 8.12 3.55 3.63 25.86 18.43 52.67 31.88 77.01 3.47 6.29 6.76 12.23 9.84 18.11 12.69 35.72 7.66 78.5-12.56 106.56l-6.85 9.51h173.63v-44.26c38.01-.13 59.59-5.99 67.67-18.29 6.96-10.6 1.74-22.31-1.38-29.3-.44-.98-.98-2.19-1.34-3.11 3.35-4.7 4.47-10.39 3.12-16.07.14-.2.3-.41.43-.59 2.26-3.05 6.46-8.74 3.06-18.47-.43-1.24-.63-2.03-.72-2.5.71-.41 1.88-.97 2.87-1.44 1.82-.86 4.08-1.94 6.69-3.46 4.46-2.6 7.64-6.79 8.96-11.8s.59-10.29-2.01-14.74zm-267.36-225.64c0-.36.31-.67.67-.67h16.19c5.49 0 10.32-3.5 12.04-8.71 1.03-3.13 2.31-6.21 3.8-9.16 2.48-4.9 1.54-10.8-2.34-14.68l-11.45-11.45c-.13-.13-.19-.29-.19-.47 0-.19.06-.35.19-.47l15.87-15.87c.25-.25.69-.25.95 0l11.45 11.45c3.88 3.88 9.78 4.82 14.68 2.34 2.95-1.49 6.03-2.77 9.16-3.8 5.21-1.71 8.72-6.55 8.72-12.04v-16.19c0-.36.31-.67.67-.67h22.44c.36 0 .67.31.67.67v16.19c0 5.49 3.5 10.32 8.71 12.04 3.13 1.03 6.21 2.31 9.16 3.8 4.9 2.48 10.8 1.54 14.68-2.34l11.45-11.45c.25-.25.69-.25.95 0l15.87 15.87c.13.13.19.29.19.47 0 .19-.06.35-.19.47l-11.45 11.45c-3.88 3.88-4.83 9.78-2.34 14.68 1.49 2.95 2.77 6.03 3.8 9.16 1.71 5.21 6.55 8.71 12.04 8.71h16.19c.36 0 .67.31.67.67v22.44c0 .36-.31.67-.67.67h-16.19c-5.49 0-10.32 3.5-12.04 8.71-1.03 3.13-2.31 6.21-3.8 9.16-2.48 4.9-1.54 10.8 2.34 14.68l4.07 4.07c-6.1-2.13-12.28-3.88-18.52-5.21-5.2-1.11-10.41-1.91-15.6-2.44 12.29-9.41 20.24-24.22 20.24-40.86 0-28.37-23.08-51.45-51.45-51.45s-51.45 23.08-51.45 51.45c0 20.1 11.59 37.53 28.43 45.99-1.46.45-2.91.93-4.35 1.43-13.15 4.6-25.02 11.14-35.4 19.37l-9.95-9.95c-.13-.13-.19-.28-.19-.47s.06-.35.19-.47l11.45-11.45c3.88-3.88 4.82-9.78 2.34-14.68-1.49-2.95-2.77-6.03-3.8-9.16-1.71-5.21-6.55-8.72-12.04-8.72h-16.19c-.36 0-.67-.31-.67-.67zm91.61 50.67c-21.75 0-39.45-17.7-39.45-39.45s17.7-39.45 39.45-39.45 39.45 17.7 39.45 39.45-17.7 39.45-39.45 39.45zm-81.2 25.88 9.4 9.4c-14.24 13.88-24.92 31.39-31.29 51.61-10.4-7.3-16.85-19.33-16.85-32.3 0-20.29 15.4-37.05 35.13-39.21-.06.51-.1 1.02-.1 1.54 0 3.39 1.32 6.57 3.71 8.96zm-43.73 89.97-11.45 11.45c-.25.25-.69.25-.94 0l-15.87-15.87c-.16-.16-.19-.34-.19-.47 0-.19.06-.35.19-.47l11.45-11.45c3.88-3.88 4.83-9.78 2.34-14.68-1.49-2.95-2.77-6.03-3.8-9.16-1.71-5.21-6.55-8.72-12.04-8.72h-16.19c-.36 0-.67-.31-.67-.67v-22.44c0-.36.31-.67.67-.67h16.19c5.49 0 10.32-3.5 12.04-8.71 1.03-3.13 2.31-6.21 3.8-9.16 2.48-4.9 1.54-10.8-2.34-14.68l-11.45-11.45c-.16-.16-.19-.34-.19-.47 0-.19.06-.35.19-.47l15.87-15.87c.25-.25.69-.25.95 0l11.45 11.45c3.88 3.88 9.78 4.82 14.68 2.34 2.95-1.49 6.03-2.77 9.16-3.8 3.75-1.23 6.61-4.09 7.92-7.63.72.13 1.47.21 2.23.21h16.19c.34 0 .53.14.63.46 1.22 3.7 2.73 7.35 4.5 10.84.15.3.12.53-.12.77l-6.78 6.78c-1.31-.1-2.64-.16-3.95-.16-28.37 0-51.45 23.08-51.45 51.45 0 18.39 9.91 35.35 25.61 44.49-.35 1.61-.69 3.23-.99 4.86-.64 3.46-.96 6.96-1.05 10.48-.63-.3-1.27-.6-1.89-.91-4.92-2.5-10.82-1.55-14.7 2.33zm291.06 70.74c-.5 1.91-1.71 3.5-3.4 4.49-2.17 1.27-4.1 2.18-5.8 2.99-6.98 3.32-12.43 7.02-8.33 18.75 1.31 3.74.35 5.03-1.38 7.37-1.5 2.02-4 5.41-2.62 9.89.88 2.86.29 5.54-1.71 7.76-3.67 4.08-1.39 9.2.82 14.14 3.1 6.95 5.42 13.09 2.31 17.82-3.31 5.04-15.96 13.42-63.57 12.85l-6.07-.07v44.36h-138.97c17.34-30.83 20.69-72.96 7.92-108.51l-.14-.39-.19-.37c-3.21-6.12-6.59-12.24-10.17-18.72-17.49-31.65-35.57-64.37-30.34-92.85 7.68-41.83 33.96-73.47 72.1-86.8 44.14-15.44 96.37-3.43 136.3 31.34 33.22 28.92 41.99 54.65 29.31 86.02l-1.1 2.73 24.28 41.62c.99 1.69 1.25 3.67.75 5.58zm-145.92-155.19c-51.35 0-93.14 41.78-93.14 93.14 0 51.35 41.78 93.13 93.14 93.13s93.14-41.78 93.14-93.13c0-51.36-41.78-93.14-93.14-93.14zm0 174.27c-44.74 0-81.14-36.4-81.14-81.13s36.4-81.14 81.14-81.14 81.14 36.4 81.14 81.14-36.4 81.13-81.14 81.13zm29.28-94.9c-3.51-13.57-12.31-26.17-25.63-36.38-2.15-1.65-5.15-1.65-7.3 0-13.32 10.22-22.12 22.81-25.63 36.38-7.81-2.14-16.51-2.65-25.56-1.45-2.69.35-4.81 2.47-5.16 5.16-2.5 18.97 2.38 35.68 13.74 47.04 9.42 9.42 22.51 14.38 37.52 14.38 2.85 0 5.77-.19 8.74-.55 2.98.36 5.89.55 8.74.55 15.01 0 28.1-4.96 37.52-14.38 11.36-11.36 16.24-28.07 13.74-47.04-.35-2.69-2.47-4.81-5.16-5.16-9.05-1.19-17.75-.68-25.56 1.45zm-29.28-23.87c12.29 10.71 19.01 23.83 19.01 37.34s-6.71 26.63-19.01 37.34c-12.29-10.71-19.01-23.83-19.01-37.34s6.72-26.63 19.01-37.34zm-48.55 33.87c6.31-.35 12.26.35 17.57 2.02-.01.48-.02.96-.02 1.45 0 14.08 5.57 27.65 15.92 39.27-9.08-1.12-16.89-4.67-22.68-10.47-7.77-7.75-11.52-19.08-10.79-32.27zm86.33 32.27c-5.8 5.8-13.61 9.34-22.68 10.47 10.35-11.63 15.91-25.19 15.91-39.27 0-.48-.01-.96-.02-1.45 5.31-1.67 11.25-2.36 17.57-2.02.73 13.19-3.03 24.52-10.78 32.27z\"></path></svg>							\n												<h5>\n													Skill Development												</h5>\n											<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m273.006 83.567v168.425h87.5a4 4 0 1 1 0 8h-87.5v168.433h87.5a4 4 0 0 1 0 8h-91.5a4 4 0 0 1 -4-4v-172.431h-23.979a4 4 0 1 1 0-8h23.973v-172.428a4 4 0 0 1 4-4h91.5a4 4 0 0 1 0 8zm170 415.36a66.5 66.5 0 1 0 -66.5-66.5 66.569 66.569 0 0 0 66.5 66.5zm0-352.86a66.5 66.5 0 1 0 -66.5-66.5 66.569 66.569 0 0 0 66.5 66.5zm0 176.427a66.5 66.5 0 1 0 -66.498-66.494 66.569 66.569 0 0 0 66.5 66.494zm-344.212-195.217-6.473 100.7a4.046 4.046 0 0 0 .55 2.3l17.454 29.364a3.994 3.994 0 0 0 6.88 0l17.454-29.364a3.983 3.983 0 0 0 .55-2.3l-6.473-100.7 60.793 15.639c16.032 4.116 26.821 18.062 27.5 35.53v140.818a19.6 19.6 0 0 1 -6.9 15.283 37.861 37.861 0 0 1 -11.274 6.887 15.2 15.2 0 0 1 -12.961-.608v-142.018a4 4 0 1 0 -8 0v291.546a13.657 13.657 0 0 1 -13.646 13.639h-32.839a13.657 13.657 0 0 1 -13.646-13.639v-130.33a4 4 0 1 0 -8 0v130.33a13.657 13.657 0 0 1 -13.646 13.639h-32.831a13.651 13.651 0 0 1 -13.639-13.639v-291.546a4 4 0 0 0 -8 0v142.018a15.314 15.314 0 0 1 -12.967.608 37.924 37.924 0 0 1 -11.28-6.887 19.616 19.616 0 0 1 -6.895-15.283v-140.818c.672-17.468 11.46-31.414 27.492-35.53l60.793-15.639zm-96.287 50.948v141.039a27.649 27.649 0 0 0 9.61 21.284 45.823 45.823 0 0 0 13.638 8.338 23.478 23.478 0 0 0 15.89.6v140.868a21.667 21.667 0 0 0 21.641 21.646h32.836a21.632 21.632 0 0 0 17.647-9.131 21.608 21.608 0 0 0 17.64 9.131h32.836a21.673 21.673 0 0 0 21.647-21.641v-140.88a22.827 22.827 0 0 0 7.016 1.114 24.352 24.352 0 0 0 8.867-1.707 45.84 45.84 0 0 0 13.639-8.338 27.648 27.648 0 0 0 9.609-21.284v-141.039c-.786-21.127-13.932-38.031-33.493-43.06l-61.836-15.911c22.691-13.039 31.486-42.089 31.807-67.909.193-15.46-4.622-28.557-13.924-37.887a47.161 47.161 0 0 0 -33.301-13.458h-.943a47.221 47.221 0 0 0 -33.379 13.46c-9.3 9.33-14.118 22.427-13.925 37.887.322 25.82 9.124 54.87 31.815 67.909l-61.836 15.909c-19.562 5.029-32.715 21.933-33.5 43.06zm444.493-61.479a4 4 0 1 1 -8 0v-33.179h-33.164a4 4 0 0 1 0-8h33.172v-33.174a4 4 0 0 1 8 0v33.172h33.172a4 4 0 0 1 0 8h-33.18v33.179zm0 102.081v33.165h33.172a4 4 0 1 1 0 8h-33.172v33.171a4 4 0 1 1 -8 0v-33.169h-33.164a4 4 0 0 1 0-8h33.172v-33.167a4 4 0 1 1 8 0zm0 176.419v33.179h33.172a4 4 0 0 1 0 8h-33.172v33.175a4 4 0 0 1 -8 0v-33.173h-33.164a4 4 0 0 1 0-8h33.172v-33.181a4 4 0 1 1 8 0z\" fill-rule=\"evenodd\"></path></svg>							\n												<h5>\n													Tailored Approaches												</h5>\n											<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.</p>										\n		Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:43:39', '2026-06-17 10:43:39', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=539', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(540, 1, '2026-06-17 10:43:49', '2026-06-17 10:43:49', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />																<h2>Psychotherapy</h2>		<ul style=\"margin-left: 18px;\">\n 	<li>Individual therapy</li>\n 	<li>Couples/marriage therapy</li>\n 	<li>Family therapy</li>\n 	<li>Child/teen therapy</li>\n 	<li>Online therapy</li>\n 	<li>COMMON SPECIALTIES &amp; approaches</li>\n 	<li>Anxiety therapy</li>\n 	<li>Cognitive behavioral therapy (CBT)</li>\n 	<li>Depression counseling</li>\n 	<li>Dialectical behavior therapy (DBT)</li>\n 	<li>Grief &amp; loss counseling</li>\n 	<li>Relational therapy</li>\n</ul>			<h3>Therapy can be highly beneficial for mental health for several reasons:</h3>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 64 64.1999969\" width=\"512\"><path d=\"m51.2529297 42.0226555c.6357422-.6357422.9863281-1.4804688.9863281-2.3808594 0-.8994141-.3500977-1.7441406-.9863281-2.3808594-1.3125-1.3125-3.4492188-1.3125-4.7617188 0l-9.3178711 9.3173828c-.7426758.7441406-1.1518555 1.7314453-1.1518555 2.7822266v11.6396484c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-5.109375l11.5913086-11.5917969c.1875-.1875.2929688-.4414062.2929688-.7070312v-11.5488281c0-2.0097656-1.6347656-3.6445312-3.6445312-3.6445312s-3.6450195 1.6347656-3.6450195 3.6445312v8.6582031l-4.2260742 4.2255859c-.1459961.1455078-.3828125.1435547-.527832 0-.1455078-.1455078-.1455078-.3818359 0-.5273438zm-3.7910156 4.3183594c.9243164.9248047 2.4306641.9267578 3.355957 0l4.519043-4.5185547c.1875-.1875.2929688-.4414062.2929688-.7070312v-9.0722656c0-.9072266.737793-1.6445312 1.6450195-1.6445312.9067383 0 1.6445312.7373047 1.6445312 1.6445312v11.1347656l-11.5913086 11.5917968c-.1875.1875-.2929688.4414062-.2929688.7070312v4.5234375h-9.0136719v-10.6396484c0-.5166016.2011719-1.0029297.5664062-1.3681641l9.3173828-9.3173828c.5332031-.5332031 1.4008789-.5332031 1.9331055 0 .2583008.2587891.4008789.6015625.4008789.9667969s-.1420898.7089844-.4003906.9667969l-2.3769531 2.3769531c-.9252929.9248047-.9252929 2.4306641.0000001 3.3554688z\"></path><path d=\"m6.7250977 28.398632c-2.0097656 0-3.6445312 1.6347656-3.6445312 3.6445312v11.5488281c0 .265625.1054688.5195312.2929688.7070312l11.5913086 11.5917969v5.109375c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-11.6396483c0-1.0507812-.4091797-2.0380859-1.1523438-2.7822266l-9.3173828-9.3173828c-1.3125-1.3125-3.4487305-1.3125-4.762207 0-.6357422.6367188-.9858398 1.4814453-.9858398 2.3808594 0 .9003906.3505859 1.7451172.9863281 2.3808594l2.3769531 2.3769531c.1455078.1455078.1455078.3818359 0 .5273438s-.3823242.1435547-.527832 0l-4.2260742-4.2255859v-8.6582031c-.0000002-2.0097657-1.6352541-3.6445314-3.6450197-3.6445314zm6.4570312 17.9423829c.925293.9267578 2.4316406.9257812 3.355957 0 .925293-.9248047.925293-2.4306641 0-3.3554688l-2.3769531-2.3769531c-.2583008-.2578125-.4003906-.6015625-.4003906-.9667969s.1425781-.7080078.4003906-.9667969c.5332031-.5332031 1.4003906-.5332031 1.9335938 0l9.3168945 9.3173828c.3657227.3652344.5668945.8515625.5668945 1.3681641v10.6396484h-9.0136719v-4.5234375c0-.265625-.1054688-.5195312-.2929688-.7070312l-11.5913085-11.5917969v-11.1347656c0-.9072266.737793-1.6445312 1.6445312-1.6445312.9072266 0 1.6450195.7373047 1.6450195 1.6445312v9.0722656c0 .265625.1054688.5195312.2929688.7070312z\"></path><path d=\"m32 2.0998046c-10.0986328 0-18.3144531 8.2158203-18.3144531 18.3144531s8.2158203 18.3144525 18.3144531 18.3144525 18.3144531-8.2158203 18.3144531-18.3144531-8.2158203-18.3144525-18.3144531-18.3144525zm0 2.0000003c7.614502 0 14.0088501 5.2510376 15.798584 12.3173819-3.1233521-2.2542105-8.8903809-3.70996-15.798584-3.70996s-12.6752319 1.4557495-15.798584 3.70996c1.7897339-7.0663443 8.184082-12.3173819 15.798584-12.3173819zm16.3144531 16.3144521c0 2.6992188-6.7001953 5.7070312-16.3144531 5.7070312s-16.3144531-3.0078125-16.3144531-5.7070312 6.7001953-5.7070302 16.3144531-5.7070302 16.3144531 3.0078115 16.3144531 5.7070302zm-16.3144531 16.3144532c-7.614502 0-14.0088501-5.2510376-15.798584-12.3173828 3.1233521 2.2542114 8.8903809 3.7099609 15.798584 3.7099609s12.6752319-1.4557495 15.798584-3.7099609c-1.7897339 7.0663452-8.184082 12.3173828-15.798584 12.3173828z\"></path></svg>							\n												<h5>\n													Safe Space												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"friendship-work\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><circle cx=\"72\" cy=\"102\" r=\"4\"></circle><circle cx=\"64\" cy=\"50\" r=\"4\"></circle><path d=\"m228 98h4v4c0 2.211 1.789 4 4 4s4-1.789 4-4v-4h4c2.211 0 4-1.789 4-4s-1.789-4-4-4h-4v-4c0-2.211-1.789-4-4-4s-4 1.789-4 4v4h-4c-2.211 0-4 1.789-4 4s1.789 4 4 4z\"></path><path d=\"m132 218h-16v-5.977c0-13.759-8.223-25.608-20-30.964v-35.059c0-.031-.017-.057-.018-.088 4.839-3.653 8.018-9.396 8.018-15.912 0-2.211-1.789-4-4-4h-30.707c-7.328 0-13.293 5.965-13.293 13.293v25.953c0 5.361 2.096 10.206 5.444 13.892-14.614 3.818-25.444 17.092-25.444 32.885v49.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-49.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v9.977c0 2.211 1.789 4 4 4h8v8h-20v-17.582c0-2.211-1.789-4-4-4s-4 1.789-4 4v21.582 24c0 2.211 1.789 4 4 4s4-1.789 4-4v-20h32c6.617 0 12-5.383 12-12s-5.383-12-12-12zm-68-78.707c0-2.918 2.375-5.293 5.293-5.293h26.023c-1.652 4.656-6.102 8-11.316 8h-20zm12.754 38.707c-7.031 0-12.754-5.723-12.754-12.754v-15.246h24v28zm55.246 56h-4v-8h4c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m56 210c-2.211 0-4 1.789-4 4v48c0 2.211 1.789 4 4 4s4-1.789 4-4v-48c0-2.211-1.789-4-4-4z\"></path><path d=\"m238.009 178.998c3.704-3.95 5.991-9.243 5.991-15.072v-9.926c0-11.027-8.973-20-20-20s-20 8.973-20 20v27.06c-11.777 5.355-20 17.205-20 30.964v45.976c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v45.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-15.99-11.1-29.402-25.991-33.025zm-26.009-.998v-24c0-6.617 5.383-12 12-12s12 5.383 12 12v9.926c0 7.762-6.312 14.074-14.074 14.074z\"></path><path d=\"m204 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m244 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m185.41 118.613c.102-.242.203-.488.301-.734 5.809-.832 10.289-5.844 10.289-11.879 0-1.206-.223-2.353-.555-3.452 10.229-11.777 15.466-22.512 15.466-31.899-.001-20.208-15.274-36.649-34.048-36.649-7.633 0-14.91 2.711-20.863 7.707-5.953-4.996-13.23-7.707-20.863-7.707-18.773 0-34.047 16.441-34.047 36.648 0 9.39 5.238 20.125 15.465 31.903-.333 1.098-.555 2.244-.555 3.449 0 6.035 4.48 11.047 10.289 11.879.098.246.199.488.301.73-3.516 4.699-3.141 11.406 1.125 15.672 4.27 4.27 10.98 4.633 15.672 1.129.242.102.488.203.734.301.832 5.809 5.844 10.289 11.879 10.289s11.047-4.48 11.879-10.289c.246-.098.492-.199.734-.301 4.688 3.504 11.398 3.141 15.672-1.129 4.262-4.261 4.641-10.965 1.125-15.668zm-50.273-76.613c6.707 0 13.09 2.82 17.965 7.945 1.516 1.586 4.281 1.586 5.797 0 4.874-5.125 11.257-7.945 17.964-7.945 14.363 0 26.047 12.852 26.047 28.648 0 6.991-4.298 15.714-12.379 25.343-1.433-.939-3.052-1.616-4.82-1.87-.098-.246-.199-.488-.301-.73 3.516-4.699 3.141-11.406-1.125-15.672-4.273-4.27-10.984-4.637-15.672-1.129-.242-.102-.488-.203-.734-.301-.832-5.809-5.844-10.289-11.879-10.289s-11.047 4.48-11.879 10.289c-.246.098-.492.199-.734.301-4.691-3.508-11.402-3.141-15.672 1.129-4.262 4.262-4.641 10.965-1.125 15.668-.102.242-.203.488-.301.734-1.769.253-3.387.931-4.821 1.87-8.079-9.625-12.378-18.35-12.378-25.343 0-15.796 11.683-28.648 26.047-28.648zm47.687 68c-1.77 0-3.328 1.16-3.832 2.855-.488 1.629-1.117 3.16-1.875 4.555-.848 1.562-.562 3.492.695 4.746l.812.812c1.562 1.559 1.562 4.098.004 5.656-1.562 1.566-4.098 1.559-5.66 0l-.82-.82c-1.254-1.254-3.18-1.535-4.73-.691-1.426.773-2.957 1.402-4.555 1.875-1.699.504-2.863 2.062-2.863 3.836v1.176c0 2.207-1.793 4-4 4s-4-1.793-4-4v-1.176c0-1.773-1.164-3.332-2.863-3.836-1.598-.473-3.129-1.102-4.555-1.875-.598-.324-1.254-.48-1.902-.48-1.035 0-2.059.402-2.828 1.172l-.82.82c-1.559 1.559-4.094 1.566-5.66 0-1.559-1.559-1.559-4.098-.008-5.648l.824-.82c1.258-1.254 1.543-3.184.695-4.746-.758-1.395-1.387-2.926-1.875-4.555-.504-1.695-2.062-2.855-3.832-2.855h-1.176c-2.207 0-4-1.793-4-4s1.793-4 4-4h1.176c1.77 0 3.328-1.16 3.832-2.855.488-1.629 1.117-3.16 1.875-4.555.848-1.562.562-3.492-.695-4.746l-.812-.812c-1.562-1.559-1.562-4.098-.004-5.656 1.57-1.562 4.105-1.559 5.66 0l.82.82c1.25 1.25 3.18 1.531 4.73.691 1.426-.773 2.957-1.402 4.555-1.875 1.699-.504 2.863-2.062 2.863-3.836v-1.177c0-2.207 1.793-4 4-4s4 1.793 4 4v1.176c0 1.773 1.164 3.332 2.863 3.836 1.598.473 3.129 1.102 4.555 1.875 1.555.844 3.48.562 4.73-.691l.82-.82c1.562-1.559 4.098-1.566 5.66 0 1.559 1.559 1.559 4.098.008 5.648l-.824.82c-1.258 1.254-1.543 3.184-.695 4.746.758 1.395 1.387 2.926 1.875 4.555.504 1.695 2.062 2.855 3.832 2.855h1.176c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m156 90c-8.824 0-16 7.176-16 16s7.176 16 16 16 16-7.176 16-16-7.176-16-16-16zm0 24c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path></g></svg>							\n												<h5>\n													Emotional Support												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m206.102 400.162c-46.373 0-92.751-17.652-128.056-52.957-34.207-34.208-53.046-79.687-53.046-128.061s18.839-93.853 53.046-128.06c70.615-70.615 185.512-70.605 256.117 0 70.614 70.614 70.614 185.507 0 256.121-35.305 35.305-81.683 52.957-128.061 52.957zm0-346.791c-42.47 0-84.94 16.167-117.271 48.498-64.665 64.666-64.665 169.885 0 234.551 64.666 64.666 169.891 64.661 234.547 0 31.328-31.328 48.578-72.978 48.578-117.276 0-44.297-17.25-85.947-48.578-117.275-32.33-32.331-74.801-48.498-117.276-48.498z\"></path><path d=\"m206.102 357.901c-37.063 0-71.905-14.435-98.109-40.643-54.098-54.1-54.098-142.128 0-196.227 54.1-54.1 142.124-54.09 196.223 0 54.1 54.099 54.1 142.128 0 196.227-26.208 26.208-61.051 40.643-98.114 40.643zm0-262.194c-31.626 0-63.25 12.036-87.324 36.109-48.151 48.156-48.151 126.502 0 174.657 23.323 23.328 54.338 36.174 87.324 36.174s64.001-12.845 87.329-36.174c48.151-48.156 48.151-126.502 0-174.657-24.078-24.073-55.703-36.109-87.329-36.109z\"></path><path d=\"m297.428 421.907c-8.813 0-17.618-3.352-24.326-10.061-2.978-2.978-2.978-7.805 0-10.785 2.98-2.98 7.806-2.98 10.786 0 7.468 7.468 19.619 7.468 27.087 0l77.045-77.05c3.615-3.62 5.606-8.427 5.606-13.54 0-5.115-1.991-9.921-5.606-13.541-2.979-2.98-2.979-7.805 0-10.785 2.98-2.979 7.806-2.979 10.785 0 13.412 13.412 13.412 35.241 0 48.652l-77.045 77.05c-6.709 6.707-15.523 10.06-24.332 10.06z\"></path><path d=\"m402.881 461.874c-12.275 0-23.809-4.783-32.489-13.462l-47.992-47.991c-2.979-2.98-2.979-7.805 0-10.785l54.194-54.193c2.979-2.979 7.805-2.979 10.785 0l47.992 47.991c8.679 8.68 13.461 20.215 13.461 32.49s-4.782 23.809-13.461 32.489c-8.68 8.679-20.216 13.461-32.49 13.461zm-64.303-66.846 42.599 42.599c11.967 11.967 31.442 11.967 43.408 0 11.968-11.968 11.968-31.442 0-43.408l-42.599-42.6z\"></path><path d=\"m467.373 461.874h-355.566c-4.211 0-7.627-3.417-7.627-7.628s3.416-7.627 7.627-7.627h355.566c4.211 0 7.627 3.416 7.627 7.627s-3.416 7.628-7.627 7.628z\"></path><path d=\"m401.258 421.926c-1.951 0-3.904-.744-5.392-2.234l-21.675-21.679c-2.98-2.979-2.98-7.806 0-10.786 2.979-2.979 7.805-2.979 10.785 0l21.675 21.68c2.98 2.979 2.98 7.805 0 10.785-1.491 1.489-3.442 2.234-5.393 2.234z\"></path><path d=\"m206.102 305.102c-.814 0-1.628-.129-2.413-.392-3.814-1.272-41.556-24.446-49.383-62.342-6.668-32.305 9.048-65.739 46.716-99.385 2.89-2.583 7.269-2.583 10.16 0 37.668 33.641 53.384 67.079 46.715 99.38-7.826 37.897-45.569 61.076-49.383 62.347-.783.263-1.598.392-2.412.392zm0-146.07c-27.603 26.133-40.27 51.358-37.674 75.049 3.138 28.626 28.11 47.967 37.674 54.392 9.564-6.426 34.541-25.762 37.679-54.392 2.597-23.691-10.075-48.916-37.679-75.049z\"></path><path d=\"m212.691 305.102c-3.48 0-5.675-.164-6.082-.198-2.652-.224-5.001-1.813-6.192-4.192-.029-.06-.243-.501-.268-.561-1.658-3.541-.373-7.757 2.979-9.768 10.835-6.515 63.212-41.869 30.112-98.402-1.073-1.832-1.331-4.027-.715-6.062.615-2.031 2.045-3.715 3.957-4.648 14.42-7.027 32.256-12.021 53.007-14.842 3.889-.571 7.478 1.927 8.427 5.685 11.51 45.499 7.364 80.353-12.324 103.586-22.525 26.577-58.58 29.402-72.901 29.402zm37.744-113.333c22.007 44.953-.696 78.336-19.848 96.52 13.933-2.384 31.348-8.268 43.364-22.45 15.403-18.178 19.019-46.169 10.775-83.267-12.915 2.146-24.4 5.225-34.291 9.197z\"></path><path d=\"m199.553 305.102c-14.291 0-50.42-2.82-72.944-29.416-19.678-23.233-23.824-58.082-12.314-103.571.948-3.758 4.509-6.256 8.422-5.685 20.756 2.821 38.592 7.816 53.012 14.842 1.912.933 3.342 2.617 3.958 4.648.615 2.035.358 4.23-.715 6.062-33.1 56.533 19.276 91.887 30.111 98.402 3.392 2.036 4.662 6.332 2.925 9.887-1.182 2.413-3.734 4.409-6.411 4.633-.408.035-2.589.198-6.044.198zm-72.07-122.529c-8.243 37.088-4.633 65.079 10.765 83.257 12.007 14.177 29.426 20.066 43.364 22.45-19.147-18.184-41.849-51.562-19.837-96.51-9.892-3.973-21.371-7.052-34.292-9.197z\"></path><path d=\"m205.154 304.547c-4.211 0-7.627-3.417-7.627-7.628v-71.533c0-4.211 3.416-7.627 7.627-7.627s7.628 3.416 7.628 7.627v71.533c-.001 4.211-3.417 7.628-7.628 7.628z\"></path></g></svg>							\n												<h5>\n													Self-Exploration												</h5>\n											<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m295.544 178.256a6.741 6.741 0 0 0 -3.689-3.623 6.718 6.718 0 0 0 -8.727 3.475c-.058.16-.123.319-.193.475a6.715 6.715 0 0 0 3.572 8.482q.238.087.473.192a6.789 6.789 0 0 0 8.569-9zm4.657-15.648a21.3 21.3 0 0 1 -18.927 38.018l-.027-.012a21.345 21.345 0 0 1 -11.856-27.305 7.1 7.1 0 0 1 .358-.879 21.238 21.238 0 0 1 11.277-11.14 21.465 21.465 0 0 1 4.89-1.409 108.471 108.471 0 0 1 110.169-79.395l-7.5-9.84a7.256 7.256 0 0 1 11.533-8.807l18.139 23.785a7.255 7.255 0 0 1 -1.364 10.17l-23.793 18.138a7.256 7.256 0 0 1 -8.8-11.532l9.821-7.488a94.123 94.123 0 0 0 -93.917 67.7zm-136.607 130.062c-1.181-.462-2.53-.937-4.2-1.439-1.749-.526-3.761-1.034-5.893-1.571-2.249-.568-4.622-1.167-6.887-1.817a81.221 81.221 0 0 1 -7.736-2.626 52.681 52.681 0 0 1 -7.96-3.915 57.093 57.093 0 0 1 -5.122-3.558 19.314 19.314 0 0 1 -2.1 3.175 29.979 29.979 0 0 1 -4.78 4.617c-1.583 1.254-3.581 2.64-5.787 4.091-1.069.7-2 1.305-2.835 1.842v15.331a30.06 30.06 0 0 0 7.975 20.595 25.087 25.087 0 0 0 37.345 0 30.056 30.056 0 0 0 7.976-20.595v-14.13zm-3.794 117.75q-.863.314-1.737.606a66.691 66.691 0 0 1 -42.171 0q-.874-.292-1.736-.606 8.1 16.046 22.822 31.483 14.722-15.438 22.822-31.483zm-44.516-66.689-1.446 6.36a26.013 26.013 0 0 1 -8.247 14.073q-.63.554-1.295 1.069a86.352 86.352 0 0 0 2.3 24.838 49.4 49.4 0 0 0 13.842 7.2 53.4 53.4 0 0 0 33.079 0 49.4 49.4 0 0 0 13.842-7.2 86.282 86.282 0 0 0 2.3-24.786q-.7-.539-1.362-1.121a26.01 26.01 0 0 1 -8.247-14.073l-1.446-6.36a39.133 39.133 0 0 1 -43.323 0zm102.131 19.247c21.553 5.007 34.482 13.526 35.172 45.641v.142h.028v79.966a7.273 7.273 0 0 1 -7.272 7.273h-216.795a7.273 7.273 0 0 1 -7.273-7.273v-79.966a7.309 7.309 0 0 1 .049-.842c.911-33.257 15.2-40.822 38.733-45.728.5-7.586 1.773-17.265 3.2-28.09 2.421-18.4 5.3-40.261 5.3-60.319a67.9 67.9 0 0 1 19.627-47.875 66.563 66.563 0 0 1 94.957 0 67.889 67.889 0 0 1 19.627 47.875c0 22.494 5.342 45.587 9.591 63.955 2.279 9.851 4.261 18.419 5.062 25.241zm-46.7-31.379a44.85 44.85 0 0 0 7.42-24.8v-18.92a7.275 7.275 0 0 0 -4.889-6.873c-1.2-.525-2.455-1.065-4.1-1.717-1.832-.726-3.692-1.4-5.606-1.978-2.014-.606-4.2-1.158-6.517-1.742-2.01-.507-4.13-1.042-6.433-1.7-2.252-.647-4.44-1.344-6.372-2.113a37.981 37.981 0 0 1 -5.745-2.837 66.527 66.527 0 0 1 -8.659-6.687c-.68-.593-.82-.722-1.072-.939l.012-.014a14.573 14.573 0 0 0 -4.812-3.1c-6.5-2.195-9.224.041-10.259 6.5a21.51 21.51 0 0 0 -.208 2.607 14.785 14.785 0 0 1 -.37 3.3 3.848 3.848 0 0 1 -.715 1.241 16.145 16.145 0 0 1 -2.507 2.344c-1.423 1.129-3.022 2.244-4.707 3.353-1.127.741-3.346 2.131-5.627 3.557a7.274 7.274 0 0 0 -3.8 6.392v19.327a44.847 44.847 0 0 0 7.42 24.8l-3.479 15.309a11.711 11.711 0 0 1 -3.7 6.345 18.2 18.2 0 0 1 -8.506 3.875c-3.592.726-8.189 1.542-12.649 2.326.575-6.608 1.632-14.641 2.8-23.479 2.5-19 5.467-41.557 5.467-62.194a53.45 53.45 0 0 1 15.423-37.7 52.155 52.155 0 0 1 74.275 0 53.45 53.45 0 0 1 15.423 37.7c0 24.013 5.564 48.064 9.989 67.193 1.675 7.243 3.177 13.738 4.1 19.051l-2.054-.362c-4.821-.846-9.929-1.744-13.842-2.535a18.2 18.2 0 0 1 -8.506-3.875 11.711 11.711 0 0 1 -3.7-6.345l-3.482-15.31zm-41.01 149.856h-45.614a7.289 7.289 0 0 0 -.715-1.2 26.958 26.958 0 0 1 -5.261-16.38q0-9.969 5.972-22.523a7.256 7.256 0 0 0 -13.125-6.193q-7.392 15.54-7.393 28.716a41.569 41.569 0 0 0 3.738 17.583h-31.487v-72.697c0-.137 0-.274-.012-.41.791-27.416 16-30.094 40.333-34.368 3.862-.679 7.947-1.4 13.53-2.518a102.527 102.527 0 0 0 9.229 40.627q10.013 22.326 30.808 43.123v26.24zm14.545-26.241q20.795-20.795 30.808-43.121a102.527 102.527 0 0 0 9.226-40.616c5.55 1.115 9.617 1.83 13.466 2.506 24.453 4.3 39.695 6.976 40.344 34.778h-.024v72.694h-31.422a41.554 41.554 0 0 0 3.738-17.583q0-13.176-7.392-28.716a7.256 7.256 0 1 0 -13.125 6.193q5.971 12.554 5.972 22.523a26.959 26.959 0 0 1 -5.262 16.38 7.359 7.359 0 0 0 -.715 1.2h-45.614zm314.57-424.669a17.825 17.825 0 0 1 12.368 4.889 15.841 15.841 0 0 1 4.992 11.445v162.839a15.841 15.841 0 0 1 -4.992 11.445 17.821 17.821 0 0 1 -12.368 4.889h-92.395a7.234 7.234 0 0 0 -3.9 1.136l-22.385 12.384q-.276.151-.532.323l-36.3 20.086v-26.656a7.273 7.273 0 0 0 -7.273-7.273h-55.544a17.824 17.824 0 0 1 -12.368-4.889 15.844 15.844 0 0 1 -4.991-11.445v-162.839a15.842 15.842 0 0 1 4.991-11.445 17.829 17.829 0 0 1 12.368-4.889zm-218.329-14.545h218.329a32.378 32.378 0 0 1 22.425 8.979 30.272 30.272 0 0 1 9.48 21.9v162.839a30.268 30.268 0 0 1 -9.48 21.9 32.375 32.375 0 0 1 -22.425 8.98h-90.544l-21.149 11.7q-.257.141-.518.259l-47.084 26.051a7.236 7.236 0 0 1 -10.73-6.335h-.037v-31.673h-48.267a32.378 32.378 0 0 1 -22.425-8.98 30.272 30.272 0 0 1 -9.48-21.9v-162.841a30.268 30.268 0 0 1 9.48-21.9 32.378 32.378 0 0 1 22.425-8.979zm53.254 72.778-10.193-10.192 10.193-10.193a7.272 7.272 0 0 0 -10.285-10.284l-10.192 10.191-10.192-10.19a7.272 7.272 0 0 0 -10.284 10.284l10.192 10.192-10.192 10.191a7.272 7.272 0 0 0 10.284 10.284l10.192-10.191 10.192 10.192a7.272 7.272 0 0 0 10.285-10.284zm123.469 89.042-10.192-10.192 10.192-10.193a7.272 7.272 0 0 0 -10.284-10.284l-10.192 10.192-10.192-10.191a7.272 7.272 0 1 0 -10.284 10.284l10.192 10.192-10.192 10.191a7.272 7.272 0 1 0 10.284 10.281l10.192-10.191 10.192 10.191a7.272 7.272 0 0 0 10.284-10.284z\" fill-rule=\"evenodd\"></path></svg>							\n												<h5>\n													Coping Strategies												</h5>\n											<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M248.298,398.776v-96.35c0-5.971-2.694-11.517-7.393-15.216l-59.928-47.132c-2.984-2.348-7.254-2.094-9.939,0.592   l-14.349,14.349c-2.986,2.985-4.637,7.118-4.53,11.338c0.106,4.215,1.961,8.252,5.079,11.069l30.406,27.556l-1.867,1.93   c-1.111,1.149-2.665,1.808-4.265,1.808h-5.366c-4.046,0-7.953-1.201-11.299-3.474l-66.646-45.245   c-1.237-0.838-1.976-2.237-1.976-3.742v-42.516c0-8.724-7.102-15.821-15.832-15.821h-23.54c-4.142,0-7.5,3.358-7.5,7.5v72.637   c0,6.404,3.145,12.405,8.408,16.048l46.124,31.979c3.404,2.359,8.077,1.513,10.437-1.89c2.36-3.404,1.514-8.077-1.89-10.437   l-46.128-31.982c-1.222-0.846-1.951-2.235-1.951-3.718v-65.137h16.039c0.458,0,0.832,0.368,0.832,0.821v42.516   c0,6.486,3.2,12.526,8.556,16.155l66.64,45.241c5.84,3.967,12.661,6.064,19.726,6.064h5.366c5.643,0,11.128-2.326,15.047-6.38   l2.254-2.331c2.749-2.837,4.193-6.572,4.066-10.518c-0.127-3.948-1.811-7.585-4.741-10.242l-30.836-27.946   c-0.039-0.036-0.143-0.129-0.148-0.327c-0.005-0.206,0.101-0.312,0.141-0.352l9.642-9.642l54.693,43.015   c1.061,0.834,1.668,2.084,1.668,3.427v88.844h-60.32v-24.995c0-6.607-3.24-12.792-8.658-16.538l-27.532-19.089   c-3.405-2.36-8.077-1.514-10.437,1.89s-1.514,8.077,1.89,10.437l27.541,19.095c1.375,0.951,2.196,2.522,2.196,4.205v24.995h-3.726   c-4.142,0-7.5,3.358-7.5,7.5v58.66c0,0.033,0.004,0.064,0.005,0.097V504.5c0,4.142,3.358,7.5,7.5,7.5h25.971   c4.142,0,7.5-3.358,7.5-7.5c0-4.142-3.358-7.5-7.5-7.5h-18.471v-47.64h71.535v8.07c0,0.016,0.002,0.032,0.002,0.048V497h-23.519   c-4.142,0-7.5,3.358-7.5,7.5c0,4.142,3.358,7.5,7.5,7.5h31.019c4.142,0,7.5-3.358,7.5-7.5v-62.64c0-0.016-0.002-0.032-0.002-0.048   v-42.92C248.293,398.853,248.298,398.815,248.298,398.776z M233.292,434.359h-71.54V406.27h3.62c0.036,0,0.07,0.005,0.106,0.005   h67.814V434.359z\"></path>	</g></g><g>	<g>		<path d=\"M455.147,197.92h-23.535c-8.728,0-15.828,7.101-15.828,15.828v42.51c0,1.501-0.742,2.9-1.984,3.744l-66.637,45.24   c-3.349,2.273-7.258,3.475-11.304,3.475h-5.362c-1.604,0-3.162-0.66-4.279-1.813l-1.862-1.922l30.408-27.549   c3.125-2.831,4.977-6.871,5.08-11.085c0.104-4.215-1.546-8.342-4.526-11.324l-14.354-14.354c-2.687-2.686-6.956-2.939-9.94-0.592   l-47.179,37.107l-12.747,10.025c-4.695,3.693-7.389,9.238-7.389,15.211v96.35c0,0.02,0.003,0.038,0.003,0.058v42.972   c0,0.02-0.003,0.038-0.003,0.058v62.64c0,4.142,3.357,7.5,7.5,7.5h86.538c4.143,0,7.5-3.358,7.5-7.5v-46.973   c0-0.033,0.005-0.064,0.005-0.097v-58.66c0-4.142-3.357-7.5-7.5-7.5h-3.729v-24.994c0-1.68,0.824-3.254,2.204-4.211l98.021-67.96   c5.26-3.647,8.4-9.646,8.4-16.046V205.42C462.647,201.278,459.29,197.92,455.147,197.92z M350.247,497h-71.538v-39.512   c0-0.02,0.003-0.038,0.003-0.058v-8.07h71.535V497z M350.252,434.36h-71.54v-28.088h67.811c0.013,0,0.026-0.002,0.039-0.002h3.69   V434.36z M447.65,278.059h-0.003c0,1.483-0.728,2.874-1.947,3.719l-98.021,67.961c-5.42,3.759-8.656,9.941-8.656,16.538v24.994   H278.71v-88.848c0-1.343,0.605-2.591,1.662-3.421l12.747-10.025l41.946-32.992l9.646,9.646c0.039,0.04,0.144,0.144,0.139,0.347   s-0.114,0.302-0.155,0.339l-30.83,27.931c-2.928,2.653-4.611,6.289-4.74,10.238c-0.128,3.95,1.314,7.688,4.065,10.527l2.256,2.328   c3.924,4.053,9.41,6.377,15.053,6.377h5.362c7.062,0,13.884-2.097,19.729-6.064l66.638-45.241   c5.359-3.639,8.559-9.677,8.559-16.154v-42.51c0-0.457,0.371-0.828,0.828-0.828h16.035V278.059z\"></path>	</g></g><g>	<g>		<path d=\"M256.002,0c-55.95,0-102.985,41.857-109.407,97.364c-0.476,4.115,2.474,7.836,6.588,8.313   c4.12,0.482,7.836-2.474,8.313-6.588C167.042,51.15,207.671,15,256.002,15c52.466,0,95.15,42.684,95.15,95.15   c0,41.507-26.532,77.917-66.021,90.603c-1.723,0.553-3.187,1.71-4.123,3.258l-25.006,41.333l-25.006-41.333   c-0.937-1.548-2.401-2.705-4.123-3.258c-33.804-10.859-58.561-39.313-64.609-74.259c-0.707-4.082-4.587-6.812-8.669-6.111   c-4.082,0.707-6.817,4.588-6.111,8.669c6.842,39.527,34.351,71.881,72.103,85.076l30,49.587c1.358,2.246,3.792,3.618,6.417,3.618   s5.059-1.372,6.417-3.618l29.999-49.587c44.219-15.453,73.732-56.883,73.732-103.978C366.152,49.413,316.739,0,256.002,0z\"></path>	</g></g><g>	<g>		<path d=\"M315.754,102.65h-10.565c-1.234-8.128-4.447-15.612-9.123-21.955l7.492-7.492c2.929-2.929,2.929-7.678,0-10.606   c-2.93-2.929-7.678-2.929-10.607,0l-7.491,7.491c-6.343-4.676-13.827-7.888-21.955-9.123V50.4c0-4.142-3.357-7.5-7.5-7.5   c-4.142,0-7.5,3.358-7.5,7.5v10.565c-8.128,1.234-15.612,4.447-21.955,9.123l-7.491-7.491c-2.929-2.929-7.678-2.929-10.606,0   c-2.929,2.929-2.929,7.678,0,10.606l7.491,7.491c-4.676,6.343-7.889,13.828-9.123,21.956c0,0-10.569,0-10.569,0   c-4.142,0-7.5,3.358-7.5,7.5c0,4.142,3.358,7.5,7.5,7.5h10.565c1.234,8.128,4.447,15.613,9.123,21.956l-7.491,7.491   c-2.929,2.929-2.929,7.678,0,10.606c1.464,1.464,3.384,2.197,5.303,2.197s3.839-0.732,5.303-2.197l7.491-7.491   c6.343,4.676,13.828,7.889,21.956,9.123V169.9c0,4.142,3.358,7.5,7.5,7.5c4.143,0,7.5-3.358,7.5-7.5v-10.565   c8.128-1.234,15.612-4.447,21.956-9.123l7.491,7.491c1.465,1.464,3.385,2.197,5.304,2.197c1.919,0,3.839-0.732,5.304-2.197   c2.929-2.929,2.929-7.678,0-10.606l-7.491-7.491c4.676-6.343,7.889-13.828,9.123-21.956h10.565c4.143,0,7.5-3.358,7.5-7.5   C323.254,106.008,319.897,102.65,315.754,102.65z M290.751,110.164c-0.007,19.151-15.586,34.731-34.738,34.738   c-0.004,0-0.009-0.001-0.013-0.001c-0.004,0-0.009,0.001-0.013,0.001c-19.151-0.007-34.731-15.586-34.738-34.738   c0-0.004,0.001-0.009,0.001-0.013c0-0.004-0.001-0.008-0.001-0.013c0.009-19.154,15.592-34.735,34.746-34.738   c0.002,0,0.004,0,0.006,0s0.004,0,0.006,0c19.155,0.004,34.737,15.584,34.744,34.738c0,0.004-0.001,0.008-0.001,0.013   C290.75,110.155,290.751,110.16,290.751,110.164z\"></path>	</g></g><g>	<g>		<path d=\"M256.002,85.119c-13.802,0-25.032,11.229-25.032,25.031c0,13.803,11.229,25.032,25.032,25.032   c13.803,0,25.031-11.229,25.031-25.031C281.033,96.348,269.804,85.119,256.002,85.119z M256.002,120.182   c-5.532,0-10.032-4.5-10.032-10.031c0-5.532,4.5-10.032,10.032-10.032c5.531,0,10.031,4.5,10.031,10.032   C266.033,115.682,261.533,120.182,256.002,120.182z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>							\n												<h5>\n													Goal Setting												</h5>\n											<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xodm=\"http://www.corel.com/coreldraw/odm/2003\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_2077007814064\"><g id=\"_200306976\"><path d=\"m256 319.44c-1.59 0-3.12-.63-4.24-1.75-11.13-11.13-22.33-21.98-33.17-32.48-62.94-60.98-117.31-113.65-117.31-179.39 0-44.31 36.05-80.35 80.36-80.35 37.74 0 57.46 18.43 74.36 48.87 16.9-30.44 36.62-48.87 74.35-48.87 44.31 0 80.36 36.04 80.36 80.35 0 65.74-54.36 118.41-117.31 179.39-10.83 10.49-22.03 21.35-33.16 32.48-1.12 1.12-2.65 1.75-4.24 1.75zm-74.36-281.97c-37.69 0-68.35 30.66-68.35 68.35 0 60.66 52.67 111.69 113.65 170.77 9.5 9.2 19.27 18.67 29.06 28.39 9.78-9.72 19.56-19.19 29.06-28.39 60.98-59.08 113.65-110.11 113.65-170.77 0-37.69-30.66-68.35-68.35-68.35-31.58 0-49.63 13.72-68.99 52.45-1.02 2.03-3.1 3.31-5.37 3.31s-4.35-1.28-5.37-3.31c-19.36-38.73-37.41-52.45-68.99-52.45z\"></path></g><g><g id=\"_200307000\"><path d=\"m268.35 249.13h-24.7c-3.32 0-6-2.68-6-6v-11.56c-2.07-.72-4.09-1.56-6.06-2.51l-8.18 8.18c-1.13 1.12-2.65 1.75-4.25 1.75-1.59 0-3.11-.63-4.24-1.75l-17.47-17.47c-2.34-2.34-2.34-6.14 0-8.49l8.18-8.18c-.95-1.97-1.79-3.99-2.51-6.06h-11.57c-3.31 0-6-2.68-6-6v-24.7c0-3.32 2.69-6 6-6h11.57c.72-2.07 1.56-4.09 2.51-6.06l-8.18-8.18c-1.13-1.13-1.76-2.65-1.76-4.24 0-1.6.63-3.12 1.76-4.25l17.47-17.47c2.34-2.34 6.14-2.34 8.49 0l8.18 8.18c1.96-.95 3.99-1.79 6.05-2.51v-11.56c0-3.32 2.69-6 6-6h24.71c3.31 0 6 2.68 6 6v11.56c2.07.72 4.09 1.56 6.06 2.51l8.18-8.18c1.12-1.12 2.65-1.76 4.24-1.76s3.12.64 4.24 1.76l17.48 17.47c1.12 1.13 1.75 2.65 1.75 4.25 0 1.59-.63 3.11-1.75 4.24l-8.19 8.18c.96 1.97 1.8 3.99 2.52 6.06h11.56c3.32 0 6 2.68 6 6v24.7c0 3.32-2.68 6-6 6h-11.56c-.72 2.07-1.56 4.09-2.52 6.06l8.19 8.18c1.12 1.13 1.75 2.65 1.75 4.24 0 1.6-.63 3.12-1.75 4.25l-17.47 17.47c-2.35 2.34-6.15 2.34-8.49 0l-8.18-8.18c-1.97.95-3.99 1.79-6.06 2.51v11.57c0 3.31-2.69 5.99-6 5.99zm-18.7-12h12.7v-10.02c0-2.74 1.86-5.14 4.52-5.82 4.06-1.03 7.95-2.64 11.56-4.79 2.36-1.4 5.37-1.02 7.31.92l7.09 7.09 8.99-8.99-7.09-7.09c-1.94-1.94-2.32-4.95-.92-7.31 2.15-3.6 3.76-7.49 4.79-11.56.68-2.66 3.07-4.52 5.82-4.52h10.02v-12.7h-10.02c-2.75 0-5.14-1.87-5.82-4.52-1.03-4.07-2.64-7.95-4.79-11.56-1.4-2.36-1.03-5.37.92-7.31l7.09-7.1-8.99-8.98-7.09 7.09c-1.94 1.94-4.95 2.32-7.31.92-3.61-2.15-7.5-3.77-11.56-4.8-2.66-.67-4.52-3.07-4.52-5.81v-10.03h-12.7v10.03c0 2.74-1.87 5.14-4.53 5.81-4.05 1.04-7.94 2.65-11.55 4.8-2.36 1.4-5.37 1.02-7.31-.92l-7.1-7.09-8.98 8.99 7.09 7.09c1.94 1.94 2.32 4.95.92 7.31-2.15 3.61-3.76 7.5-4.8 11.55-.67 2.66-3.07 4.53-5.81 4.53h-10.02v12.7h10.02c2.74 0 5.14 1.86 5.81 4.52 1.04 4.06 2.65 7.95 4.8 11.56 1.4 2.36 1.02 5.37-.92 7.31l-7.09 7.09 8.98 8.99 7.1-7.09c1.94-1.94 4.95-2.32 7.31-.92 3.61 2.15 7.5 3.76 11.56 4.79 2.66.68 4.52 3.08 4.52 5.82z\"></path></g><g id=\"_200306760\"><path d=\"m256 215.48c-20.29 0-36.8-16.5-36.8-36.79s16.51-36.8 36.8-36.8 36.79 16.51 36.79 36.8-16.5 36.79-36.79 36.79zm0-61.59c-13.67 0-24.8 11.13-24.8 24.8s11.13 24.79 24.8 24.79 24.79-11.12 24.79-24.79-11.12-24.8-24.79-24.8z\"></path></g></g><g id=\"_200306784\"><path d=\"m461.9 340.14c-.4 0-.8-.04-1.21-.12-2.77-.57-4.77-3.01-4.79-5.84-.01-.8-.54-16.35-18.14-25.35-4.77 6.05-14.98 15.83-31.26 15.83-7.09 0-14.53-1.91-22.17-5.68-1.97 2.49-4.39 6.45-4.71 11.19-.17 2.67-2.1 4.89-4.71 5.46-2.62.57-5.29-.67-6.56-3.03-.73-1.35-17.54-33.58 6.24-66.87.25-.34.54-.67.85-.95.53-.48 13.04-11.64 29.73-11.64 8.33 0 16.16 2.73 23.32 8.11 6.78.84 29.41 4.94 40.34 22.87 8.21 13.48 7.74 31.11-1.42 52.39-.96 2.24-3.15 3.63-5.51 3.63zm-26.24-44.82c.73 0 1.45.13 2.16.41 12.4 4.82 19.68 12.11 23.97 19.04 1.81-9.72.76-17.87-3.18-24.36-9.39-15.48-32.65-17.38-32.88-17.39-1.23-.09-2.4-.56-3.35-1.33-5.36-4.35-11.14-6.55-17.2-6.55-10.52 0-19.21 6.52-21.25 8.17-10.03 14.4-10.85 28.57-9.39 38.73 2.4-3.14 4.55-4.96 4.74-5.12 1.93-1.61 4.66-1.85 6.84-.59 7.27 4.2 14.13 6.33 20.38 6.33 15.81 0 23.56-13.64 23.88-14.22 1.09-1.97 3.15-3.12 5.28-3.12z\"></path></g><g id=\"_200307264\"><path d=\"m419.46 411.58c-.16 0-.32 0-.48 0-10.3-.15-20.06-5.17-28.23-14.52-7.44-8.5-13.2-20.37-16.78-34.51-9.81-1.95-15.33-9.01-16.53-15.9-1.66-9.54 3.98-18.57 14.03-22.48 3.08-1.2 6.56.33 7.76 3.42s-.33 6.56-3.41 7.77c-5.64 2.19-7.06 6.34-6.56 9.23.53 3.02 3.36 6.31 9.74 6.48 2.77.08 5.12 2.03 5.71 4.73 5.7 26.37 19.22 43.55 34.45 43.78h.29c14.2 0 26.75-15.15 32.81-39.65.62-2.5 2.75-4.32 5.31-4.54 5.81-.5 8.33-3.74 8.74-6.61.43-2.97-1.08-6.91-6.58-9.05-3.09-1.2-4.62-4.68-3.42-7.76 1.2-3.09 4.68-4.62 7.77-3.42 9.78 3.8 15.45 12.62 14.11 21.93-1.15 8.02-6.99 14.03-15.29 16.15-7.91 27.89-24.31 44.95-43.44 44.95z\"></path></g><g id=\"_200306808\"><path d=\"m332.55 486.53c-1.59 0-3.11-.63-4.24-1.75-1.12-1.13-1.76-2.65-1.76-4.25 0-44.88 21.25-52.28 38.32-58.24 13.67-4.77 23.55-8.21 24.07-29.7.08-3.31 2.86-5.89 6.15-5.85 3.31.08 5.93 2.83 5.85 6.15-.73 29.78-17.41 35.6-32.12 40.73-15.3 5.34-28.64 9.99-30.13 40.91h161.17c-1.49-30.92-14.83-35.57-30.13-40.91-14.73-5.13-31.42-10.96-32.12-40.8-.08-3.31 2.54-6.06 5.85-6.14 3.31-.11 6.06 2.54 6.14 5.86.51 21.53 10.4 24.98 24.08 29.75 17.07 5.96 38.32 13.36 38.32 58.24 0 3.31-2.69 6-6 6z\"></path></g><g id=\"_200306616\"><path d=\"m419.27 443.04c-15.8 0-30.68-6.12-41.9-17.25-2.36-2.33-2.38-6.13-.04-8.48 2.33-2.35 6.13-2.37 8.48-.04 8.96 8.88 20.85 13.77 33.46 13.77 12.62 0 24.5-4.89 33.46-13.77 2.36-2.33 6.16-2.31 8.49.04s2.31 6.15-.04 8.48c-11.22 11.13-26.11 17.25-41.91 17.25z\"></path></g><g id=\"_200307672\"><path d=\"m374.04 486.53c-3.32 0-6-2.68-6-6v-19.82c0-3.31 2.68-6 6-6 3.31 0 6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307888\"><path d=\"m464.51 486.53c-3.31 0-6-2.68-6-6v-19.82c0-3.31 2.69-6 6-6s6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307744\"><path d=\"m135.35 340.14c-.4 0-.8-.04-1.21-.12-2.77-.57-4.77-3.01-4.79-5.84-.01-.8-.54-16.35-18.14-25.35-4.77 6.05-14.98 15.83-31.26 15.83-7.09 0-14.53-1.91-22.17-5.68-1.97 2.49-4.39 6.45-4.7 11.19-.18 2.67-2.11 4.89-4.72 5.46-2.62.57-5.29-.67-6.56-3.03-.72-1.35-17.54-33.58 6.24-66.87.25-.34.54-.67.86-.95.52-.48 13.03-11.64 29.73-11.64 8.32 0 16.16 2.73 23.31 8.11 6.78.84 29.41 4.94 40.34 22.87 8.22 13.48 7.74 31.11-1.42 52.39-.96 2.24-3.15 3.63-5.51 3.63zm-26.25-44.82c.72 0 1.46.13 2.17.41 12.4 4.82 19.69 12.1 23.97 19.04 1.81-9.72.76-17.87-3.18-24.36-9.39-15.48-32.65-17.37-32.88-17.39-1.22-.09-2.4-.56-3.35-1.33-5.36-4.35-11.14-6.55-17.2-6.55-10.52 0-19.21 6.52-21.24 8.17-10.04 14.4-10.85 28.57-9.4 38.73 2.4-3.14 4.55-4.96 4.74-5.12 1.93-1.61 4.67-1.85 6.84-.59 7.27 4.2 14.13 6.33 20.38 6.33 16.01 0 23.79-14.05 23.86-14.2 1.08-1.98 3.14-3.14 5.29-3.14z\"></path></g><g id=\"_200307960\"><path d=\"m92.91 411.58c-.16 0-.32 0-.48 0-10.3-.15-20.06-5.17-28.23-14.52-7.44-8.5-13.2-20.37-16.79-34.51-9.8-1.95-15.32-9.01-16.52-15.9-1.66-9.54 3.98-18.57 14.03-22.48 3.08-1.2 6.56.33 7.76 3.42s-.33 6.56-3.41 7.77c-5.64 2.19-7.06 6.34-6.56 9.23.53 3.02 3.36 6.31 9.74 6.48 2.77.08 5.12 2.03 5.71 4.73 5.7 26.37 19.22 43.55 34.45 43.78h.29c14.2 0 26.75-15.15 32.81-39.65.62-2.5 2.75-4.32 5.31-4.54 5.81-.5 8.33-3.74 8.74-6.61.43-2.97-1.08-6.91-6.58-9.05-3.09-1.2-4.62-4.68-3.42-7.76 1.2-3.09 4.68-4.62 7.77-3.42 9.78 3.8 15.45 12.62 14.11 21.93-1.16 8.02-6.99 14.03-15.3 16.15-7.9 27.89-24.3 44.95-43.43 44.95z\"></path></g><g id=\"_200307408\"><path d=\"m6 486.53c-1.59 0-3.11-.63-4.24-1.75-1.12-1.13-1.76-2.65-1.76-4.25 0-44.88 21.25-52.28 38.32-58.24 13.67-4.77 23.55-8.21 24.08-29.7.08-3.31 2.82-5.89 6.14-5.85 3.31.08 5.93 2.83 5.85 6.15-.73 29.78-17.41 35.6-32.12 40.73-15.3 5.34-28.64 9.99-30.13 40.91h161.17c-1.5-30.92-14.83-35.57-30.13-40.91-14.73-5.13-31.42-10.96-32.12-40.8-.08-3.31 2.54-6.06 5.85-6.14 3.27-.11 6.06 2.54 6.14 5.86.51 21.53 10.4 24.98 24.08 29.75 17.07 5.96 38.32 13.36 38.32 58.24 0 3.31-2.69 6-6 6h-173.45z\"></path></g><g id=\"_200307648\"><path d=\"m92.73 443.04c-15.81 0-30.69-6.12-41.91-17.25-2.36-2.33-2.37-6.13-.04-8.48s6.13-2.37 8.48-.04c8.97 8.88 20.85 13.77 33.47 13.77 12.61 0 24.49-4.89 33.45-13.77 2.36-2.33 6.16-2.31 8.49.04s2.31 6.15-.04 8.48c-11.22 11.13-26.11 17.25-41.9 17.25z\"></path></g><g id=\"_200307720\"><path d=\"m47.49 486.53c-3.32 0-6-2.68-6-6v-19.82c0-3.31 2.68-6 6-6 3.31 0 6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307456\"><path d=\"m137.96 486.53c-3.31 0-6-2.68-6-6v-19.82c0-3.31 2.69-6 6-6s6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307840\"><path d=\"m94.44 269.46c-3.31 0-6-2.68-6-6v-23.34c0-8.01 6.52-14.53 14.53-14.53h70.38c3.31 0 6 2.69 6 6 0 3.32-2.69 6-6 6h-70.38c-1.37 0-2.53 1.16-2.53 2.53v23.34c0 3.32-2.68 6-6 6zm323.12-1.73c-3.32 0-6-2.69-6-6v-21.61c0-1.37-1.16-2.53-2.53-2.53h-70.38c-3.31 0-6-2.68-6-6 0-3.31 2.69-6 6-6h70.37c8.02 0 14.54 6.52 14.54 14.53v21.61c0 3.31-2.69 6-6 6z\"></path></g></g></g></svg>							\n												<h5>\n													Relationship Improvement												</h5>\n											<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m434.61 333.03-21.34-36.58c6.76-18.2 7.07-35.07.96-51.47-5.64-15.15-16.96-29.98-34.59-45.33-11.13-9.69-23.22-17.82-35.9-24.21.12-3.43-1.13-6.87-3.68-9.41l-11.45-11.45c-.24-.24-.28-.47-.12-.78 1.77-3.49 3.28-7.13 4.5-10.84.11-.32.3-.46.64-.46h16.19c6.99 0 12.67-5.68 12.67-12.67v-22.44c0-6.99-5.68-12.67-12.67-12.67h-16.19c-.34 0-.53-.14-.64-.46-1.22-3.71-2.73-7.35-4.5-10.84-.15-.3-.12-.53.12-.77l11.45-11.45c2.39-2.39 3.71-5.57 3.71-8.96s-1.32-6.57-3.71-8.96l-15.87-15.87c-2.39-2.39-5.57-3.71-8.96-3.71s-6.57 1.32-8.96 3.71l-11.45 11.45c-.24.24-.47.28-.77.12-3.48-1.77-7.13-3.28-10.84-4.5-.32-.11-.46-.3-.46-.64v-16.17c0-6.99-5.68-12.67-12.67-12.67h-22.44c-6.99 0-12.67 5.68-12.67 12.67v16.19c0 .34-.14.53-.46.64-3.7 1.22-7.35 2.73-10.84 4.5-.3.15-.54.12-.77-.12l-11.45-11.45c-2.39-2.39-5.57-3.71-8.96-3.71s-6.57 1.32-8.96 3.71l-15.87 15.87c-2.39 2.39-3.71 5.57-3.71 8.96s1.32 6.57 3.71 8.96l11.45 11.45c.24.24.28.47.12.77-1.77 3.49-3.28 7.13-4.5 10.84-.11.32-.3.46-.64.46h-16.19c-6.99 0-12.67 5.68-12.67 12.67v10.02c-.5 1.37-.76 2.83-.76 4.3v16.19c0 .34-.14.53-.46.64-3.7 1.22-7.35 2.73-10.84 4.5-.3.15-.54.12-.78-.12l-11.45-11.45c-2.39-2.39-5.57-3.71-8.96-3.71s-6.57 1.32-8.96 3.71l-15.87 15.87c-2.39 2.39-3.71 5.57-3.71 8.96s1.32 6.57 3.71 8.96l11.45 11.45c.24.24.28.47.12.77-1.77 3.49-3.28 7.13-4.49 10.84-.11.32-.3.46-.64.46h-16.16c-6.99 0-12.67 5.68-12.67 12.67v22.44c0 6.99 5.68 12.67 12.67 12.67h16.19c.34 0 .53.14.63.46 1.22 3.7 2.73 7.35 4.5 10.84.15.3.12.53-.12.77l-11.45 11.45c-2.39 2.39-3.71 5.57-3.71 8.96s1.32 6.57 3.71 8.96l15.87 15.87c2.39 2.39 5.57 3.71 8.96 3.71s6.57-1.32 8.96-3.71l11.45-11.45c.24-.24.47-.28.78-.12 2.63 1.33 5.35 2.52 8.12 3.55 3.63 25.86 18.43 52.67 31.88 77.01 3.47 6.29 6.76 12.23 9.84 18.11 12.69 35.72 7.66 78.5-12.56 106.56l-6.85 9.51h173.63v-44.26c38.01-.13 59.59-5.99 67.67-18.29 6.96-10.6 1.74-22.31-1.38-29.3-.44-.98-.98-2.19-1.34-3.11 3.35-4.7 4.47-10.39 3.12-16.07.14-.2.3-.41.43-.59 2.26-3.05 6.46-8.74 3.06-18.47-.43-1.24-.63-2.03-.72-2.5.71-.41 1.88-.97 2.87-1.44 1.82-.86 4.08-1.94 6.69-3.46 4.46-2.6 7.64-6.79 8.96-11.8s.59-10.29-2.01-14.74zm-267.36-225.64c0-.36.31-.67.67-.67h16.19c5.49 0 10.32-3.5 12.04-8.71 1.03-3.13 2.31-6.21 3.8-9.16 2.48-4.9 1.54-10.8-2.34-14.68l-11.45-11.45c-.13-.13-.19-.29-.19-.47 0-.19.06-.35.19-.47l15.87-15.87c.25-.25.69-.25.95 0l11.45 11.45c3.88 3.88 9.78 4.82 14.68 2.34 2.95-1.49 6.03-2.77 9.16-3.8 5.21-1.71 8.72-6.55 8.72-12.04v-16.19c0-.36.31-.67.67-.67h22.44c.36 0 .67.31.67.67v16.19c0 5.49 3.5 10.32 8.71 12.04 3.13 1.03 6.21 2.31 9.16 3.8 4.9 2.48 10.8 1.54 14.68-2.34l11.45-11.45c.25-.25.69-.25.95 0l15.87 15.87c.13.13.19.29.19.47 0 .19-.06.35-.19.47l-11.45 11.45c-3.88 3.88-4.83 9.78-2.34 14.68 1.49 2.95 2.77 6.03 3.8 9.16 1.71 5.21 6.55 8.71 12.04 8.71h16.19c.36 0 .67.31.67.67v22.44c0 .36-.31.67-.67.67h-16.19c-5.49 0-10.32 3.5-12.04 8.71-1.03 3.13-2.31 6.21-3.8 9.16-2.48 4.9-1.54 10.8 2.34 14.68l4.07 4.07c-6.1-2.13-12.28-3.88-18.52-5.21-5.2-1.11-10.41-1.91-15.6-2.44 12.29-9.41 20.24-24.22 20.24-40.86 0-28.37-23.08-51.45-51.45-51.45s-51.45 23.08-51.45 51.45c0 20.1 11.59 37.53 28.43 45.99-1.46.45-2.91.93-4.35 1.43-13.15 4.6-25.02 11.14-35.4 19.37l-9.95-9.95c-.13-.13-.19-.28-.19-.47s.06-.35.19-.47l11.45-11.45c3.88-3.88 4.82-9.78 2.34-14.68-1.49-2.95-2.77-6.03-3.8-9.16-1.71-5.21-6.55-8.72-12.04-8.72h-16.19c-.36 0-.67-.31-.67-.67zm91.61 50.67c-21.75 0-39.45-17.7-39.45-39.45s17.7-39.45 39.45-39.45 39.45 17.7 39.45 39.45-17.7 39.45-39.45 39.45zm-81.2 25.88 9.4 9.4c-14.24 13.88-24.92 31.39-31.29 51.61-10.4-7.3-16.85-19.33-16.85-32.3 0-20.29 15.4-37.05 35.13-39.21-.06.51-.1 1.02-.1 1.54 0 3.39 1.32 6.57 3.71 8.96zm-43.73 89.97-11.45 11.45c-.25.25-.69.25-.94 0l-15.87-15.87c-.16-.16-.19-.34-.19-.47 0-.19.06-.35.19-.47l11.45-11.45c3.88-3.88 4.83-9.78 2.34-14.68-1.49-2.95-2.77-6.03-3.8-9.16-1.71-5.21-6.55-8.72-12.04-8.72h-16.19c-.36 0-.67-.31-.67-.67v-22.44c0-.36.31-.67.67-.67h16.19c5.49 0 10.32-3.5 12.04-8.71 1.03-3.13 2.31-6.21 3.8-9.16 2.48-4.9 1.54-10.8-2.34-14.68l-11.45-11.45c-.16-.16-.19-.34-.19-.47 0-.19.06-.35.19-.47l15.87-15.87c.25-.25.69-.25.95 0l11.45 11.45c3.88 3.88 9.78 4.82 14.68 2.34 2.95-1.49 6.03-2.77 9.16-3.8 3.75-1.23 6.61-4.09 7.92-7.63.72.13 1.47.21 2.23.21h16.19c.34 0 .53.14.63.46 1.22 3.7 2.73 7.35 4.5 10.84.15.3.12.53-.12.77l-6.78 6.78c-1.31-.1-2.64-.16-3.95-.16-28.37 0-51.45 23.08-51.45 51.45 0 18.39 9.91 35.35 25.61 44.49-.35 1.61-.69 3.23-.99 4.86-.64 3.46-.96 6.96-1.05 10.48-.63-.3-1.27-.6-1.89-.91-4.92-2.5-10.82-1.55-14.7 2.33zm291.06 70.74c-.5 1.91-1.71 3.5-3.4 4.49-2.17 1.27-4.1 2.18-5.8 2.99-6.98 3.32-12.43 7.02-8.33 18.75 1.31 3.74.35 5.03-1.38 7.37-1.5 2.02-4 5.41-2.62 9.89.88 2.86.29 5.54-1.71 7.76-3.67 4.08-1.39 9.2.82 14.14 3.1 6.95 5.42 13.09 2.31 17.82-3.31 5.04-15.96 13.42-63.57 12.85l-6.07-.07v44.36h-138.97c17.34-30.83 20.69-72.96 7.92-108.51l-.14-.39-.19-.37c-3.21-6.12-6.59-12.24-10.17-18.72-17.49-31.65-35.57-64.37-30.34-92.85 7.68-41.83 33.96-73.47 72.1-86.8 44.14-15.44 96.37-3.43 136.3 31.34 33.22 28.92 41.99 54.65 29.31 86.02l-1.1 2.73 24.28 41.62c.99 1.69 1.25 3.67.75 5.58zm-145.92-155.19c-51.35 0-93.14 41.78-93.14 93.14 0 51.35 41.78 93.13 93.14 93.13s93.14-41.78 93.14-93.13c0-51.36-41.78-93.14-93.14-93.14zm0 174.27c-44.74 0-81.14-36.4-81.14-81.13s36.4-81.14 81.14-81.14 81.14 36.4 81.14 81.14-36.4 81.13-81.14 81.13zm29.28-94.9c-3.51-13.57-12.31-26.17-25.63-36.38-2.15-1.65-5.15-1.65-7.3 0-13.32 10.22-22.12 22.81-25.63 36.38-7.81-2.14-16.51-2.65-25.56-1.45-2.69.35-4.81 2.47-5.16 5.16-2.5 18.97 2.38 35.68 13.74 47.04 9.42 9.42 22.51 14.38 37.52 14.38 2.85 0 5.77-.19 8.74-.55 2.98.36 5.89.55 8.74.55 15.01 0 28.1-4.96 37.52-14.38 11.36-11.36 16.24-28.07 13.74-47.04-.35-2.69-2.47-4.81-5.16-5.16-9.05-1.19-17.75-.68-25.56 1.45zm-29.28-23.87c12.29 10.71 19.01 23.83 19.01 37.34s-6.71 26.63-19.01 37.34c-12.29-10.71-19.01-23.83-19.01-37.34s6.72-26.63 19.01-37.34zm-48.55 33.87c6.31-.35 12.26.35 17.57 2.02-.01.48-.02.96-.02 1.45 0 14.08 5.57 27.65 15.92 39.27-9.08-1.12-16.89-4.67-22.68-10.47-7.77-7.75-11.52-19.08-10.79-32.27zm86.33 32.27c-5.8 5.8-13.61 9.34-22.68 10.47 10.35-11.63 15.91-25.19 15.91-39.27 0-.48-.01-.96-.02-1.45 5.31-1.67 11.25-2.36 17.57-2.02.73 13.19-3.03 24.52-10.78 32.27z\"></path></svg>							\n												<h5>\n													Skill Development												</h5>\n											<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m273.006 83.567v168.425h87.5a4 4 0 1 1 0 8h-87.5v168.433h87.5a4 4 0 0 1 0 8h-91.5a4 4 0 0 1 -4-4v-172.431h-23.979a4 4 0 1 1 0-8h23.973v-172.428a4 4 0 0 1 4-4h91.5a4 4 0 0 1 0 8zm170 415.36a66.5 66.5 0 1 0 -66.5-66.5 66.569 66.569 0 0 0 66.5 66.5zm0-352.86a66.5 66.5 0 1 0 -66.5-66.5 66.569 66.569 0 0 0 66.5 66.5zm0 176.427a66.5 66.5 0 1 0 -66.498-66.494 66.569 66.569 0 0 0 66.5 66.494zm-344.212-195.217-6.473 100.7a4.046 4.046 0 0 0 .55 2.3l17.454 29.364a3.994 3.994 0 0 0 6.88 0l17.454-29.364a3.983 3.983 0 0 0 .55-2.3l-6.473-100.7 60.793 15.639c16.032 4.116 26.821 18.062 27.5 35.53v140.818a19.6 19.6 0 0 1 -6.9 15.283 37.861 37.861 0 0 1 -11.274 6.887 15.2 15.2 0 0 1 -12.961-.608v-142.018a4 4 0 1 0 -8 0v291.546a13.657 13.657 0 0 1 -13.646 13.639h-32.839a13.657 13.657 0 0 1 -13.646-13.639v-130.33a4 4 0 1 0 -8 0v130.33a13.657 13.657 0 0 1 -13.646 13.639h-32.831a13.651 13.651 0 0 1 -13.639-13.639v-291.546a4 4 0 0 0 -8 0v142.018a15.314 15.314 0 0 1 -12.967.608 37.924 37.924 0 0 1 -11.28-6.887 19.616 19.616 0 0 1 -6.895-15.283v-140.818c.672-17.468 11.46-31.414 27.492-35.53l60.793-15.639zm-96.287 50.948v141.039a27.649 27.649 0 0 0 9.61 21.284 45.823 45.823 0 0 0 13.638 8.338 23.478 23.478 0 0 0 15.89.6v140.868a21.667 21.667 0 0 0 21.641 21.646h32.836a21.632 21.632 0 0 0 17.647-9.131 21.608 21.608 0 0 0 17.64 9.131h32.836a21.673 21.673 0 0 0 21.647-21.641v-140.88a22.827 22.827 0 0 0 7.016 1.114 24.352 24.352 0 0 0 8.867-1.707 45.84 45.84 0 0 0 13.639-8.338 27.648 27.648 0 0 0 9.609-21.284v-141.039c-.786-21.127-13.932-38.031-33.493-43.06l-61.836-15.911c22.691-13.039 31.486-42.089 31.807-67.909.193-15.46-4.622-28.557-13.924-37.887a47.161 47.161 0 0 0 -33.301-13.458h-.943a47.221 47.221 0 0 0 -33.379 13.46c-9.3 9.33-14.118 22.427-13.925 37.887.322 25.82 9.124 54.87 31.815 67.909l-61.836 15.909c-19.562 5.029-32.715 21.933-33.5 43.06zm444.493-61.479a4 4 0 1 1 -8 0v-33.179h-33.164a4 4 0 0 1 0-8h33.172v-33.174a4 4 0 0 1 8 0v33.172h33.172a4 4 0 0 1 0 8h-33.18v33.179zm0 102.081v33.165h33.172a4 4 0 1 1 0 8h-33.172v33.171a4 4 0 1 1 -8 0v-33.169h-33.164a4 4 0 0 1 0-8h33.172v-33.167a4 4 0 1 1 8 0zm0 176.419v33.179h33.172a4 4 0 0 1 0 8h-33.172v33.175a4 4 0 0 1 -8 0v-33.173h-33.164a4 4 0 0 1 0-8h33.172v-33.181a4 4 0 1 1 8 0z\" fill-rule=\"evenodd\"></path></svg>							\n												<h5>\n													Tailored Approaches												</h5>\n											<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.</p>										\n		Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:43:49', '2026-06-17 10:43:49', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=540', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(541, 1, '2026-06-17 10:43:49', '2026-06-17 10:43:49', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />																<h2>Psychotherapy</h2>		<ul style=\"margin-left: 18px;\">\n 	<li>Individual therapy</li>\n 	<li>Couples/marriage therapy</li>\n 	<li>Family therapy</li>\n 	<li>Child/teen therapy</li>\n 	<li>Online therapy</li>\n 	<li>COMMON SPECIALTIES &amp; approaches</li>\n 	<li>Anxiety therapy</li>\n 	<li>Cognitive behavioral therapy (CBT)</li>\n 	<li>Depression counseling</li>\n 	<li>Dialectical behavior therapy (DBT)</li>\n 	<li>Grief &amp; loss counseling</li>\n 	<li>Relational therapy</li>\n</ul>			<h3>Therapy can be highly beneficial for mental health for several reasons:</h3>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 64 64.1999969\" width=\"512\"><path d=\"m51.2529297 42.0226555c.6357422-.6357422.9863281-1.4804688.9863281-2.3808594 0-.8994141-.3500977-1.7441406-.9863281-2.3808594-1.3125-1.3125-3.4492188-1.3125-4.7617188 0l-9.3178711 9.3173828c-.7426758.7441406-1.1518555 1.7314453-1.1518555 2.7822266v11.6396484c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-5.109375l11.5913086-11.5917969c.1875-.1875.2929688-.4414062.2929688-.7070312v-11.5488281c0-2.0097656-1.6347656-3.6445312-3.6445312-3.6445312s-3.6450195 1.6347656-3.6450195 3.6445312v8.6582031l-4.2260742 4.2255859c-.1459961.1455078-.3828125.1435547-.527832 0-.1455078-.1455078-.1455078-.3818359 0-.5273438zm-3.7910156 4.3183594c.9243164.9248047 2.4306641.9267578 3.355957 0l4.519043-4.5185547c.1875-.1875.2929688-.4414062.2929688-.7070312v-9.0722656c0-.9072266.737793-1.6445312 1.6450195-1.6445312.9067383 0 1.6445312.7373047 1.6445312 1.6445312v11.1347656l-11.5913086 11.5917968c-.1875.1875-.2929688.4414062-.2929688.7070312v4.5234375h-9.0136719v-10.6396484c0-.5166016.2011719-1.0029297.5664062-1.3681641l9.3173828-9.3173828c.5332031-.5332031 1.4008789-.5332031 1.9331055 0 .2583008.2587891.4008789.6015625.4008789.9667969s-.1420898.7089844-.4003906.9667969l-2.3769531 2.3769531c-.9252929.9248047-.9252929 2.4306641.0000001 3.3554688z\"></path><path d=\"m6.7250977 28.398632c-2.0097656 0-3.6445312 1.6347656-3.6445312 3.6445312v11.5488281c0 .265625.1054688.5195312.2929688.7070312l11.5913086 11.5917969v5.109375c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-11.6396483c0-1.0507812-.4091797-2.0380859-1.1523438-2.7822266l-9.3173828-9.3173828c-1.3125-1.3125-3.4487305-1.3125-4.762207 0-.6357422.6367188-.9858398 1.4814453-.9858398 2.3808594 0 .9003906.3505859 1.7451172.9863281 2.3808594l2.3769531 2.3769531c.1455078.1455078.1455078.3818359 0 .5273438s-.3823242.1435547-.527832 0l-4.2260742-4.2255859v-8.6582031c-.0000002-2.0097657-1.6352541-3.6445314-3.6450197-3.6445314zm6.4570312 17.9423829c.925293.9267578 2.4316406.9257812 3.355957 0 .925293-.9248047.925293-2.4306641 0-3.3554688l-2.3769531-2.3769531c-.2583008-.2578125-.4003906-.6015625-.4003906-.9667969s.1425781-.7080078.4003906-.9667969c.5332031-.5332031 1.4003906-.5332031 1.9335938 0l9.3168945 9.3173828c.3657227.3652344.5668945.8515625.5668945 1.3681641v10.6396484h-9.0136719v-4.5234375c0-.265625-.1054688-.5195312-.2929688-.7070312l-11.5913085-11.5917969v-11.1347656c0-.9072266.737793-1.6445312 1.6445312-1.6445312.9072266 0 1.6450195.7373047 1.6450195 1.6445312v9.0722656c0 .265625.1054688.5195312.2929688.7070312z\"></path><path d=\"m32 2.0998046c-10.0986328 0-18.3144531 8.2158203-18.3144531 18.3144531s8.2158203 18.3144525 18.3144531 18.3144525 18.3144531-8.2158203 18.3144531-18.3144531-8.2158203-18.3144525-18.3144531-18.3144525zm0 2.0000003c7.614502 0 14.0088501 5.2510376 15.798584 12.3173819-3.1233521-2.2542105-8.8903809-3.70996-15.798584-3.70996s-12.6752319 1.4557495-15.798584 3.70996c1.7897339-7.0663443 8.184082-12.3173819 15.798584-12.3173819zm16.3144531 16.3144521c0 2.6992188-6.7001953 5.7070312-16.3144531 5.7070312s-16.3144531-3.0078125-16.3144531-5.7070312 6.7001953-5.7070302 16.3144531-5.7070302 16.3144531 3.0078115 16.3144531 5.7070302zm-16.3144531 16.3144532c-7.614502 0-14.0088501-5.2510376-15.798584-12.3173828 3.1233521 2.2542114 8.8903809 3.7099609 15.798584 3.7099609s12.6752319-1.4557495 15.798584-3.7099609c-1.7897339 7.0663452-8.184082 12.3173828-15.798584 12.3173828z\"></path></svg>							\n												<h5>\n													Safe Space												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"friendship-work\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><circle cx=\"72\" cy=\"102\" r=\"4\"></circle><circle cx=\"64\" cy=\"50\" r=\"4\"></circle><path d=\"m228 98h4v4c0 2.211 1.789 4 4 4s4-1.789 4-4v-4h4c2.211 0 4-1.789 4-4s-1.789-4-4-4h-4v-4c0-2.211-1.789-4-4-4s-4 1.789-4 4v4h-4c-2.211 0-4 1.789-4 4s1.789 4 4 4z\"></path><path d=\"m132 218h-16v-5.977c0-13.759-8.223-25.608-20-30.964v-35.059c0-.031-.017-.057-.018-.088 4.839-3.653 8.018-9.396 8.018-15.912 0-2.211-1.789-4-4-4h-30.707c-7.328 0-13.293 5.965-13.293 13.293v25.953c0 5.361 2.096 10.206 5.444 13.892-14.614 3.818-25.444 17.092-25.444 32.885v49.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-49.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v9.977c0 2.211 1.789 4 4 4h8v8h-20v-17.582c0-2.211-1.789-4-4-4s-4 1.789-4 4v21.582 24c0 2.211 1.789 4 4 4s4-1.789 4-4v-20h32c6.617 0 12-5.383 12-12s-5.383-12-12-12zm-68-78.707c0-2.918 2.375-5.293 5.293-5.293h26.023c-1.652 4.656-6.102 8-11.316 8h-20zm12.754 38.707c-7.031 0-12.754-5.723-12.754-12.754v-15.246h24v28zm55.246 56h-4v-8h4c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m56 210c-2.211 0-4 1.789-4 4v48c0 2.211 1.789 4 4 4s4-1.789 4-4v-48c0-2.211-1.789-4-4-4z\"></path><path d=\"m238.009 178.998c3.704-3.95 5.991-9.243 5.991-15.072v-9.926c0-11.027-8.973-20-20-20s-20 8.973-20 20v27.06c-11.777 5.355-20 17.205-20 30.964v45.976c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v45.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-15.99-11.1-29.402-25.991-33.025zm-26.009-.998v-24c0-6.617 5.383-12 12-12s12 5.383 12 12v9.926c0 7.762-6.312 14.074-14.074 14.074z\"></path><path d=\"m204 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m244 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m185.41 118.613c.102-.242.203-.488.301-.734 5.809-.832 10.289-5.844 10.289-11.879 0-1.206-.223-2.353-.555-3.452 10.229-11.777 15.466-22.512 15.466-31.899-.001-20.208-15.274-36.649-34.048-36.649-7.633 0-14.91 2.711-20.863 7.707-5.953-4.996-13.23-7.707-20.863-7.707-18.773 0-34.047 16.441-34.047 36.648 0 9.39 5.238 20.125 15.465 31.903-.333 1.098-.555 2.244-.555 3.449 0 6.035 4.48 11.047 10.289 11.879.098.246.199.488.301.73-3.516 4.699-3.141 11.406 1.125 15.672 4.27 4.27 10.98 4.633 15.672 1.129.242.102.488.203.734.301.832 5.809 5.844 10.289 11.879 10.289s11.047-4.48 11.879-10.289c.246-.098.492-.199.734-.301 4.688 3.504 11.398 3.141 15.672-1.129 4.262-4.261 4.641-10.965 1.125-15.668zm-50.273-76.613c6.707 0 13.09 2.82 17.965 7.945 1.516 1.586 4.281 1.586 5.797 0 4.874-5.125 11.257-7.945 17.964-7.945 14.363 0 26.047 12.852 26.047 28.648 0 6.991-4.298 15.714-12.379 25.343-1.433-.939-3.052-1.616-4.82-1.87-.098-.246-.199-.488-.301-.73 3.516-4.699 3.141-11.406-1.125-15.672-4.273-4.27-10.984-4.637-15.672-1.129-.242-.102-.488-.203-.734-.301-.832-5.809-5.844-10.289-11.879-10.289s-11.047 4.48-11.879 10.289c-.246.098-.492.199-.734.301-4.691-3.508-11.402-3.141-15.672 1.129-4.262 4.262-4.641 10.965-1.125 15.668-.102.242-.203.488-.301.734-1.769.253-3.387.931-4.821 1.87-8.079-9.625-12.378-18.35-12.378-25.343 0-15.796 11.683-28.648 26.047-28.648zm47.687 68c-1.77 0-3.328 1.16-3.832 2.855-.488 1.629-1.117 3.16-1.875 4.555-.848 1.562-.562 3.492.695 4.746l.812.812c1.562 1.559 1.562 4.098.004 5.656-1.562 1.566-4.098 1.559-5.66 0l-.82-.82c-1.254-1.254-3.18-1.535-4.73-.691-1.426.773-2.957 1.402-4.555 1.875-1.699.504-2.863 2.062-2.863 3.836v1.176c0 2.207-1.793 4-4 4s-4-1.793-4-4v-1.176c0-1.773-1.164-3.332-2.863-3.836-1.598-.473-3.129-1.102-4.555-1.875-.598-.324-1.254-.48-1.902-.48-1.035 0-2.059.402-2.828 1.172l-.82.82c-1.559 1.559-4.094 1.566-5.66 0-1.559-1.559-1.559-4.098-.008-5.648l.824-.82c1.258-1.254 1.543-3.184.695-4.746-.758-1.395-1.387-2.926-1.875-4.555-.504-1.695-2.062-2.855-3.832-2.855h-1.176c-2.207 0-4-1.793-4-4s1.793-4 4-4h1.176c1.77 0 3.328-1.16 3.832-2.855.488-1.629 1.117-3.16 1.875-4.555.848-1.562.562-3.492-.695-4.746l-.812-.812c-1.562-1.559-1.562-4.098-.004-5.656 1.57-1.562 4.105-1.559 5.66 0l.82.82c1.25 1.25 3.18 1.531 4.73.691 1.426-.773 2.957-1.402 4.555-1.875 1.699-.504 2.863-2.062 2.863-3.836v-1.177c0-2.207 1.793-4 4-4s4 1.793 4 4v1.176c0 1.773 1.164 3.332 2.863 3.836 1.598.473 3.129 1.102 4.555 1.875 1.555.844 3.48.562 4.73-.691l.82-.82c1.562-1.559 4.098-1.566 5.66 0 1.559 1.559 1.559 4.098.008 5.648l-.824.82c-1.258 1.254-1.543 3.184-.695 4.746.758 1.395 1.387 2.926 1.875 4.555.504 1.695 2.062 2.855 3.832 2.855h1.176c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m156 90c-8.824 0-16 7.176-16 16s7.176 16 16 16 16-7.176 16-16-7.176-16-16-16zm0 24c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path></g></svg>							\n												<h5>\n													Emotional Support												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m206.102 400.162c-46.373 0-92.751-17.652-128.056-52.957-34.207-34.208-53.046-79.687-53.046-128.061s18.839-93.853 53.046-128.06c70.615-70.615 185.512-70.605 256.117 0 70.614 70.614 70.614 185.507 0 256.121-35.305 35.305-81.683 52.957-128.061 52.957zm0-346.791c-42.47 0-84.94 16.167-117.271 48.498-64.665 64.666-64.665 169.885 0 234.551 64.666 64.666 169.891 64.661 234.547 0 31.328-31.328 48.578-72.978 48.578-117.276 0-44.297-17.25-85.947-48.578-117.275-32.33-32.331-74.801-48.498-117.276-48.498z\"></path><path d=\"m206.102 357.901c-37.063 0-71.905-14.435-98.109-40.643-54.098-54.1-54.098-142.128 0-196.227 54.1-54.1 142.124-54.09 196.223 0 54.1 54.099 54.1 142.128 0 196.227-26.208 26.208-61.051 40.643-98.114 40.643zm0-262.194c-31.626 0-63.25 12.036-87.324 36.109-48.151 48.156-48.151 126.502 0 174.657 23.323 23.328 54.338 36.174 87.324 36.174s64.001-12.845 87.329-36.174c48.151-48.156 48.151-126.502 0-174.657-24.078-24.073-55.703-36.109-87.329-36.109z\"></path><path d=\"m297.428 421.907c-8.813 0-17.618-3.352-24.326-10.061-2.978-2.978-2.978-7.805 0-10.785 2.98-2.98 7.806-2.98 10.786 0 7.468 7.468 19.619 7.468 27.087 0l77.045-77.05c3.615-3.62 5.606-8.427 5.606-13.54 0-5.115-1.991-9.921-5.606-13.541-2.979-2.98-2.979-7.805 0-10.785 2.98-2.979 7.806-2.979 10.785 0 13.412 13.412 13.412 35.241 0 48.652l-77.045 77.05c-6.709 6.707-15.523 10.06-24.332 10.06z\"></path><path d=\"m402.881 461.874c-12.275 0-23.809-4.783-32.489-13.462l-47.992-47.991c-2.979-2.98-2.979-7.805 0-10.785l54.194-54.193c2.979-2.979 7.805-2.979 10.785 0l47.992 47.991c8.679 8.68 13.461 20.215 13.461 32.49s-4.782 23.809-13.461 32.489c-8.68 8.679-20.216 13.461-32.49 13.461zm-64.303-66.846 42.599 42.599c11.967 11.967 31.442 11.967 43.408 0 11.968-11.968 11.968-31.442 0-43.408l-42.599-42.6z\"></path><path d=\"m467.373 461.874h-355.566c-4.211 0-7.627-3.417-7.627-7.628s3.416-7.627 7.627-7.627h355.566c4.211 0 7.627 3.416 7.627 7.627s-3.416 7.628-7.627 7.628z\"></path><path d=\"m401.258 421.926c-1.951 0-3.904-.744-5.392-2.234l-21.675-21.679c-2.98-2.979-2.98-7.806 0-10.786 2.979-2.979 7.805-2.979 10.785 0l21.675 21.68c2.98 2.979 2.98 7.805 0 10.785-1.491 1.489-3.442 2.234-5.393 2.234z\"></path><path d=\"m206.102 305.102c-.814 0-1.628-.129-2.413-.392-3.814-1.272-41.556-24.446-49.383-62.342-6.668-32.305 9.048-65.739 46.716-99.385 2.89-2.583 7.269-2.583 10.16 0 37.668 33.641 53.384 67.079 46.715 99.38-7.826 37.897-45.569 61.076-49.383 62.347-.783.263-1.598.392-2.412.392zm0-146.07c-27.603 26.133-40.27 51.358-37.674 75.049 3.138 28.626 28.11 47.967 37.674 54.392 9.564-6.426 34.541-25.762 37.679-54.392 2.597-23.691-10.075-48.916-37.679-75.049z\"></path><path d=\"m212.691 305.102c-3.48 0-5.675-.164-6.082-.198-2.652-.224-5.001-1.813-6.192-4.192-.029-.06-.243-.501-.268-.561-1.658-3.541-.373-7.757 2.979-9.768 10.835-6.515 63.212-41.869 30.112-98.402-1.073-1.832-1.331-4.027-.715-6.062.615-2.031 2.045-3.715 3.957-4.648 14.42-7.027 32.256-12.021 53.007-14.842 3.889-.571 7.478 1.927 8.427 5.685 11.51 45.499 7.364 80.353-12.324 103.586-22.525 26.577-58.58 29.402-72.901 29.402zm37.744-113.333c22.007 44.953-.696 78.336-19.848 96.52 13.933-2.384 31.348-8.268 43.364-22.45 15.403-18.178 19.019-46.169 10.775-83.267-12.915 2.146-24.4 5.225-34.291 9.197z\"></path><path d=\"m199.553 305.102c-14.291 0-50.42-2.82-72.944-29.416-19.678-23.233-23.824-58.082-12.314-103.571.948-3.758 4.509-6.256 8.422-5.685 20.756 2.821 38.592 7.816 53.012 14.842 1.912.933 3.342 2.617 3.958 4.648.615 2.035.358 4.23-.715 6.062-33.1 56.533 19.276 91.887 30.111 98.402 3.392 2.036 4.662 6.332 2.925 9.887-1.182 2.413-3.734 4.409-6.411 4.633-.408.035-2.589.198-6.044.198zm-72.07-122.529c-8.243 37.088-4.633 65.079 10.765 83.257 12.007 14.177 29.426 20.066 43.364 22.45-19.147-18.184-41.849-51.562-19.837-96.51-9.892-3.973-21.371-7.052-34.292-9.197z\"></path><path d=\"m205.154 304.547c-4.211 0-7.627-3.417-7.627-7.628v-71.533c0-4.211 3.416-7.627 7.627-7.627s7.628 3.416 7.628 7.627v71.533c-.001 4.211-3.417 7.628-7.628 7.628z\"></path></g></svg>							\n												<h5>\n													Self-Exploration												</h5>\n											<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m295.544 178.256a6.741 6.741 0 0 0 -3.689-3.623 6.718 6.718 0 0 0 -8.727 3.475c-.058.16-.123.319-.193.475a6.715 6.715 0 0 0 3.572 8.482q.238.087.473.192a6.789 6.789 0 0 0 8.569-9zm4.657-15.648a21.3 21.3 0 0 1 -18.927 38.018l-.027-.012a21.345 21.345 0 0 1 -11.856-27.305 7.1 7.1 0 0 1 .358-.879 21.238 21.238 0 0 1 11.277-11.14 21.465 21.465 0 0 1 4.89-1.409 108.471 108.471 0 0 1 110.169-79.395l-7.5-9.84a7.256 7.256 0 0 1 11.533-8.807l18.139 23.785a7.255 7.255 0 0 1 -1.364 10.17l-23.793 18.138a7.256 7.256 0 0 1 -8.8-11.532l9.821-7.488a94.123 94.123 0 0 0 -93.917 67.7zm-136.607 130.062c-1.181-.462-2.53-.937-4.2-1.439-1.749-.526-3.761-1.034-5.893-1.571-2.249-.568-4.622-1.167-6.887-1.817a81.221 81.221 0 0 1 -7.736-2.626 52.681 52.681 0 0 1 -7.96-3.915 57.093 57.093 0 0 1 -5.122-3.558 19.314 19.314 0 0 1 -2.1 3.175 29.979 29.979 0 0 1 -4.78 4.617c-1.583 1.254-3.581 2.64-5.787 4.091-1.069.7-2 1.305-2.835 1.842v15.331a30.06 30.06 0 0 0 7.975 20.595 25.087 25.087 0 0 0 37.345 0 30.056 30.056 0 0 0 7.976-20.595v-14.13zm-3.794 117.75q-.863.314-1.737.606a66.691 66.691 0 0 1 -42.171 0q-.874-.292-1.736-.606 8.1 16.046 22.822 31.483 14.722-15.438 22.822-31.483zm-44.516-66.689-1.446 6.36a26.013 26.013 0 0 1 -8.247 14.073q-.63.554-1.295 1.069a86.352 86.352 0 0 0 2.3 24.838 49.4 49.4 0 0 0 13.842 7.2 53.4 53.4 0 0 0 33.079 0 49.4 49.4 0 0 0 13.842-7.2 86.282 86.282 0 0 0 2.3-24.786q-.7-.539-1.362-1.121a26.01 26.01 0 0 1 -8.247-14.073l-1.446-6.36a39.133 39.133 0 0 1 -43.323 0zm102.131 19.247c21.553 5.007 34.482 13.526 35.172 45.641v.142h.028v79.966a7.273 7.273 0 0 1 -7.272 7.273h-216.795a7.273 7.273 0 0 1 -7.273-7.273v-79.966a7.309 7.309 0 0 1 .049-.842c.911-33.257 15.2-40.822 38.733-45.728.5-7.586 1.773-17.265 3.2-28.09 2.421-18.4 5.3-40.261 5.3-60.319a67.9 67.9 0 0 1 19.627-47.875 66.563 66.563 0 0 1 94.957 0 67.889 67.889 0 0 1 19.627 47.875c0 22.494 5.342 45.587 9.591 63.955 2.279 9.851 4.261 18.419 5.062 25.241zm-46.7-31.379a44.85 44.85 0 0 0 7.42-24.8v-18.92a7.275 7.275 0 0 0 -4.889-6.873c-1.2-.525-2.455-1.065-4.1-1.717-1.832-.726-3.692-1.4-5.606-1.978-2.014-.606-4.2-1.158-6.517-1.742-2.01-.507-4.13-1.042-6.433-1.7-2.252-.647-4.44-1.344-6.372-2.113a37.981 37.981 0 0 1 -5.745-2.837 66.527 66.527 0 0 1 -8.659-6.687c-.68-.593-.82-.722-1.072-.939l.012-.014a14.573 14.573 0 0 0 -4.812-3.1c-6.5-2.195-9.224.041-10.259 6.5a21.51 21.51 0 0 0 -.208 2.607 14.785 14.785 0 0 1 -.37 3.3 3.848 3.848 0 0 1 -.715 1.241 16.145 16.145 0 0 1 -2.507 2.344c-1.423 1.129-3.022 2.244-4.707 3.353-1.127.741-3.346 2.131-5.627 3.557a7.274 7.274 0 0 0 -3.8 6.392v19.327a44.847 44.847 0 0 0 7.42 24.8l-3.479 15.309a11.711 11.711 0 0 1 -3.7 6.345 18.2 18.2 0 0 1 -8.506 3.875c-3.592.726-8.189 1.542-12.649 2.326.575-6.608 1.632-14.641 2.8-23.479 2.5-19 5.467-41.557 5.467-62.194a53.45 53.45 0 0 1 15.423-37.7 52.155 52.155 0 0 1 74.275 0 53.45 53.45 0 0 1 15.423 37.7c0 24.013 5.564 48.064 9.989 67.193 1.675 7.243 3.177 13.738 4.1 19.051l-2.054-.362c-4.821-.846-9.929-1.744-13.842-2.535a18.2 18.2 0 0 1 -8.506-3.875 11.711 11.711 0 0 1 -3.7-6.345l-3.482-15.31zm-41.01 149.856h-45.614a7.289 7.289 0 0 0 -.715-1.2 26.958 26.958 0 0 1 -5.261-16.38q0-9.969 5.972-22.523a7.256 7.256 0 0 0 -13.125-6.193q-7.392 15.54-7.393 28.716a41.569 41.569 0 0 0 3.738 17.583h-31.487v-72.697c0-.137 0-.274-.012-.41.791-27.416 16-30.094 40.333-34.368 3.862-.679 7.947-1.4 13.53-2.518a102.527 102.527 0 0 0 9.229 40.627q10.013 22.326 30.808 43.123v26.24zm14.545-26.241q20.795-20.795 30.808-43.121a102.527 102.527 0 0 0 9.226-40.616c5.55 1.115 9.617 1.83 13.466 2.506 24.453 4.3 39.695 6.976 40.344 34.778h-.024v72.694h-31.422a41.554 41.554 0 0 0 3.738-17.583q0-13.176-7.392-28.716a7.256 7.256 0 1 0 -13.125 6.193q5.971 12.554 5.972 22.523a26.959 26.959 0 0 1 -5.262 16.38 7.359 7.359 0 0 0 -.715 1.2h-45.614zm314.57-424.669a17.825 17.825 0 0 1 12.368 4.889 15.841 15.841 0 0 1 4.992 11.445v162.839a15.841 15.841 0 0 1 -4.992 11.445 17.821 17.821 0 0 1 -12.368 4.889h-92.395a7.234 7.234 0 0 0 -3.9 1.136l-22.385 12.384q-.276.151-.532.323l-36.3 20.086v-26.656a7.273 7.273 0 0 0 -7.273-7.273h-55.544a17.824 17.824 0 0 1 -12.368-4.889 15.844 15.844 0 0 1 -4.991-11.445v-162.839a15.842 15.842 0 0 1 4.991-11.445 17.829 17.829 0 0 1 12.368-4.889zm-218.329-14.545h218.329a32.378 32.378 0 0 1 22.425 8.979 30.272 30.272 0 0 1 9.48 21.9v162.839a30.268 30.268 0 0 1 -9.48 21.9 32.375 32.375 0 0 1 -22.425 8.98h-90.544l-21.149 11.7q-.257.141-.518.259l-47.084 26.051a7.236 7.236 0 0 1 -10.73-6.335h-.037v-31.673h-48.267a32.378 32.378 0 0 1 -22.425-8.98 30.272 30.272 0 0 1 -9.48-21.9v-162.841a30.268 30.268 0 0 1 9.48-21.9 32.378 32.378 0 0 1 22.425-8.979zm53.254 72.778-10.193-10.192 10.193-10.193a7.272 7.272 0 0 0 -10.285-10.284l-10.192 10.191-10.192-10.19a7.272 7.272 0 0 0 -10.284 10.284l10.192 10.192-10.192 10.191a7.272 7.272 0 0 0 10.284 10.284l10.192-10.191 10.192 10.192a7.272 7.272 0 0 0 10.285-10.284zm123.469 89.042-10.192-10.192 10.192-10.193a7.272 7.272 0 0 0 -10.284-10.284l-10.192 10.192-10.192-10.191a7.272 7.272 0 1 0 -10.284 10.284l10.192 10.192-10.192 10.191a7.272 7.272 0 1 0 10.284 10.281l10.192-10.191 10.192 10.191a7.272 7.272 0 0 0 10.284-10.284z\" fill-rule=\"evenodd\"></path></svg>							\n												<h5>\n													Coping Strategies												</h5>\n											<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M248.298,398.776v-96.35c0-5.971-2.694-11.517-7.393-15.216l-59.928-47.132c-2.984-2.348-7.254-2.094-9.939,0.592   l-14.349,14.349c-2.986,2.985-4.637,7.118-4.53,11.338c0.106,4.215,1.961,8.252,5.079,11.069l30.406,27.556l-1.867,1.93   c-1.111,1.149-2.665,1.808-4.265,1.808h-5.366c-4.046,0-7.953-1.201-11.299-3.474l-66.646-45.245   c-1.237-0.838-1.976-2.237-1.976-3.742v-42.516c0-8.724-7.102-15.821-15.832-15.821h-23.54c-4.142,0-7.5,3.358-7.5,7.5v72.637   c0,6.404,3.145,12.405,8.408,16.048l46.124,31.979c3.404,2.359,8.077,1.513,10.437-1.89c2.36-3.404,1.514-8.077-1.89-10.437   l-46.128-31.982c-1.222-0.846-1.951-2.235-1.951-3.718v-65.137h16.039c0.458,0,0.832,0.368,0.832,0.821v42.516   c0,6.486,3.2,12.526,8.556,16.155l66.64,45.241c5.84,3.967,12.661,6.064,19.726,6.064h5.366c5.643,0,11.128-2.326,15.047-6.38   l2.254-2.331c2.749-2.837,4.193-6.572,4.066-10.518c-0.127-3.948-1.811-7.585-4.741-10.242l-30.836-27.946   c-0.039-0.036-0.143-0.129-0.148-0.327c-0.005-0.206,0.101-0.312,0.141-0.352l9.642-9.642l54.693,43.015   c1.061,0.834,1.668,2.084,1.668,3.427v88.844h-60.32v-24.995c0-6.607-3.24-12.792-8.658-16.538l-27.532-19.089   c-3.405-2.36-8.077-1.514-10.437,1.89s-1.514,8.077,1.89,10.437l27.541,19.095c1.375,0.951,2.196,2.522,2.196,4.205v24.995h-3.726   c-4.142,0-7.5,3.358-7.5,7.5v58.66c0,0.033,0.004,0.064,0.005,0.097V504.5c0,4.142,3.358,7.5,7.5,7.5h25.971   c4.142,0,7.5-3.358,7.5-7.5c0-4.142-3.358-7.5-7.5-7.5h-18.471v-47.64h71.535v8.07c0,0.016,0.002,0.032,0.002,0.048V497h-23.519   c-4.142,0-7.5,3.358-7.5,7.5c0,4.142,3.358,7.5,7.5,7.5h31.019c4.142,0,7.5-3.358,7.5-7.5v-62.64c0-0.016-0.002-0.032-0.002-0.048   v-42.92C248.293,398.853,248.298,398.815,248.298,398.776z M233.292,434.359h-71.54V406.27h3.62c0.036,0,0.07,0.005,0.106,0.005   h67.814V434.359z\"></path>	</g></g><g>	<g>		<path d=\"M455.147,197.92h-23.535c-8.728,0-15.828,7.101-15.828,15.828v42.51c0,1.501-0.742,2.9-1.984,3.744l-66.637,45.24   c-3.349,2.273-7.258,3.475-11.304,3.475h-5.362c-1.604,0-3.162-0.66-4.279-1.813l-1.862-1.922l30.408-27.549   c3.125-2.831,4.977-6.871,5.08-11.085c0.104-4.215-1.546-8.342-4.526-11.324l-14.354-14.354c-2.687-2.686-6.956-2.939-9.94-0.592   l-47.179,37.107l-12.747,10.025c-4.695,3.693-7.389,9.238-7.389,15.211v96.35c0,0.02,0.003,0.038,0.003,0.058v42.972   c0,0.02-0.003,0.038-0.003,0.058v62.64c0,4.142,3.357,7.5,7.5,7.5h86.538c4.143,0,7.5-3.358,7.5-7.5v-46.973   c0-0.033,0.005-0.064,0.005-0.097v-58.66c0-4.142-3.357-7.5-7.5-7.5h-3.729v-24.994c0-1.68,0.824-3.254,2.204-4.211l98.021-67.96   c5.26-3.647,8.4-9.646,8.4-16.046V205.42C462.647,201.278,459.29,197.92,455.147,197.92z M350.247,497h-71.538v-39.512   c0-0.02,0.003-0.038,0.003-0.058v-8.07h71.535V497z M350.252,434.36h-71.54v-28.088h67.811c0.013,0,0.026-0.002,0.039-0.002h3.69   V434.36z M447.65,278.059h-0.003c0,1.483-0.728,2.874-1.947,3.719l-98.021,67.961c-5.42,3.759-8.656,9.941-8.656,16.538v24.994   H278.71v-88.848c0-1.343,0.605-2.591,1.662-3.421l12.747-10.025l41.946-32.992l9.646,9.646c0.039,0.04,0.144,0.144,0.139,0.347   s-0.114,0.302-0.155,0.339l-30.83,27.931c-2.928,2.653-4.611,6.289-4.74,10.238c-0.128,3.95,1.314,7.688,4.065,10.527l2.256,2.328   c3.924,4.053,9.41,6.377,15.053,6.377h5.362c7.062,0,13.884-2.097,19.729-6.064l66.638-45.241   c5.359-3.639,8.559-9.677,8.559-16.154v-42.51c0-0.457,0.371-0.828,0.828-0.828h16.035V278.059z\"></path>	</g></g><g>	<g>		<path d=\"M256.002,0c-55.95,0-102.985,41.857-109.407,97.364c-0.476,4.115,2.474,7.836,6.588,8.313   c4.12,0.482,7.836-2.474,8.313-6.588C167.042,51.15,207.671,15,256.002,15c52.466,0,95.15,42.684,95.15,95.15   c0,41.507-26.532,77.917-66.021,90.603c-1.723,0.553-3.187,1.71-4.123,3.258l-25.006,41.333l-25.006-41.333   c-0.937-1.548-2.401-2.705-4.123-3.258c-33.804-10.859-58.561-39.313-64.609-74.259c-0.707-4.082-4.587-6.812-8.669-6.111   c-4.082,0.707-6.817,4.588-6.111,8.669c6.842,39.527,34.351,71.881,72.103,85.076l30,49.587c1.358,2.246,3.792,3.618,6.417,3.618   s5.059-1.372,6.417-3.618l29.999-49.587c44.219-15.453,73.732-56.883,73.732-103.978C366.152,49.413,316.739,0,256.002,0z\"></path>	</g></g><g>	<g>		<path d=\"M315.754,102.65h-10.565c-1.234-8.128-4.447-15.612-9.123-21.955l7.492-7.492c2.929-2.929,2.929-7.678,0-10.606   c-2.93-2.929-7.678-2.929-10.607,0l-7.491,7.491c-6.343-4.676-13.827-7.888-21.955-9.123V50.4c0-4.142-3.357-7.5-7.5-7.5   c-4.142,0-7.5,3.358-7.5,7.5v10.565c-8.128,1.234-15.612,4.447-21.955,9.123l-7.491-7.491c-2.929-2.929-7.678-2.929-10.606,0   c-2.929,2.929-2.929,7.678,0,10.606l7.491,7.491c-4.676,6.343-7.889,13.828-9.123,21.956c0,0-10.569,0-10.569,0   c-4.142,0-7.5,3.358-7.5,7.5c0,4.142,3.358,7.5,7.5,7.5h10.565c1.234,8.128,4.447,15.613,9.123,21.956l-7.491,7.491   c-2.929,2.929-2.929,7.678,0,10.606c1.464,1.464,3.384,2.197,5.303,2.197s3.839-0.732,5.303-2.197l7.491-7.491   c6.343,4.676,13.828,7.889,21.956,9.123V169.9c0,4.142,3.358,7.5,7.5,7.5c4.143,0,7.5-3.358,7.5-7.5v-10.565   c8.128-1.234,15.612-4.447,21.956-9.123l7.491,7.491c1.465,1.464,3.385,2.197,5.304,2.197c1.919,0,3.839-0.732,5.304-2.197   c2.929-2.929,2.929-7.678,0-10.606l-7.491-7.491c4.676-6.343,7.889-13.828,9.123-21.956h10.565c4.143,0,7.5-3.358,7.5-7.5   C323.254,106.008,319.897,102.65,315.754,102.65z M290.751,110.164c-0.007,19.151-15.586,34.731-34.738,34.738   c-0.004,0-0.009-0.001-0.013-0.001c-0.004,0-0.009,0.001-0.013,0.001c-19.151-0.007-34.731-15.586-34.738-34.738   c0-0.004,0.001-0.009,0.001-0.013c0-0.004-0.001-0.008-0.001-0.013c0.009-19.154,15.592-34.735,34.746-34.738   c0.002,0,0.004,0,0.006,0s0.004,0,0.006,0c19.155,0.004,34.737,15.584,34.744,34.738c0,0.004-0.001,0.008-0.001,0.013   C290.75,110.155,290.751,110.16,290.751,110.164z\"></path>	</g></g><g>	<g>		<path d=\"M256.002,85.119c-13.802,0-25.032,11.229-25.032,25.031c0,13.803,11.229,25.032,25.032,25.032   c13.803,0,25.031-11.229,25.031-25.031C281.033,96.348,269.804,85.119,256.002,85.119z M256.002,120.182   c-5.532,0-10.032-4.5-10.032-10.031c0-5.532,4.5-10.032,10.032-10.032c5.531,0,10.031,4.5,10.031,10.032   C266.033,115.682,261.533,120.182,256.002,120.182z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>							\n												<h5>\n													Goal Setting												</h5>\n											<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xodm=\"http://www.corel.com/coreldraw/odm/2003\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_2077007814064\"><g id=\"_200306976\"><path d=\"m256 319.44c-1.59 0-3.12-.63-4.24-1.75-11.13-11.13-22.33-21.98-33.17-32.48-62.94-60.98-117.31-113.65-117.31-179.39 0-44.31 36.05-80.35 80.36-80.35 37.74 0 57.46 18.43 74.36 48.87 16.9-30.44 36.62-48.87 74.35-48.87 44.31 0 80.36 36.04 80.36 80.35 0 65.74-54.36 118.41-117.31 179.39-10.83 10.49-22.03 21.35-33.16 32.48-1.12 1.12-2.65 1.75-4.24 1.75zm-74.36-281.97c-37.69 0-68.35 30.66-68.35 68.35 0 60.66 52.67 111.69 113.65 170.77 9.5 9.2 19.27 18.67 29.06 28.39 9.78-9.72 19.56-19.19 29.06-28.39 60.98-59.08 113.65-110.11 113.65-170.77 0-37.69-30.66-68.35-68.35-68.35-31.58 0-49.63 13.72-68.99 52.45-1.02 2.03-3.1 3.31-5.37 3.31s-4.35-1.28-5.37-3.31c-19.36-38.73-37.41-52.45-68.99-52.45z\"></path></g><g><g id=\"_200307000\"><path d=\"m268.35 249.13h-24.7c-3.32 0-6-2.68-6-6v-11.56c-2.07-.72-4.09-1.56-6.06-2.51l-8.18 8.18c-1.13 1.12-2.65 1.75-4.25 1.75-1.59 0-3.11-.63-4.24-1.75l-17.47-17.47c-2.34-2.34-2.34-6.14 0-8.49l8.18-8.18c-.95-1.97-1.79-3.99-2.51-6.06h-11.57c-3.31 0-6-2.68-6-6v-24.7c0-3.32 2.69-6 6-6h11.57c.72-2.07 1.56-4.09 2.51-6.06l-8.18-8.18c-1.13-1.13-1.76-2.65-1.76-4.24 0-1.6.63-3.12 1.76-4.25l17.47-17.47c2.34-2.34 6.14-2.34 8.49 0l8.18 8.18c1.96-.95 3.99-1.79 6.05-2.51v-11.56c0-3.32 2.69-6 6-6h24.71c3.31 0 6 2.68 6 6v11.56c2.07.72 4.09 1.56 6.06 2.51l8.18-8.18c1.12-1.12 2.65-1.76 4.24-1.76s3.12.64 4.24 1.76l17.48 17.47c1.12 1.13 1.75 2.65 1.75 4.25 0 1.59-.63 3.11-1.75 4.24l-8.19 8.18c.96 1.97 1.8 3.99 2.52 6.06h11.56c3.32 0 6 2.68 6 6v24.7c0 3.32-2.68 6-6 6h-11.56c-.72 2.07-1.56 4.09-2.52 6.06l8.19 8.18c1.12 1.13 1.75 2.65 1.75 4.24 0 1.6-.63 3.12-1.75 4.25l-17.47 17.47c-2.35 2.34-6.15 2.34-8.49 0l-8.18-8.18c-1.97.95-3.99 1.79-6.06 2.51v11.57c0 3.31-2.69 5.99-6 5.99zm-18.7-12h12.7v-10.02c0-2.74 1.86-5.14 4.52-5.82 4.06-1.03 7.95-2.64 11.56-4.79 2.36-1.4 5.37-1.02 7.31.92l7.09 7.09 8.99-8.99-7.09-7.09c-1.94-1.94-2.32-4.95-.92-7.31 2.15-3.6 3.76-7.49 4.79-11.56.68-2.66 3.07-4.52 5.82-4.52h10.02v-12.7h-10.02c-2.75 0-5.14-1.87-5.82-4.52-1.03-4.07-2.64-7.95-4.79-11.56-1.4-2.36-1.03-5.37.92-7.31l7.09-7.1-8.99-8.98-7.09 7.09c-1.94 1.94-4.95 2.32-7.31.92-3.61-2.15-7.5-3.77-11.56-4.8-2.66-.67-4.52-3.07-4.52-5.81v-10.03h-12.7v10.03c0 2.74-1.87 5.14-4.53 5.81-4.05 1.04-7.94 2.65-11.55 4.8-2.36 1.4-5.37 1.02-7.31-.92l-7.1-7.09-8.98 8.99 7.09 7.09c1.94 1.94 2.32 4.95.92 7.31-2.15 3.61-3.76 7.5-4.8 11.55-.67 2.66-3.07 4.53-5.81 4.53h-10.02v12.7h10.02c2.74 0 5.14 1.86 5.81 4.52 1.04 4.06 2.65 7.95 4.8 11.56 1.4 2.36 1.02 5.37-.92 7.31l-7.09 7.09 8.98 8.99 7.1-7.09c1.94-1.94 4.95-2.32 7.31-.92 3.61 2.15 7.5 3.76 11.56 4.79 2.66.68 4.52 3.08 4.52 5.82z\"></path></g><g id=\"_200306760\"><path d=\"m256 215.48c-20.29 0-36.8-16.5-36.8-36.79s16.51-36.8 36.8-36.8 36.79 16.51 36.79 36.8-16.5 36.79-36.79 36.79zm0-61.59c-13.67 0-24.8 11.13-24.8 24.8s11.13 24.79 24.8 24.79 24.79-11.12 24.79-24.79-11.12-24.8-24.79-24.8z\"></path></g></g><g id=\"_200306784\"><path d=\"m461.9 340.14c-.4 0-.8-.04-1.21-.12-2.77-.57-4.77-3.01-4.79-5.84-.01-.8-.54-16.35-18.14-25.35-4.77 6.05-14.98 15.83-31.26 15.83-7.09 0-14.53-1.91-22.17-5.68-1.97 2.49-4.39 6.45-4.71 11.19-.17 2.67-2.1 4.89-4.71 5.46-2.62.57-5.29-.67-6.56-3.03-.73-1.35-17.54-33.58 6.24-66.87.25-.34.54-.67.85-.95.53-.48 13.04-11.64 29.73-11.64 8.33 0 16.16 2.73 23.32 8.11 6.78.84 29.41 4.94 40.34 22.87 8.21 13.48 7.74 31.11-1.42 52.39-.96 2.24-3.15 3.63-5.51 3.63zm-26.24-44.82c.73 0 1.45.13 2.16.41 12.4 4.82 19.68 12.11 23.97 19.04 1.81-9.72.76-17.87-3.18-24.36-9.39-15.48-32.65-17.38-32.88-17.39-1.23-.09-2.4-.56-3.35-1.33-5.36-4.35-11.14-6.55-17.2-6.55-10.52 0-19.21 6.52-21.25 8.17-10.03 14.4-10.85 28.57-9.39 38.73 2.4-3.14 4.55-4.96 4.74-5.12 1.93-1.61 4.66-1.85 6.84-.59 7.27 4.2 14.13 6.33 20.38 6.33 15.81 0 23.56-13.64 23.88-14.22 1.09-1.97 3.15-3.12 5.28-3.12z\"></path></g><g id=\"_200307264\"><path d=\"m419.46 411.58c-.16 0-.32 0-.48 0-10.3-.15-20.06-5.17-28.23-14.52-7.44-8.5-13.2-20.37-16.78-34.51-9.81-1.95-15.33-9.01-16.53-15.9-1.66-9.54 3.98-18.57 14.03-22.48 3.08-1.2 6.56.33 7.76 3.42s-.33 6.56-3.41 7.77c-5.64 2.19-7.06 6.34-6.56 9.23.53 3.02 3.36 6.31 9.74 6.48 2.77.08 5.12 2.03 5.71 4.73 5.7 26.37 19.22 43.55 34.45 43.78h.29c14.2 0 26.75-15.15 32.81-39.65.62-2.5 2.75-4.32 5.31-4.54 5.81-.5 8.33-3.74 8.74-6.61.43-2.97-1.08-6.91-6.58-9.05-3.09-1.2-4.62-4.68-3.42-7.76 1.2-3.09 4.68-4.62 7.77-3.42 9.78 3.8 15.45 12.62 14.11 21.93-1.15 8.02-6.99 14.03-15.29 16.15-7.91 27.89-24.31 44.95-43.44 44.95z\"></path></g><g id=\"_200306808\"><path d=\"m332.55 486.53c-1.59 0-3.11-.63-4.24-1.75-1.12-1.13-1.76-2.65-1.76-4.25 0-44.88 21.25-52.28 38.32-58.24 13.67-4.77 23.55-8.21 24.07-29.7.08-3.31 2.86-5.89 6.15-5.85 3.31.08 5.93 2.83 5.85 6.15-.73 29.78-17.41 35.6-32.12 40.73-15.3 5.34-28.64 9.99-30.13 40.91h161.17c-1.49-30.92-14.83-35.57-30.13-40.91-14.73-5.13-31.42-10.96-32.12-40.8-.08-3.31 2.54-6.06 5.85-6.14 3.31-.11 6.06 2.54 6.14 5.86.51 21.53 10.4 24.98 24.08 29.75 17.07 5.96 38.32 13.36 38.32 58.24 0 3.31-2.69 6-6 6z\"></path></g><g id=\"_200306616\"><path d=\"m419.27 443.04c-15.8 0-30.68-6.12-41.9-17.25-2.36-2.33-2.38-6.13-.04-8.48 2.33-2.35 6.13-2.37 8.48-.04 8.96 8.88 20.85 13.77 33.46 13.77 12.62 0 24.5-4.89 33.46-13.77 2.36-2.33 6.16-2.31 8.49.04s2.31 6.15-.04 8.48c-11.22 11.13-26.11 17.25-41.91 17.25z\"></path></g><g id=\"_200307672\"><path d=\"m374.04 486.53c-3.32 0-6-2.68-6-6v-19.82c0-3.31 2.68-6 6-6 3.31 0 6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307888\"><path d=\"m464.51 486.53c-3.31 0-6-2.68-6-6v-19.82c0-3.31 2.69-6 6-6s6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307744\"><path d=\"m135.35 340.14c-.4 0-.8-.04-1.21-.12-2.77-.57-4.77-3.01-4.79-5.84-.01-.8-.54-16.35-18.14-25.35-4.77 6.05-14.98 15.83-31.26 15.83-7.09 0-14.53-1.91-22.17-5.68-1.97 2.49-4.39 6.45-4.7 11.19-.18 2.67-2.11 4.89-4.72 5.46-2.62.57-5.29-.67-6.56-3.03-.72-1.35-17.54-33.58 6.24-66.87.25-.34.54-.67.86-.95.52-.48 13.03-11.64 29.73-11.64 8.32 0 16.16 2.73 23.31 8.11 6.78.84 29.41 4.94 40.34 22.87 8.22 13.48 7.74 31.11-1.42 52.39-.96 2.24-3.15 3.63-5.51 3.63zm-26.25-44.82c.72 0 1.46.13 2.17.41 12.4 4.82 19.69 12.1 23.97 19.04 1.81-9.72.76-17.87-3.18-24.36-9.39-15.48-32.65-17.37-32.88-17.39-1.22-.09-2.4-.56-3.35-1.33-5.36-4.35-11.14-6.55-17.2-6.55-10.52 0-19.21 6.52-21.24 8.17-10.04 14.4-10.85 28.57-9.4 38.73 2.4-3.14 4.55-4.96 4.74-5.12 1.93-1.61 4.67-1.85 6.84-.59 7.27 4.2 14.13 6.33 20.38 6.33 16.01 0 23.79-14.05 23.86-14.2 1.08-1.98 3.14-3.14 5.29-3.14z\"></path></g><g id=\"_200307960\"><path d=\"m92.91 411.58c-.16 0-.32 0-.48 0-10.3-.15-20.06-5.17-28.23-14.52-7.44-8.5-13.2-20.37-16.79-34.51-9.8-1.95-15.32-9.01-16.52-15.9-1.66-9.54 3.98-18.57 14.03-22.48 3.08-1.2 6.56.33 7.76 3.42s-.33 6.56-3.41 7.77c-5.64 2.19-7.06 6.34-6.56 9.23.53 3.02 3.36 6.31 9.74 6.48 2.77.08 5.12 2.03 5.71 4.73 5.7 26.37 19.22 43.55 34.45 43.78h.29c14.2 0 26.75-15.15 32.81-39.65.62-2.5 2.75-4.32 5.31-4.54 5.81-.5 8.33-3.74 8.74-6.61.43-2.97-1.08-6.91-6.58-9.05-3.09-1.2-4.62-4.68-3.42-7.76 1.2-3.09 4.68-4.62 7.77-3.42 9.78 3.8 15.45 12.62 14.11 21.93-1.16 8.02-6.99 14.03-15.3 16.15-7.9 27.89-24.3 44.95-43.43 44.95z\"></path></g><g id=\"_200307408\"><path d=\"m6 486.53c-1.59 0-3.11-.63-4.24-1.75-1.12-1.13-1.76-2.65-1.76-4.25 0-44.88 21.25-52.28 38.32-58.24 13.67-4.77 23.55-8.21 24.08-29.7.08-3.31 2.82-5.89 6.14-5.85 3.31.08 5.93 2.83 5.85 6.15-.73 29.78-17.41 35.6-32.12 40.73-15.3 5.34-28.64 9.99-30.13 40.91h161.17c-1.5-30.92-14.83-35.57-30.13-40.91-14.73-5.13-31.42-10.96-32.12-40.8-.08-3.31 2.54-6.06 5.85-6.14 3.27-.11 6.06 2.54 6.14 5.86.51 21.53 10.4 24.98 24.08 29.75 17.07 5.96 38.32 13.36 38.32 58.24 0 3.31-2.69 6-6 6h-173.45z\"></path></g><g id=\"_200307648\"><path d=\"m92.73 443.04c-15.81 0-30.69-6.12-41.91-17.25-2.36-2.33-2.37-6.13-.04-8.48s6.13-2.37 8.48-.04c8.97 8.88 20.85 13.77 33.47 13.77 12.61 0 24.49-4.89 33.45-13.77 2.36-2.33 6.16-2.31 8.49.04s2.31 6.15-.04 8.48c-11.22 11.13-26.11 17.25-41.9 17.25z\"></path></g><g id=\"_200307720\"><path d=\"m47.49 486.53c-3.32 0-6-2.68-6-6v-19.82c0-3.31 2.68-6 6-6 3.31 0 6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307456\"><path d=\"m137.96 486.53c-3.31 0-6-2.68-6-6v-19.82c0-3.31 2.69-6 6-6s6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307840\"><path d=\"m94.44 269.46c-3.31 0-6-2.68-6-6v-23.34c0-8.01 6.52-14.53 14.53-14.53h70.38c3.31 0 6 2.69 6 6 0 3.32-2.69 6-6 6h-70.38c-1.37 0-2.53 1.16-2.53 2.53v23.34c0 3.32-2.68 6-6 6zm323.12-1.73c-3.32 0-6-2.69-6-6v-21.61c0-1.37-1.16-2.53-2.53-2.53h-70.38c-3.31 0-6-2.68-6-6 0-3.31 2.69-6 6-6h70.37c8.02 0 14.54 6.52 14.54 14.53v21.61c0 3.31-2.69 6-6 6z\"></path></g></g></g></svg>							\n												<h5>\n													Relationship Improvement												</h5>\n											<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m434.61 333.03-21.34-36.58c6.76-18.2 7.07-35.07.96-51.47-5.64-15.15-16.96-29.98-34.59-45.33-11.13-9.69-23.22-17.82-35.9-24.21.12-3.43-1.13-6.87-3.68-9.41l-11.45-11.45c-.24-.24-.28-.47-.12-.78 1.77-3.49 3.28-7.13 4.5-10.84.11-.32.3-.46.64-.46h16.19c6.99 0 12.67-5.68 12.67-12.67v-22.44c0-6.99-5.68-12.67-12.67-12.67h-16.19c-.34 0-.53-.14-.64-.46-1.22-3.71-2.73-7.35-4.5-10.84-.15-.3-.12-.53.12-.77l11.45-11.45c2.39-2.39 3.71-5.57 3.71-8.96s-1.32-6.57-3.71-8.96l-15.87-15.87c-2.39-2.39-5.57-3.71-8.96-3.71s-6.57 1.32-8.96 3.71l-11.45 11.45c-.24.24-.47.28-.77.12-3.48-1.77-7.13-3.28-10.84-4.5-.32-.11-.46-.3-.46-.64v-16.17c0-6.99-5.68-12.67-12.67-12.67h-22.44c-6.99 0-12.67 5.68-12.67 12.67v16.19c0 .34-.14.53-.46.64-3.7 1.22-7.35 2.73-10.84 4.5-.3.15-.54.12-.77-.12l-11.45-11.45c-2.39-2.39-5.57-3.71-8.96-3.71s-6.57 1.32-8.96 3.71l-15.87 15.87c-2.39 2.39-3.71 5.57-3.71 8.96s1.32 6.57 3.71 8.96l11.45 11.45c.24.24.28.47.12.77-1.77 3.49-3.28 7.13-4.5 10.84-.11.32-.3.46-.64.46h-16.19c-6.99 0-12.67 5.68-12.67 12.67v10.02c-.5 1.37-.76 2.83-.76 4.3v16.19c0 .34-.14.53-.46.64-3.7 1.22-7.35 2.73-10.84 4.5-.3.15-.54.12-.78-.12l-11.45-11.45c-2.39-2.39-5.57-3.71-8.96-3.71s-6.57 1.32-8.96 3.71l-15.87 15.87c-2.39 2.39-3.71 5.57-3.71 8.96s1.32 6.57 3.71 8.96l11.45 11.45c.24.24.28.47.12.77-1.77 3.49-3.28 7.13-4.49 10.84-.11.32-.3.46-.64.46h-16.16c-6.99 0-12.67 5.68-12.67 12.67v22.44c0 6.99 5.68 12.67 12.67 12.67h16.19c.34 0 .53.14.63.46 1.22 3.7 2.73 7.35 4.5 10.84.15.3.12.53-.12.77l-11.45 11.45c-2.39 2.39-3.71 5.57-3.71 8.96s1.32 6.57 3.71 8.96l15.87 15.87c2.39 2.39 5.57 3.71 8.96 3.71s6.57-1.32 8.96-3.71l11.45-11.45c.24-.24.47-.28.78-.12 2.63 1.33 5.35 2.52 8.12 3.55 3.63 25.86 18.43 52.67 31.88 77.01 3.47 6.29 6.76 12.23 9.84 18.11 12.69 35.72 7.66 78.5-12.56 106.56l-6.85 9.51h173.63v-44.26c38.01-.13 59.59-5.99 67.67-18.29 6.96-10.6 1.74-22.31-1.38-29.3-.44-.98-.98-2.19-1.34-3.11 3.35-4.7 4.47-10.39 3.12-16.07.14-.2.3-.41.43-.59 2.26-3.05 6.46-8.74 3.06-18.47-.43-1.24-.63-2.03-.72-2.5.71-.41 1.88-.97 2.87-1.44 1.82-.86 4.08-1.94 6.69-3.46 4.46-2.6 7.64-6.79 8.96-11.8s.59-10.29-2.01-14.74zm-267.36-225.64c0-.36.31-.67.67-.67h16.19c5.49 0 10.32-3.5 12.04-8.71 1.03-3.13 2.31-6.21 3.8-9.16 2.48-4.9 1.54-10.8-2.34-14.68l-11.45-11.45c-.13-.13-.19-.29-.19-.47 0-.19.06-.35.19-.47l15.87-15.87c.25-.25.69-.25.95 0l11.45 11.45c3.88 3.88 9.78 4.82 14.68 2.34 2.95-1.49 6.03-2.77 9.16-3.8 5.21-1.71 8.72-6.55 8.72-12.04v-16.19c0-.36.31-.67.67-.67h22.44c.36 0 .67.31.67.67v16.19c0 5.49 3.5 10.32 8.71 12.04 3.13 1.03 6.21 2.31 9.16 3.8 4.9 2.48 10.8 1.54 14.68-2.34l11.45-11.45c.25-.25.69-.25.95 0l15.87 15.87c.13.13.19.29.19.47 0 .19-.06.35-.19.47l-11.45 11.45c-3.88 3.88-4.83 9.78-2.34 14.68 1.49 2.95 2.77 6.03 3.8 9.16 1.71 5.21 6.55 8.71 12.04 8.71h16.19c.36 0 .67.31.67.67v22.44c0 .36-.31.67-.67.67h-16.19c-5.49 0-10.32 3.5-12.04 8.71-1.03 3.13-2.31 6.21-3.8 9.16-2.48 4.9-1.54 10.8 2.34 14.68l4.07 4.07c-6.1-2.13-12.28-3.88-18.52-5.21-5.2-1.11-10.41-1.91-15.6-2.44 12.29-9.41 20.24-24.22 20.24-40.86 0-28.37-23.08-51.45-51.45-51.45s-51.45 23.08-51.45 51.45c0 20.1 11.59 37.53 28.43 45.99-1.46.45-2.91.93-4.35 1.43-13.15 4.6-25.02 11.14-35.4 19.37l-9.95-9.95c-.13-.13-.19-.28-.19-.47s.06-.35.19-.47l11.45-11.45c3.88-3.88 4.82-9.78 2.34-14.68-1.49-2.95-2.77-6.03-3.8-9.16-1.71-5.21-6.55-8.72-12.04-8.72h-16.19c-.36 0-.67-.31-.67-.67zm91.61 50.67c-21.75 0-39.45-17.7-39.45-39.45s17.7-39.45 39.45-39.45 39.45 17.7 39.45 39.45-17.7 39.45-39.45 39.45zm-81.2 25.88 9.4 9.4c-14.24 13.88-24.92 31.39-31.29 51.61-10.4-7.3-16.85-19.33-16.85-32.3 0-20.29 15.4-37.05 35.13-39.21-.06.51-.1 1.02-.1 1.54 0 3.39 1.32 6.57 3.71 8.96zm-43.73 89.97-11.45 11.45c-.25.25-.69.25-.94 0l-15.87-15.87c-.16-.16-.19-.34-.19-.47 0-.19.06-.35.19-.47l11.45-11.45c3.88-3.88 4.83-9.78 2.34-14.68-1.49-2.95-2.77-6.03-3.8-9.16-1.71-5.21-6.55-8.72-12.04-8.72h-16.19c-.36 0-.67-.31-.67-.67v-22.44c0-.36.31-.67.67-.67h16.19c5.49 0 10.32-3.5 12.04-8.71 1.03-3.13 2.31-6.21 3.8-9.16 2.48-4.9 1.54-10.8-2.34-14.68l-11.45-11.45c-.16-.16-.19-.34-.19-.47 0-.19.06-.35.19-.47l15.87-15.87c.25-.25.69-.25.95 0l11.45 11.45c3.88 3.88 9.78 4.82 14.68 2.34 2.95-1.49 6.03-2.77 9.16-3.8 3.75-1.23 6.61-4.09 7.92-7.63.72.13 1.47.21 2.23.21h16.19c.34 0 .53.14.63.46 1.22 3.7 2.73 7.35 4.5 10.84.15.3.12.53-.12.77l-6.78 6.78c-1.31-.1-2.64-.16-3.95-.16-28.37 0-51.45 23.08-51.45 51.45 0 18.39 9.91 35.35 25.61 44.49-.35 1.61-.69 3.23-.99 4.86-.64 3.46-.96 6.96-1.05 10.48-.63-.3-1.27-.6-1.89-.91-4.92-2.5-10.82-1.55-14.7 2.33zm291.06 70.74c-.5 1.91-1.71 3.5-3.4 4.49-2.17 1.27-4.1 2.18-5.8 2.99-6.98 3.32-12.43 7.02-8.33 18.75 1.31 3.74.35 5.03-1.38 7.37-1.5 2.02-4 5.41-2.62 9.89.88 2.86.29 5.54-1.71 7.76-3.67 4.08-1.39 9.2.82 14.14 3.1 6.95 5.42 13.09 2.31 17.82-3.31 5.04-15.96 13.42-63.57 12.85l-6.07-.07v44.36h-138.97c17.34-30.83 20.69-72.96 7.92-108.51l-.14-.39-.19-.37c-3.21-6.12-6.59-12.24-10.17-18.72-17.49-31.65-35.57-64.37-30.34-92.85 7.68-41.83 33.96-73.47 72.1-86.8 44.14-15.44 96.37-3.43 136.3 31.34 33.22 28.92 41.99 54.65 29.31 86.02l-1.1 2.73 24.28 41.62c.99 1.69 1.25 3.67.75 5.58zm-145.92-155.19c-51.35 0-93.14 41.78-93.14 93.14 0 51.35 41.78 93.13 93.14 93.13s93.14-41.78 93.14-93.13c0-51.36-41.78-93.14-93.14-93.14zm0 174.27c-44.74 0-81.14-36.4-81.14-81.13s36.4-81.14 81.14-81.14 81.14 36.4 81.14 81.14-36.4 81.13-81.14 81.13zm29.28-94.9c-3.51-13.57-12.31-26.17-25.63-36.38-2.15-1.65-5.15-1.65-7.3 0-13.32 10.22-22.12 22.81-25.63 36.38-7.81-2.14-16.51-2.65-25.56-1.45-2.69.35-4.81 2.47-5.16 5.16-2.5 18.97 2.38 35.68 13.74 47.04 9.42 9.42 22.51 14.38 37.52 14.38 2.85 0 5.77-.19 8.74-.55 2.98.36 5.89.55 8.74.55 15.01 0 28.1-4.96 37.52-14.38 11.36-11.36 16.24-28.07 13.74-47.04-.35-2.69-2.47-4.81-5.16-5.16-9.05-1.19-17.75-.68-25.56 1.45zm-29.28-23.87c12.29 10.71 19.01 23.83 19.01 37.34s-6.71 26.63-19.01 37.34c-12.29-10.71-19.01-23.83-19.01-37.34s6.72-26.63 19.01-37.34zm-48.55 33.87c6.31-.35 12.26.35 17.57 2.02-.01.48-.02.96-.02 1.45 0 14.08 5.57 27.65 15.92 39.27-9.08-1.12-16.89-4.67-22.68-10.47-7.77-7.75-11.52-19.08-10.79-32.27zm86.33 32.27c-5.8 5.8-13.61 9.34-22.68 10.47 10.35-11.63 15.91-25.19 15.91-39.27 0-.48-.01-.96-.02-1.45 5.31-1.67 11.25-2.36 17.57-2.02.73 13.19-3.03 24.52-10.78 32.27z\"></path></svg>							\n												<h5>\n													Skill Development												</h5>\n											<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m273.006 83.567v168.425h87.5a4 4 0 1 1 0 8h-87.5v168.433h87.5a4 4 0 0 1 0 8h-91.5a4 4 0 0 1 -4-4v-172.431h-23.979a4 4 0 1 1 0-8h23.973v-172.428a4 4 0 0 1 4-4h91.5a4 4 0 0 1 0 8zm170 415.36a66.5 66.5 0 1 0 -66.5-66.5 66.569 66.569 0 0 0 66.5 66.5zm0-352.86a66.5 66.5 0 1 0 -66.5-66.5 66.569 66.569 0 0 0 66.5 66.5zm0 176.427a66.5 66.5 0 1 0 -66.498-66.494 66.569 66.569 0 0 0 66.5 66.494zm-344.212-195.217-6.473 100.7a4.046 4.046 0 0 0 .55 2.3l17.454 29.364a3.994 3.994 0 0 0 6.88 0l17.454-29.364a3.983 3.983 0 0 0 .55-2.3l-6.473-100.7 60.793 15.639c16.032 4.116 26.821 18.062 27.5 35.53v140.818a19.6 19.6 0 0 1 -6.9 15.283 37.861 37.861 0 0 1 -11.274 6.887 15.2 15.2 0 0 1 -12.961-.608v-142.018a4 4 0 1 0 -8 0v291.546a13.657 13.657 0 0 1 -13.646 13.639h-32.839a13.657 13.657 0 0 1 -13.646-13.639v-130.33a4 4 0 1 0 -8 0v130.33a13.657 13.657 0 0 1 -13.646 13.639h-32.831a13.651 13.651 0 0 1 -13.639-13.639v-291.546a4 4 0 0 0 -8 0v142.018a15.314 15.314 0 0 1 -12.967.608 37.924 37.924 0 0 1 -11.28-6.887 19.616 19.616 0 0 1 -6.895-15.283v-140.818c.672-17.468 11.46-31.414 27.492-35.53l60.793-15.639zm-96.287 50.948v141.039a27.649 27.649 0 0 0 9.61 21.284 45.823 45.823 0 0 0 13.638 8.338 23.478 23.478 0 0 0 15.89.6v140.868a21.667 21.667 0 0 0 21.641 21.646h32.836a21.632 21.632 0 0 0 17.647-9.131 21.608 21.608 0 0 0 17.64 9.131h32.836a21.673 21.673 0 0 0 21.647-21.641v-140.88a22.827 22.827 0 0 0 7.016 1.114 24.352 24.352 0 0 0 8.867-1.707 45.84 45.84 0 0 0 13.639-8.338 27.648 27.648 0 0 0 9.609-21.284v-141.039c-.786-21.127-13.932-38.031-33.493-43.06l-61.836-15.911c22.691-13.039 31.486-42.089 31.807-67.909.193-15.46-4.622-28.557-13.924-37.887a47.161 47.161 0 0 0 -33.301-13.458h-.943a47.221 47.221 0 0 0 -33.379 13.46c-9.3 9.33-14.118 22.427-13.925 37.887.322 25.82 9.124 54.87 31.815 67.909l-61.836 15.909c-19.562 5.029-32.715 21.933-33.5 43.06zm444.493-61.479a4 4 0 1 1 -8 0v-33.179h-33.164a4 4 0 0 1 0-8h33.172v-33.174a4 4 0 0 1 8 0v33.172h33.172a4 4 0 0 1 0 8h-33.18v33.179zm0 102.081v33.165h33.172a4 4 0 1 1 0 8h-33.172v33.171a4 4 0 1 1 -8 0v-33.169h-33.164a4 4 0 0 1 0-8h33.172v-33.167a4 4 0 1 1 8 0zm0 176.419v33.179h33.172a4 4 0 0 1 0 8h-33.172v33.175a4 4 0 0 1 -8 0v-33.173h-33.164a4 4 0 0 1 0-8h33.172v-33.181a4 4 0 1 1 8 0z\" fill-rule=\"evenodd\"></path></svg>							\n												<h5>\n													Tailored Approaches												</h5>\n											<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.</p>										\n		Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:43:49', '2026-06-17 10:43:49', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=541', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(542, 1, '2026-06-17 10:43:50', '2026-06-17 10:43:50', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />																<h2>Psychotherapy</h2>		<ul style=\"margin-left: 18px;\">\n 	<li>Individual therapy</li>\n 	<li>Couples/marriage therapy</li>\n 	<li>Family therapy</li>\n 	<li>Child/teen therapy</li>\n 	<li>Online therapy</li>\n 	<li>COMMON SPECIALTIES &amp; approaches</li>\n 	<li>Anxiety therapy</li>\n 	<li>Cognitive behavioral therapy (CBT)</li>\n 	<li>Depression counseling</li>\n 	<li>Dialectical behavior therapy (DBT)</li>\n 	<li>Grief &amp; loss counseling</li>\n 	<li>Relational therapy</li>\n</ul>			<h3>Therapy can be highly beneficial for mental health for several reasons:</h3>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 64 64.1999969\" width=\"512\"><path d=\"m51.2529297 42.0226555c.6357422-.6357422.9863281-1.4804688.9863281-2.3808594 0-.8994141-.3500977-1.7441406-.9863281-2.3808594-1.3125-1.3125-3.4492188-1.3125-4.7617188 0l-9.3178711 9.3173828c-.7426758.7441406-1.1518555 1.7314453-1.1518555 2.7822266v11.6396484c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-5.109375l11.5913086-11.5917969c.1875-.1875.2929688-.4414062.2929688-.7070312v-11.5488281c0-2.0097656-1.6347656-3.6445312-3.6445312-3.6445312s-3.6450195 1.6347656-3.6450195 3.6445312v8.6582031l-4.2260742 4.2255859c-.1459961.1455078-.3828125.1435547-.527832 0-.1455078-.1455078-.1455078-.3818359 0-.5273438zm-3.7910156 4.3183594c.9243164.9248047 2.4306641.9267578 3.355957 0l4.519043-4.5185547c.1875-.1875.2929688-.4414062.2929688-.7070312v-9.0722656c0-.9072266.737793-1.6445312 1.6450195-1.6445312.9067383 0 1.6445312.7373047 1.6445312 1.6445312v11.1347656l-11.5913086 11.5917968c-.1875.1875-.2929688.4414062-.2929688.7070312v4.5234375h-9.0136719v-10.6396484c0-.5166016.2011719-1.0029297.5664062-1.3681641l9.3173828-9.3173828c.5332031-.5332031 1.4008789-.5332031 1.9331055 0 .2583008.2587891.4008789.6015625.4008789.9667969s-.1420898.7089844-.4003906.9667969l-2.3769531 2.3769531c-.9252929.9248047-.9252929 2.4306641.0000001 3.3554688z\"></path><path d=\"m6.7250977 28.398632c-2.0097656 0-3.6445312 1.6347656-3.6445312 3.6445312v11.5488281c0 .265625.1054688.5195312.2929688.7070312l11.5913086 11.5917969v5.109375c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-11.6396483c0-1.0507812-.4091797-2.0380859-1.1523438-2.7822266l-9.3173828-9.3173828c-1.3125-1.3125-3.4487305-1.3125-4.762207 0-.6357422.6367188-.9858398 1.4814453-.9858398 2.3808594 0 .9003906.3505859 1.7451172.9863281 2.3808594l2.3769531 2.3769531c.1455078.1455078.1455078.3818359 0 .5273438s-.3823242.1435547-.527832 0l-4.2260742-4.2255859v-8.6582031c-.0000002-2.0097657-1.6352541-3.6445314-3.6450197-3.6445314zm6.4570312 17.9423829c.925293.9267578 2.4316406.9257812 3.355957 0 .925293-.9248047.925293-2.4306641 0-3.3554688l-2.3769531-2.3769531c-.2583008-.2578125-.4003906-.6015625-.4003906-.9667969s.1425781-.7080078.4003906-.9667969c.5332031-.5332031 1.4003906-.5332031 1.9335938 0l9.3168945 9.3173828c.3657227.3652344.5668945.8515625.5668945 1.3681641v10.6396484h-9.0136719v-4.5234375c0-.265625-.1054688-.5195312-.2929688-.7070312l-11.5913085-11.5917969v-11.1347656c0-.9072266.737793-1.6445312 1.6445312-1.6445312.9072266 0 1.6450195.7373047 1.6450195 1.6445312v9.0722656c0 .265625.1054688.5195312.2929688.7070312z\"></path><path d=\"m32 2.0998046c-10.0986328 0-18.3144531 8.2158203-18.3144531 18.3144531s8.2158203 18.3144525 18.3144531 18.3144525 18.3144531-8.2158203 18.3144531-18.3144531-8.2158203-18.3144525-18.3144531-18.3144525zm0 2.0000003c7.614502 0 14.0088501 5.2510376 15.798584 12.3173819-3.1233521-2.2542105-8.8903809-3.70996-15.798584-3.70996s-12.6752319 1.4557495-15.798584 3.70996c1.7897339-7.0663443 8.184082-12.3173819 15.798584-12.3173819zm16.3144531 16.3144521c0 2.6992188-6.7001953 5.7070312-16.3144531 5.7070312s-16.3144531-3.0078125-16.3144531-5.7070312 6.7001953-5.7070302 16.3144531-5.7070302 16.3144531 3.0078115 16.3144531 5.7070302zm-16.3144531 16.3144532c-7.614502 0-14.0088501-5.2510376-15.798584-12.3173828 3.1233521 2.2542114 8.8903809 3.7099609 15.798584 3.7099609s12.6752319-1.4557495 15.798584-3.7099609c-1.7897339 7.0663452-8.184082 12.3173828-15.798584 12.3173828z\"></path></svg>							\n												<h5>\n													Safe Space												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"friendship-work\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><circle cx=\"72\" cy=\"102\" r=\"4\"></circle><circle cx=\"64\" cy=\"50\" r=\"4\"></circle><path d=\"m228 98h4v4c0 2.211 1.789 4 4 4s4-1.789 4-4v-4h4c2.211 0 4-1.789 4-4s-1.789-4-4-4h-4v-4c0-2.211-1.789-4-4-4s-4 1.789-4 4v4h-4c-2.211 0-4 1.789-4 4s1.789 4 4 4z\"></path><path d=\"m132 218h-16v-5.977c0-13.759-8.223-25.608-20-30.964v-35.059c0-.031-.017-.057-.018-.088 4.839-3.653 8.018-9.396 8.018-15.912 0-2.211-1.789-4-4-4h-30.707c-7.328 0-13.293 5.965-13.293 13.293v25.953c0 5.361 2.096 10.206 5.444 13.892-14.614 3.818-25.444 17.092-25.444 32.885v49.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-49.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v9.977c0 2.211 1.789 4 4 4h8v8h-20v-17.582c0-2.211-1.789-4-4-4s-4 1.789-4 4v21.582 24c0 2.211 1.789 4 4 4s4-1.789 4-4v-20h32c6.617 0 12-5.383 12-12s-5.383-12-12-12zm-68-78.707c0-2.918 2.375-5.293 5.293-5.293h26.023c-1.652 4.656-6.102 8-11.316 8h-20zm12.754 38.707c-7.031 0-12.754-5.723-12.754-12.754v-15.246h24v28zm55.246 56h-4v-8h4c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m56 210c-2.211 0-4 1.789-4 4v48c0 2.211 1.789 4 4 4s4-1.789 4-4v-48c0-2.211-1.789-4-4-4z\"></path><path d=\"m238.009 178.998c3.704-3.95 5.991-9.243 5.991-15.072v-9.926c0-11.027-8.973-20-20-20s-20 8.973-20 20v27.06c-11.777 5.355-20 17.205-20 30.964v45.976c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v45.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-15.99-11.1-29.402-25.991-33.025zm-26.009-.998v-24c0-6.617 5.383-12 12-12s12 5.383 12 12v9.926c0 7.762-6.312 14.074-14.074 14.074z\"></path><path d=\"m204 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m244 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m185.41 118.613c.102-.242.203-.488.301-.734 5.809-.832 10.289-5.844 10.289-11.879 0-1.206-.223-2.353-.555-3.452 10.229-11.777 15.466-22.512 15.466-31.899-.001-20.208-15.274-36.649-34.048-36.649-7.633 0-14.91 2.711-20.863 7.707-5.953-4.996-13.23-7.707-20.863-7.707-18.773 0-34.047 16.441-34.047 36.648 0 9.39 5.238 20.125 15.465 31.903-.333 1.098-.555 2.244-.555 3.449 0 6.035 4.48 11.047 10.289 11.879.098.246.199.488.301.73-3.516 4.699-3.141 11.406 1.125 15.672 4.27 4.27 10.98 4.633 15.672 1.129.242.102.488.203.734.301.832 5.809 5.844 10.289 11.879 10.289s11.047-4.48 11.879-10.289c.246-.098.492-.199.734-.301 4.688 3.504 11.398 3.141 15.672-1.129 4.262-4.261 4.641-10.965 1.125-15.668zm-50.273-76.613c6.707 0 13.09 2.82 17.965 7.945 1.516 1.586 4.281 1.586 5.797 0 4.874-5.125 11.257-7.945 17.964-7.945 14.363 0 26.047 12.852 26.047 28.648 0 6.991-4.298 15.714-12.379 25.343-1.433-.939-3.052-1.616-4.82-1.87-.098-.246-.199-.488-.301-.73 3.516-4.699 3.141-11.406-1.125-15.672-4.273-4.27-10.984-4.637-15.672-1.129-.242-.102-.488-.203-.734-.301-.832-5.809-5.844-10.289-11.879-10.289s-11.047 4.48-11.879 10.289c-.246.098-.492.199-.734.301-4.691-3.508-11.402-3.141-15.672 1.129-4.262 4.262-4.641 10.965-1.125 15.668-.102.242-.203.488-.301.734-1.769.253-3.387.931-4.821 1.87-8.079-9.625-12.378-18.35-12.378-25.343 0-15.796 11.683-28.648 26.047-28.648zm47.687 68c-1.77 0-3.328 1.16-3.832 2.855-.488 1.629-1.117 3.16-1.875 4.555-.848 1.562-.562 3.492.695 4.746l.812.812c1.562 1.559 1.562 4.098.004 5.656-1.562 1.566-4.098 1.559-5.66 0l-.82-.82c-1.254-1.254-3.18-1.535-4.73-.691-1.426.773-2.957 1.402-4.555 1.875-1.699.504-2.863 2.062-2.863 3.836v1.176c0 2.207-1.793 4-4 4s-4-1.793-4-4v-1.176c0-1.773-1.164-3.332-2.863-3.836-1.598-.473-3.129-1.102-4.555-1.875-.598-.324-1.254-.48-1.902-.48-1.035 0-2.059.402-2.828 1.172l-.82.82c-1.559 1.559-4.094 1.566-5.66 0-1.559-1.559-1.559-4.098-.008-5.648l.824-.82c1.258-1.254 1.543-3.184.695-4.746-.758-1.395-1.387-2.926-1.875-4.555-.504-1.695-2.062-2.855-3.832-2.855h-1.176c-2.207 0-4-1.793-4-4s1.793-4 4-4h1.176c1.77 0 3.328-1.16 3.832-2.855.488-1.629 1.117-3.16 1.875-4.555.848-1.562.562-3.492-.695-4.746l-.812-.812c-1.562-1.559-1.562-4.098-.004-5.656 1.57-1.562 4.105-1.559 5.66 0l.82.82c1.25 1.25 3.18 1.531 4.73.691 1.426-.773 2.957-1.402 4.555-1.875 1.699-.504 2.863-2.062 2.863-3.836v-1.177c0-2.207 1.793-4 4-4s4 1.793 4 4v1.176c0 1.773 1.164 3.332 2.863 3.836 1.598.473 3.129 1.102 4.555 1.875 1.555.844 3.48.562 4.73-.691l.82-.82c1.562-1.559 4.098-1.566 5.66 0 1.559 1.559 1.559 4.098.008 5.648l-.824.82c-1.258 1.254-1.543 3.184-.695 4.746.758 1.395 1.387 2.926 1.875 4.555.504 1.695 2.062 2.855 3.832 2.855h1.176c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m156 90c-8.824 0-16 7.176-16 16s7.176 16 16 16 16-7.176 16-16-7.176-16-16-16zm0 24c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path></g></svg>							\n												<h5>\n													Emotional Support												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m206.102 400.162c-46.373 0-92.751-17.652-128.056-52.957-34.207-34.208-53.046-79.687-53.046-128.061s18.839-93.853 53.046-128.06c70.615-70.615 185.512-70.605 256.117 0 70.614 70.614 70.614 185.507 0 256.121-35.305 35.305-81.683 52.957-128.061 52.957zm0-346.791c-42.47 0-84.94 16.167-117.271 48.498-64.665 64.666-64.665 169.885 0 234.551 64.666 64.666 169.891 64.661 234.547 0 31.328-31.328 48.578-72.978 48.578-117.276 0-44.297-17.25-85.947-48.578-117.275-32.33-32.331-74.801-48.498-117.276-48.498z\"></path><path d=\"m206.102 357.901c-37.063 0-71.905-14.435-98.109-40.643-54.098-54.1-54.098-142.128 0-196.227 54.1-54.1 142.124-54.09 196.223 0 54.1 54.099 54.1 142.128 0 196.227-26.208 26.208-61.051 40.643-98.114 40.643zm0-262.194c-31.626 0-63.25 12.036-87.324 36.109-48.151 48.156-48.151 126.502 0 174.657 23.323 23.328 54.338 36.174 87.324 36.174s64.001-12.845 87.329-36.174c48.151-48.156 48.151-126.502 0-174.657-24.078-24.073-55.703-36.109-87.329-36.109z\"></path><path d=\"m297.428 421.907c-8.813 0-17.618-3.352-24.326-10.061-2.978-2.978-2.978-7.805 0-10.785 2.98-2.98 7.806-2.98 10.786 0 7.468 7.468 19.619 7.468 27.087 0l77.045-77.05c3.615-3.62 5.606-8.427 5.606-13.54 0-5.115-1.991-9.921-5.606-13.541-2.979-2.98-2.979-7.805 0-10.785 2.98-2.979 7.806-2.979 10.785 0 13.412 13.412 13.412 35.241 0 48.652l-77.045 77.05c-6.709 6.707-15.523 10.06-24.332 10.06z\"></path><path d=\"m402.881 461.874c-12.275 0-23.809-4.783-32.489-13.462l-47.992-47.991c-2.979-2.98-2.979-7.805 0-10.785l54.194-54.193c2.979-2.979 7.805-2.979 10.785 0l47.992 47.991c8.679 8.68 13.461 20.215 13.461 32.49s-4.782 23.809-13.461 32.489c-8.68 8.679-20.216 13.461-32.49 13.461zm-64.303-66.846 42.599 42.599c11.967 11.967 31.442 11.967 43.408 0 11.968-11.968 11.968-31.442 0-43.408l-42.599-42.6z\"></path><path d=\"m467.373 461.874h-355.566c-4.211 0-7.627-3.417-7.627-7.628s3.416-7.627 7.627-7.627h355.566c4.211 0 7.627 3.416 7.627 7.627s-3.416 7.628-7.627 7.628z\"></path><path d=\"m401.258 421.926c-1.951 0-3.904-.744-5.392-2.234l-21.675-21.679c-2.98-2.979-2.98-7.806 0-10.786 2.979-2.979 7.805-2.979 10.785 0l21.675 21.68c2.98 2.979 2.98 7.805 0 10.785-1.491 1.489-3.442 2.234-5.393 2.234z\"></path><path d=\"m206.102 305.102c-.814 0-1.628-.129-2.413-.392-3.814-1.272-41.556-24.446-49.383-62.342-6.668-32.305 9.048-65.739 46.716-99.385 2.89-2.583 7.269-2.583 10.16 0 37.668 33.641 53.384 67.079 46.715 99.38-7.826 37.897-45.569 61.076-49.383 62.347-.783.263-1.598.392-2.412.392zm0-146.07c-27.603 26.133-40.27 51.358-37.674 75.049 3.138 28.626 28.11 47.967 37.674 54.392 9.564-6.426 34.541-25.762 37.679-54.392 2.597-23.691-10.075-48.916-37.679-75.049z\"></path><path d=\"m212.691 305.102c-3.48 0-5.675-.164-6.082-.198-2.652-.224-5.001-1.813-6.192-4.192-.029-.06-.243-.501-.268-.561-1.658-3.541-.373-7.757 2.979-9.768 10.835-6.515 63.212-41.869 30.112-98.402-1.073-1.832-1.331-4.027-.715-6.062.615-2.031 2.045-3.715 3.957-4.648 14.42-7.027 32.256-12.021 53.007-14.842 3.889-.571 7.478 1.927 8.427 5.685 11.51 45.499 7.364 80.353-12.324 103.586-22.525 26.577-58.58 29.402-72.901 29.402zm37.744-113.333c22.007 44.953-.696 78.336-19.848 96.52 13.933-2.384 31.348-8.268 43.364-22.45 15.403-18.178 19.019-46.169 10.775-83.267-12.915 2.146-24.4 5.225-34.291 9.197z\"></path><path d=\"m199.553 305.102c-14.291 0-50.42-2.82-72.944-29.416-19.678-23.233-23.824-58.082-12.314-103.571.948-3.758 4.509-6.256 8.422-5.685 20.756 2.821 38.592 7.816 53.012 14.842 1.912.933 3.342 2.617 3.958 4.648.615 2.035.358 4.23-.715 6.062-33.1 56.533 19.276 91.887 30.111 98.402 3.392 2.036 4.662 6.332 2.925 9.887-1.182 2.413-3.734 4.409-6.411 4.633-.408.035-2.589.198-6.044.198zm-72.07-122.529c-8.243 37.088-4.633 65.079 10.765 83.257 12.007 14.177 29.426 20.066 43.364 22.45-19.147-18.184-41.849-51.562-19.837-96.51-9.892-3.973-21.371-7.052-34.292-9.197z\"></path><path d=\"m205.154 304.547c-4.211 0-7.627-3.417-7.627-7.628v-71.533c0-4.211 3.416-7.627 7.627-7.627s7.628 3.416 7.628 7.627v71.533c-.001 4.211-3.417 7.628-7.628 7.628z\"></path></g></svg>							\n												<h5>\n													Self-Exploration												</h5>\n											<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m295.544 178.256a6.741 6.741 0 0 0 -3.689-3.623 6.718 6.718 0 0 0 -8.727 3.475c-.058.16-.123.319-.193.475a6.715 6.715 0 0 0 3.572 8.482q.238.087.473.192a6.789 6.789 0 0 0 8.569-9zm4.657-15.648a21.3 21.3 0 0 1 -18.927 38.018l-.027-.012a21.345 21.345 0 0 1 -11.856-27.305 7.1 7.1 0 0 1 .358-.879 21.238 21.238 0 0 1 11.277-11.14 21.465 21.465 0 0 1 4.89-1.409 108.471 108.471 0 0 1 110.169-79.395l-7.5-9.84a7.256 7.256 0 0 1 11.533-8.807l18.139 23.785a7.255 7.255 0 0 1 -1.364 10.17l-23.793 18.138a7.256 7.256 0 0 1 -8.8-11.532l9.821-7.488a94.123 94.123 0 0 0 -93.917 67.7zm-136.607 130.062c-1.181-.462-2.53-.937-4.2-1.439-1.749-.526-3.761-1.034-5.893-1.571-2.249-.568-4.622-1.167-6.887-1.817a81.221 81.221 0 0 1 -7.736-2.626 52.681 52.681 0 0 1 -7.96-3.915 57.093 57.093 0 0 1 -5.122-3.558 19.314 19.314 0 0 1 -2.1 3.175 29.979 29.979 0 0 1 -4.78 4.617c-1.583 1.254-3.581 2.64-5.787 4.091-1.069.7-2 1.305-2.835 1.842v15.331a30.06 30.06 0 0 0 7.975 20.595 25.087 25.087 0 0 0 37.345 0 30.056 30.056 0 0 0 7.976-20.595v-14.13zm-3.794 117.75q-.863.314-1.737.606a66.691 66.691 0 0 1 -42.171 0q-.874-.292-1.736-.606 8.1 16.046 22.822 31.483 14.722-15.438 22.822-31.483zm-44.516-66.689-1.446 6.36a26.013 26.013 0 0 1 -8.247 14.073q-.63.554-1.295 1.069a86.352 86.352 0 0 0 2.3 24.838 49.4 49.4 0 0 0 13.842 7.2 53.4 53.4 0 0 0 33.079 0 49.4 49.4 0 0 0 13.842-7.2 86.282 86.282 0 0 0 2.3-24.786q-.7-.539-1.362-1.121a26.01 26.01 0 0 1 -8.247-14.073l-1.446-6.36a39.133 39.133 0 0 1 -43.323 0zm102.131 19.247c21.553 5.007 34.482 13.526 35.172 45.641v.142h.028v79.966a7.273 7.273 0 0 1 -7.272 7.273h-216.795a7.273 7.273 0 0 1 -7.273-7.273v-79.966a7.309 7.309 0 0 1 .049-.842c.911-33.257 15.2-40.822 38.733-45.728.5-7.586 1.773-17.265 3.2-28.09 2.421-18.4 5.3-40.261 5.3-60.319a67.9 67.9 0 0 1 19.627-47.875 66.563 66.563 0 0 1 94.957 0 67.889 67.889 0 0 1 19.627 47.875c0 22.494 5.342 45.587 9.591 63.955 2.279 9.851 4.261 18.419 5.062 25.241zm-46.7-31.379a44.85 44.85 0 0 0 7.42-24.8v-18.92a7.275 7.275 0 0 0 -4.889-6.873c-1.2-.525-2.455-1.065-4.1-1.717-1.832-.726-3.692-1.4-5.606-1.978-2.014-.606-4.2-1.158-6.517-1.742-2.01-.507-4.13-1.042-6.433-1.7-2.252-.647-4.44-1.344-6.372-2.113a37.981 37.981 0 0 1 -5.745-2.837 66.527 66.527 0 0 1 -8.659-6.687c-.68-.593-.82-.722-1.072-.939l.012-.014a14.573 14.573 0 0 0 -4.812-3.1c-6.5-2.195-9.224.041-10.259 6.5a21.51 21.51 0 0 0 -.208 2.607 14.785 14.785 0 0 1 -.37 3.3 3.848 3.848 0 0 1 -.715 1.241 16.145 16.145 0 0 1 -2.507 2.344c-1.423 1.129-3.022 2.244-4.707 3.353-1.127.741-3.346 2.131-5.627 3.557a7.274 7.274 0 0 0 -3.8 6.392v19.327a44.847 44.847 0 0 0 7.42 24.8l-3.479 15.309a11.711 11.711 0 0 1 -3.7 6.345 18.2 18.2 0 0 1 -8.506 3.875c-3.592.726-8.189 1.542-12.649 2.326.575-6.608 1.632-14.641 2.8-23.479 2.5-19 5.467-41.557 5.467-62.194a53.45 53.45 0 0 1 15.423-37.7 52.155 52.155 0 0 1 74.275 0 53.45 53.45 0 0 1 15.423 37.7c0 24.013 5.564 48.064 9.989 67.193 1.675 7.243 3.177 13.738 4.1 19.051l-2.054-.362c-4.821-.846-9.929-1.744-13.842-2.535a18.2 18.2 0 0 1 -8.506-3.875 11.711 11.711 0 0 1 -3.7-6.345l-3.482-15.31zm-41.01 149.856h-45.614a7.289 7.289 0 0 0 -.715-1.2 26.958 26.958 0 0 1 -5.261-16.38q0-9.969 5.972-22.523a7.256 7.256 0 0 0 -13.125-6.193q-7.392 15.54-7.393 28.716a41.569 41.569 0 0 0 3.738 17.583h-31.487v-72.697c0-.137 0-.274-.012-.41.791-27.416 16-30.094 40.333-34.368 3.862-.679 7.947-1.4 13.53-2.518a102.527 102.527 0 0 0 9.229 40.627q10.013 22.326 30.808 43.123v26.24zm14.545-26.241q20.795-20.795 30.808-43.121a102.527 102.527 0 0 0 9.226-40.616c5.55 1.115 9.617 1.83 13.466 2.506 24.453 4.3 39.695 6.976 40.344 34.778h-.024v72.694h-31.422a41.554 41.554 0 0 0 3.738-17.583q0-13.176-7.392-28.716a7.256 7.256 0 1 0 -13.125 6.193q5.971 12.554 5.972 22.523a26.959 26.959 0 0 1 -5.262 16.38 7.359 7.359 0 0 0 -.715 1.2h-45.614zm314.57-424.669a17.825 17.825 0 0 1 12.368 4.889 15.841 15.841 0 0 1 4.992 11.445v162.839a15.841 15.841 0 0 1 -4.992 11.445 17.821 17.821 0 0 1 -12.368 4.889h-92.395a7.234 7.234 0 0 0 -3.9 1.136l-22.385 12.384q-.276.151-.532.323l-36.3 20.086v-26.656a7.273 7.273 0 0 0 -7.273-7.273h-55.544a17.824 17.824 0 0 1 -12.368-4.889 15.844 15.844 0 0 1 -4.991-11.445v-162.839a15.842 15.842 0 0 1 4.991-11.445 17.829 17.829 0 0 1 12.368-4.889zm-218.329-14.545h218.329a32.378 32.378 0 0 1 22.425 8.979 30.272 30.272 0 0 1 9.48 21.9v162.839a30.268 30.268 0 0 1 -9.48 21.9 32.375 32.375 0 0 1 -22.425 8.98h-90.544l-21.149 11.7q-.257.141-.518.259l-47.084 26.051a7.236 7.236 0 0 1 -10.73-6.335h-.037v-31.673h-48.267a32.378 32.378 0 0 1 -22.425-8.98 30.272 30.272 0 0 1 -9.48-21.9v-162.841a30.268 30.268 0 0 1 9.48-21.9 32.378 32.378 0 0 1 22.425-8.979zm53.254 72.778-10.193-10.192 10.193-10.193a7.272 7.272 0 0 0 -10.285-10.284l-10.192 10.191-10.192-10.19a7.272 7.272 0 0 0 -10.284 10.284l10.192 10.192-10.192 10.191a7.272 7.272 0 0 0 10.284 10.284l10.192-10.191 10.192 10.192a7.272 7.272 0 0 0 10.285-10.284zm123.469 89.042-10.192-10.192 10.192-10.193a7.272 7.272 0 0 0 -10.284-10.284l-10.192 10.192-10.192-10.191a7.272 7.272 0 1 0 -10.284 10.284l10.192 10.192-10.192 10.191a7.272 7.272 0 1 0 10.284 10.281l10.192-10.191 10.192 10.191a7.272 7.272 0 0 0 10.284-10.284z\" fill-rule=\"evenodd\"></path></svg>							\n												<h5>\n													Coping Strategies												</h5>\n											<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M248.298,398.776v-96.35c0-5.971-2.694-11.517-7.393-15.216l-59.928-47.132c-2.984-2.348-7.254-2.094-9.939,0.592   l-14.349,14.349c-2.986,2.985-4.637,7.118-4.53,11.338c0.106,4.215,1.961,8.252,5.079,11.069l30.406,27.556l-1.867,1.93   c-1.111,1.149-2.665,1.808-4.265,1.808h-5.366c-4.046,0-7.953-1.201-11.299-3.474l-66.646-45.245   c-1.237-0.838-1.976-2.237-1.976-3.742v-42.516c0-8.724-7.102-15.821-15.832-15.821h-23.54c-4.142,0-7.5,3.358-7.5,7.5v72.637   c0,6.404,3.145,12.405,8.408,16.048l46.124,31.979c3.404,2.359,8.077,1.513,10.437-1.89c2.36-3.404,1.514-8.077-1.89-10.437   l-46.128-31.982c-1.222-0.846-1.951-2.235-1.951-3.718v-65.137h16.039c0.458,0,0.832,0.368,0.832,0.821v42.516   c0,6.486,3.2,12.526,8.556,16.155l66.64,45.241c5.84,3.967,12.661,6.064,19.726,6.064h5.366c5.643,0,11.128-2.326,15.047-6.38   l2.254-2.331c2.749-2.837,4.193-6.572,4.066-10.518c-0.127-3.948-1.811-7.585-4.741-10.242l-30.836-27.946   c-0.039-0.036-0.143-0.129-0.148-0.327c-0.005-0.206,0.101-0.312,0.141-0.352l9.642-9.642l54.693,43.015   c1.061,0.834,1.668,2.084,1.668,3.427v88.844h-60.32v-24.995c0-6.607-3.24-12.792-8.658-16.538l-27.532-19.089   c-3.405-2.36-8.077-1.514-10.437,1.89s-1.514,8.077,1.89,10.437l27.541,19.095c1.375,0.951,2.196,2.522,2.196,4.205v24.995h-3.726   c-4.142,0-7.5,3.358-7.5,7.5v58.66c0,0.033,0.004,0.064,0.005,0.097V504.5c0,4.142,3.358,7.5,7.5,7.5h25.971   c4.142,0,7.5-3.358,7.5-7.5c0-4.142-3.358-7.5-7.5-7.5h-18.471v-47.64h71.535v8.07c0,0.016,0.002,0.032,0.002,0.048V497h-23.519   c-4.142,0-7.5,3.358-7.5,7.5c0,4.142,3.358,7.5,7.5,7.5h31.019c4.142,0,7.5-3.358,7.5-7.5v-62.64c0-0.016-0.002-0.032-0.002-0.048   v-42.92C248.293,398.853,248.298,398.815,248.298,398.776z M233.292,434.359h-71.54V406.27h3.62c0.036,0,0.07,0.005,0.106,0.005   h67.814V434.359z\"></path>	</g></g><g>	<g>		<path d=\"M455.147,197.92h-23.535c-8.728,0-15.828,7.101-15.828,15.828v42.51c0,1.501-0.742,2.9-1.984,3.744l-66.637,45.24   c-3.349,2.273-7.258,3.475-11.304,3.475h-5.362c-1.604,0-3.162-0.66-4.279-1.813l-1.862-1.922l30.408-27.549   c3.125-2.831,4.977-6.871,5.08-11.085c0.104-4.215-1.546-8.342-4.526-11.324l-14.354-14.354c-2.687-2.686-6.956-2.939-9.94-0.592   l-47.179,37.107l-12.747,10.025c-4.695,3.693-7.389,9.238-7.389,15.211v96.35c0,0.02,0.003,0.038,0.003,0.058v42.972   c0,0.02-0.003,0.038-0.003,0.058v62.64c0,4.142,3.357,7.5,7.5,7.5h86.538c4.143,0,7.5-3.358,7.5-7.5v-46.973   c0-0.033,0.005-0.064,0.005-0.097v-58.66c0-4.142-3.357-7.5-7.5-7.5h-3.729v-24.994c0-1.68,0.824-3.254,2.204-4.211l98.021-67.96   c5.26-3.647,8.4-9.646,8.4-16.046V205.42C462.647,201.278,459.29,197.92,455.147,197.92z M350.247,497h-71.538v-39.512   c0-0.02,0.003-0.038,0.003-0.058v-8.07h71.535V497z M350.252,434.36h-71.54v-28.088h67.811c0.013,0,0.026-0.002,0.039-0.002h3.69   V434.36z M447.65,278.059h-0.003c0,1.483-0.728,2.874-1.947,3.719l-98.021,67.961c-5.42,3.759-8.656,9.941-8.656,16.538v24.994   H278.71v-88.848c0-1.343,0.605-2.591,1.662-3.421l12.747-10.025l41.946-32.992l9.646,9.646c0.039,0.04,0.144,0.144,0.139,0.347   s-0.114,0.302-0.155,0.339l-30.83,27.931c-2.928,2.653-4.611,6.289-4.74,10.238c-0.128,3.95,1.314,7.688,4.065,10.527l2.256,2.328   c3.924,4.053,9.41,6.377,15.053,6.377h5.362c7.062,0,13.884-2.097,19.729-6.064l66.638-45.241   c5.359-3.639,8.559-9.677,8.559-16.154v-42.51c0-0.457,0.371-0.828,0.828-0.828h16.035V278.059z\"></path>	</g></g><g>	<g>		<path d=\"M256.002,0c-55.95,0-102.985,41.857-109.407,97.364c-0.476,4.115,2.474,7.836,6.588,8.313   c4.12,0.482,7.836-2.474,8.313-6.588C167.042,51.15,207.671,15,256.002,15c52.466,0,95.15,42.684,95.15,95.15   c0,41.507-26.532,77.917-66.021,90.603c-1.723,0.553-3.187,1.71-4.123,3.258l-25.006,41.333l-25.006-41.333   c-0.937-1.548-2.401-2.705-4.123-3.258c-33.804-10.859-58.561-39.313-64.609-74.259c-0.707-4.082-4.587-6.812-8.669-6.111   c-4.082,0.707-6.817,4.588-6.111,8.669c6.842,39.527,34.351,71.881,72.103,85.076l30,49.587c1.358,2.246,3.792,3.618,6.417,3.618   s5.059-1.372,6.417-3.618l29.999-49.587c44.219-15.453,73.732-56.883,73.732-103.978C366.152,49.413,316.739,0,256.002,0z\"></path>	</g></g><g>	<g>		<path d=\"M315.754,102.65h-10.565c-1.234-8.128-4.447-15.612-9.123-21.955l7.492-7.492c2.929-2.929,2.929-7.678,0-10.606   c-2.93-2.929-7.678-2.929-10.607,0l-7.491,7.491c-6.343-4.676-13.827-7.888-21.955-9.123V50.4c0-4.142-3.357-7.5-7.5-7.5   c-4.142,0-7.5,3.358-7.5,7.5v10.565c-8.128,1.234-15.612,4.447-21.955,9.123l-7.491-7.491c-2.929-2.929-7.678-2.929-10.606,0   c-2.929,2.929-2.929,7.678,0,10.606l7.491,7.491c-4.676,6.343-7.889,13.828-9.123,21.956c0,0-10.569,0-10.569,0   c-4.142,0-7.5,3.358-7.5,7.5c0,4.142,3.358,7.5,7.5,7.5h10.565c1.234,8.128,4.447,15.613,9.123,21.956l-7.491,7.491   c-2.929,2.929-2.929,7.678,0,10.606c1.464,1.464,3.384,2.197,5.303,2.197s3.839-0.732,5.303-2.197l7.491-7.491   c6.343,4.676,13.828,7.889,21.956,9.123V169.9c0,4.142,3.358,7.5,7.5,7.5c4.143,0,7.5-3.358,7.5-7.5v-10.565   c8.128-1.234,15.612-4.447,21.956-9.123l7.491,7.491c1.465,1.464,3.385,2.197,5.304,2.197c1.919,0,3.839-0.732,5.304-2.197   c2.929-2.929,2.929-7.678,0-10.606l-7.491-7.491c4.676-6.343,7.889-13.828,9.123-21.956h10.565c4.143,0,7.5-3.358,7.5-7.5   C323.254,106.008,319.897,102.65,315.754,102.65z M290.751,110.164c-0.007,19.151-15.586,34.731-34.738,34.738   c-0.004,0-0.009-0.001-0.013-0.001c-0.004,0-0.009,0.001-0.013,0.001c-19.151-0.007-34.731-15.586-34.738-34.738   c0-0.004,0.001-0.009,0.001-0.013c0-0.004-0.001-0.008-0.001-0.013c0.009-19.154,15.592-34.735,34.746-34.738   c0.002,0,0.004,0,0.006,0s0.004,0,0.006,0c19.155,0.004,34.737,15.584,34.744,34.738c0,0.004-0.001,0.008-0.001,0.013   C290.75,110.155,290.751,110.16,290.751,110.164z\"></path>	</g></g><g>	<g>		<path d=\"M256.002,85.119c-13.802,0-25.032,11.229-25.032,25.031c0,13.803,11.229,25.032,25.032,25.032   c13.803,0,25.031-11.229,25.031-25.031C281.033,96.348,269.804,85.119,256.002,85.119z M256.002,120.182   c-5.532,0-10.032-4.5-10.032-10.031c0-5.532,4.5-10.032,10.032-10.032c5.531,0,10.031,4.5,10.031,10.032   C266.033,115.682,261.533,120.182,256.002,120.182z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>							\n												<h5>\n													Goal Setting												</h5>\n											<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xodm=\"http://www.corel.com/coreldraw/odm/2003\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_2077007814064\"><g id=\"_200306976\"><path d=\"m256 319.44c-1.59 0-3.12-.63-4.24-1.75-11.13-11.13-22.33-21.98-33.17-32.48-62.94-60.98-117.31-113.65-117.31-179.39 0-44.31 36.05-80.35 80.36-80.35 37.74 0 57.46 18.43 74.36 48.87 16.9-30.44 36.62-48.87 74.35-48.87 44.31 0 80.36 36.04 80.36 80.35 0 65.74-54.36 118.41-117.31 179.39-10.83 10.49-22.03 21.35-33.16 32.48-1.12 1.12-2.65 1.75-4.24 1.75zm-74.36-281.97c-37.69 0-68.35 30.66-68.35 68.35 0 60.66 52.67 111.69 113.65 170.77 9.5 9.2 19.27 18.67 29.06 28.39 9.78-9.72 19.56-19.19 29.06-28.39 60.98-59.08 113.65-110.11 113.65-170.77 0-37.69-30.66-68.35-68.35-68.35-31.58 0-49.63 13.72-68.99 52.45-1.02 2.03-3.1 3.31-5.37 3.31s-4.35-1.28-5.37-3.31c-19.36-38.73-37.41-52.45-68.99-52.45z\"></path></g><g><g id=\"_200307000\"><path d=\"m268.35 249.13h-24.7c-3.32 0-6-2.68-6-6v-11.56c-2.07-.72-4.09-1.56-6.06-2.51l-8.18 8.18c-1.13 1.12-2.65 1.75-4.25 1.75-1.59 0-3.11-.63-4.24-1.75l-17.47-17.47c-2.34-2.34-2.34-6.14 0-8.49l8.18-8.18c-.95-1.97-1.79-3.99-2.51-6.06h-11.57c-3.31 0-6-2.68-6-6v-24.7c0-3.32 2.69-6 6-6h11.57c.72-2.07 1.56-4.09 2.51-6.06l-8.18-8.18c-1.13-1.13-1.76-2.65-1.76-4.24 0-1.6.63-3.12 1.76-4.25l17.47-17.47c2.34-2.34 6.14-2.34 8.49 0l8.18 8.18c1.96-.95 3.99-1.79 6.05-2.51v-11.56c0-3.32 2.69-6 6-6h24.71c3.31 0 6 2.68 6 6v11.56c2.07.72 4.09 1.56 6.06 2.51l8.18-8.18c1.12-1.12 2.65-1.76 4.24-1.76s3.12.64 4.24 1.76l17.48 17.47c1.12 1.13 1.75 2.65 1.75 4.25 0 1.59-.63 3.11-1.75 4.24l-8.19 8.18c.96 1.97 1.8 3.99 2.52 6.06h11.56c3.32 0 6 2.68 6 6v24.7c0 3.32-2.68 6-6 6h-11.56c-.72 2.07-1.56 4.09-2.52 6.06l8.19 8.18c1.12 1.13 1.75 2.65 1.75 4.24 0 1.6-.63 3.12-1.75 4.25l-17.47 17.47c-2.35 2.34-6.15 2.34-8.49 0l-8.18-8.18c-1.97.95-3.99 1.79-6.06 2.51v11.57c0 3.31-2.69 5.99-6 5.99zm-18.7-12h12.7v-10.02c0-2.74 1.86-5.14 4.52-5.82 4.06-1.03 7.95-2.64 11.56-4.79 2.36-1.4 5.37-1.02 7.31.92l7.09 7.09 8.99-8.99-7.09-7.09c-1.94-1.94-2.32-4.95-.92-7.31 2.15-3.6 3.76-7.49 4.79-11.56.68-2.66 3.07-4.52 5.82-4.52h10.02v-12.7h-10.02c-2.75 0-5.14-1.87-5.82-4.52-1.03-4.07-2.64-7.95-4.79-11.56-1.4-2.36-1.03-5.37.92-7.31l7.09-7.1-8.99-8.98-7.09 7.09c-1.94 1.94-4.95 2.32-7.31.92-3.61-2.15-7.5-3.77-11.56-4.8-2.66-.67-4.52-3.07-4.52-5.81v-10.03h-12.7v10.03c0 2.74-1.87 5.14-4.53 5.81-4.05 1.04-7.94 2.65-11.55 4.8-2.36 1.4-5.37 1.02-7.31-.92l-7.1-7.09-8.98 8.99 7.09 7.09c1.94 1.94 2.32 4.95.92 7.31-2.15 3.61-3.76 7.5-4.8 11.55-.67 2.66-3.07 4.53-5.81 4.53h-10.02v12.7h10.02c2.74 0 5.14 1.86 5.81 4.52 1.04 4.06 2.65 7.95 4.8 11.56 1.4 2.36 1.02 5.37-.92 7.31l-7.09 7.09 8.98 8.99 7.1-7.09c1.94-1.94 4.95-2.32 7.31-.92 3.61 2.15 7.5 3.76 11.56 4.79 2.66.68 4.52 3.08 4.52 5.82z\"></path></g><g id=\"_200306760\"><path d=\"m256 215.48c-20.29 0-36.8-16.5-36.8-36.79s16.51-36.8 36.8-36.8 36.79 16.51 36.79 36.8-16.5 36.79-36.79 36.79zm0-61.59c-13.67 0-24.8 11.13-24.8 24.8s11.13 24.79 24.8 24.79 24.79-11.12 24.79-24.79-11.12-24.8-24.79-24.8z\"></path></g></g><g id=\"_200306784\"><path d=\"m461.9 340.14c-.4 0-.8-.04-1.21-.12-2.77-.57-4.77-3.01-4.79-5.84-.01-.8-.54-16.35-18.14-25.35-4.77 6.05-14.98 15.83-31.26 15.83-7.09 0-14.53-1.91-22.17-5.68-1.97 2.49-4.39 6.45-4.71 11.19-.17 2.67-2.1 4.89-4.71 5.46-2.62.57-5.29-.67-6.56-3.03-.73-1.35-17.54-33.58 6.24-66.87.25-.34.54-.67.85-.95.53-.48 13.04-11.64 29.73-11.64 8.33 0 16.16 2.73 23.32 8.11 6.78.84 29.41 4.94 40.34 22.87 8.21 13.48 7.74 31.11-1.42 52.39-.96 2.24-3.15 3.63-5.51 3.63zm-26.24-44.82c.73 0 1.45.13 2.16.41 12.4 4.82 19.68 12.11 23.97 19.04 1.81-9.72.76-17.87-3.18-24.36-9.39-15.48-32.65-17.38-32.88-17.39-1.23-.09-2.4-.56-3.35-1.33-5.36-4.35-11.14-6.55-17.2-6.55-10.52 0-19.21 6.52-21.25 8.17-10.03 14.4-10.85 28.57-9.39 38.73 2.4-3.14 4.55-4.96 4.74-5.12 1.93-1.61 4.66-1.85 6.84-.59 7.27 4.2 14.13 6.33 20.38 6.33 15.81 0 23.56-13.64 23.88-14.22 1.09-1.97 3.15-3.12 5.28-3.12z\"></path></g><g id=\"_200307264\"><path d=\"m419.46 411.58c-.16 0-.32 0-.48 0-10.3-.15-20.06-5.17-28.23-14.52-7.44-8.5-13.2-20.37-16.78-34.51-9.81-1.95-15.33-9.01-16.53-15.9-1.66-9.54 3.98-18.57 14.03-22.48 3.08-1.2 6.56.33 7.76 3.42s-.33 6.56-3.41 7.77c-5.64 2.19-7.06 6.34-6.56 9.23.53 3.02 3.36 6.31 9.74 6.48 2.77.08 5.12 2.03 5.71 4.73 5.7 26.37 19.22 43.55 34.45 43.78h.29c14.2 0 26.75-15.15 32.81-39.65.62-2.5 2.75-4.32 5.31-4.54 5.81-.5 8.33-3.74 8.74-6.61.43-2.97-1.08-6.91-6.58-9.05-3.09-1.2-4.62-4.68-3.42-7.76 1.2-3.09 4.68-4.62 7.77-3.42 9.78 3.8 15.45 12.62 14.11 21.93-1.15 8.02-6.99 14.03-15.29 16.15-7.91 27.89-24.31 44.95-43.44 44.95z\"></path></g><g id=\"_200306808\"><path d=\"m332.55 486.53c-1.59 0-3.11-.63-4.24-1.75-1.12-1.13-1.76-2.65-1.76-4.25 0-44.88 21.25-52.28 38.32-58.24 13.67-4.77 23.55-8.21 24.07-29.7.08-3.31 2.86-5.89 6.15-5.85 3.31.08 5.93 2.83 5.85 6.15-.73 29.78-17.41 35.6-32.12 40.73-15.3 5.34-28.64 9.99-30.13 40.91h161.17c-1.49-30.92-14.83-35.57-30.13-40.91-14.73-5.13-31.42-10.96-32.12-40.8-.08-3.31 2.54-6.06 5.85-6.14 3.31-.11 6.06 2.54 6.14 5.86.51 21.53 10.4 24.98 24.08 29.75 17.07 5.96 38.32 13.36 38.32 58.24 0 3.31-2.69 6-6 6z\"></path></g><g id=\"_200306616\"><path d=\"m419.27 443.04c-15.8 0-30.68-6.12-41.9-17.25-2.36-2.33-2.38-6.13-.04-8.48 2.33-2.35 6.13-2.37 8.48-.04 8.96 8.88 20.85 13.77 33.46 13.77 12.62 0 24.5-4.89 33.46-13.77 2.36-2.33 6.16-2.31 8.49.04s2.31 6.15-.04 8.48c-11.22 11.13-26.11 17.25-41.91 17.25z\"></path></g><g id=\"_200307672\"><path d=\"m374.04 486.53c-3.32 0-6-2.68-6-6v-19.82c0-3.31 2.68-6 6-6 3.31 0 6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307888\"><path d=\"m464.51 486.53c-3.31 0-6-2.68-6-6v-19.82c0-3.31 2.69-6 6-6s6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307744\"><path d=\"m135.35 340.14c-.4 0-.8-.04-1.21-.12-2.77-.57-4.77-3.01-4.79-5.84-.01-.8-.54-16.35-18.14-25.35-4.77 6.05-14.98 15.83-31.26 15.83-7.09 0-14.53-1.91-22.17-5.68-1.97 2.49-4.39 6.45-4.7 11.19-.18 2.67-2.11 4.89-4.72 5.46-2.62.57-5.29-.67-6.56-3.03-.72-1.35-17.54-33.58 6.24-66.87.25-.34.54-.67.86-.95.52-.48 13.03-11.64 29.73-11.64 8.32 0 16.16 2.73 23.31 8.11 6.78.84 29.41 4.94 40.34 22.87 8.22 13.48 7.74 31.11-1.42 52.39-.96 2.24-3.15 3.63-5.51 3.63zm-26.25-44.82c.72 0 1.46.13 2.17.41 12.4 4.82 19.69 12.1 23.97 19.04 1.81-9.72.76-17.87-3.18-24.36-9.39-15.48-32.65-17.37-32.88-17.39-1.22-.09-2.4-.56-3.35-1.33-5.36-4.35-11.14-6.55-17.2-6.55-10.52 0-19.21 6.52-21.24 8.17-10.04 14.4-10.85 28.57-9.4 38.73 2.4-3.14 4.55-4.96 4.74-5.12 1.93-1.61 4.67-1.85 6.84-.59 7.27 4.2 14.13 6.33 20.38 6.33 16.01 0 23.79-14.05 23.86-14.2 1.08-1.98 3.14-3.14 5.29-3.14z\"></path></g><g id=\"_200307960\"><path d=\"m92.91 411.58c-.16 0-.32 0-.48 0-10.3-.15-20.06-5.17-28.23-14.52-7.44-8.5-13.2-20.37-16.79-34.51-9.8-1.95-15.32-9.01-16.52-15.9-1.66-9.54 3.98-18.57 14.03-22.48 3.08-1.2 6.56.33 7.76 3.42s-.33 6.56-3.41 7.77c-5.64 2.19-7.06 6.34-6.56 9.23.53 3.02 3.36 6.31 9.74 6.48 2.77.08 5.12 2.03 5.71 4.73 5.7 26.37 19.22 43.55 34.45 43.78h.29c14.2 0 26.75-15.15 32.81-39.65.62-2.5 2.75-4.32 5.31-4.54 5.81-.5 8.33-3.74 8.74-6.61.43-2.97-1.08-6.91-6.58-9.05-3.09-1.2-4.62-4.68-3.42-7.76 1.2-3.09 4.68-4.62 7.77-3.42 9.78 3.8 15.45 12.62 14.11 21.93-1.16 8.02-6.99 14.03-15.3 16.15-7.9 27.89-24.3 44.95-43.43 44.95z\"></path></g><g id=\"_200307408\"><path d=\"m6 486.53c-1.59 0-3.11-.63-4.24-1.75-1.12-1.13-1.76-2.65-1.76-4.25 0-44.88 21.25-52.28 38.32-58.24 13.67-4.77 23.55-8.21 24.08-29.7.08-3.31 2.82-5.89 6.14-5.85 3.31.08 5.93 2.83 5.85 6.15-.73 29.78-17.41 35.6-32.12 40.73-15.3 5.34-28.64 9.99-30.13 40.91h161.17c-1.5-30.92-14.83-35.57-30.13-40.91-14.73-5.13-31.42-10.96-32.12-40.8-.08-3.31 2.54-6.06 5.85-6.14 3.27-.11 6.06 2.54 6.14 5.86.51 21.53 10.4 24.98 24.08 29.75 17.07 5.96 38.32 13.36 38.32 58.24 0 3.31-2.69 6-6 6h-173.45z\"></path></g><g id=\"_200307648\"><path d=\"m92.73 443.04c-15.81 0-30.69-6.12-41.91-17.25-2.36-2.33-2.37-6.13-.04-8.48s6.13-2.37 8.48-.04c8.97 8.88 20.85 13.77 33.47 13.77 12.61 0 24.49-4.89 33.45-13.77 2.36-2.33 6.16-2.31 8.49.04s2.31 6.15-.04 8.48c-11.22 11.13-26.11 17.25-41.9 17.25z\"></path></g><g id=\"_200307720\"><path d=\"m47.49 486.53c-3.32 0-6-2.68-6-6v-19.82c0-3.31 2.68-6 6-6 3.31 0 6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307456\"><path d=\"m137.96 486.53c-3.31 0-6-2.68-6-6v-19.82c0-3.31 2.69-6 6-6s6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307840\"><path d=\"m94.44 269.46c-3.31 0-6-2.68-6-6v-23.34c0-8.01 6.52-14.53 14.53-14.53h70.38c3.31 0 6 2.69 6 6 0 3.32-2.69 6-6 6h-70.38c-1.37 0-2.53 1.16-2.53 2.53v23.34c0 3.32-2.68 6-6 6zm323.12-1.73c-3.32 0-6-2.69-6-6v-21.61c0-1.37-1.16-2.53-2.53-2.53h-70.38c-3.31 0-6-2.68-6-6 0-3.31 2.69-6 6-6h70.37c8.02 0 14.54 6.52 14.54 14.53v21.61c0 3.31-2.69 6-6 6z\"></path></g></g></g></svg>							\n												<h5>\n													Relationship Improvement												</h5>\n											<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m434.61 333.03-21.34-36.58c6.76-18.2 7.07-35.07.96-51.47-5.64-15.15-16.96-29.98-34.59-45.33-11.13-9.69-23.22-17.82-35.9-24.21.12-3.43-1.13-6.87-3.68-9.41l-11.45-11.45c-.24-.24-.28-.47-.12-.78 1.77-3.49 3.28-7.13 4.5-10.84.11-.32.3-.46.64-.46h16.19c6.99 0 12.67-5.68 12.67-12.67v-22.44c0-6.99-5.68-12.67-12.67-12.67h-16.19c-.34 0-.53-.14-.64-.46-1.22-3.71-2.73-7.35-4.5-10.84-.15-.3-.12-.53.12-.77l11.45-11.45c2.39-2.39 3.71-5.57 3.71-8.96s-1.32-6.57-3.71-8.96l-15.87-15.87c-2.39-2.39-5.57-3.71-8.96-3.71s-6.57 1.32-8.96 3.71l-11.45 11.45c-.24.24-.47.28-.77.12-3.48-1.77-7.13-3.28-10.84-4.5-.32-.11-.46-.3-.46-.64v-16.17c0-6.99-5.68-12.67-12.67-12.67h-22.44c-6.99 0-12.67 5.68-12.67 12.67v16.19c0 .34-.14.53-.46.64-3.7 1.22-7.35 2.73-10.84 4.5-.3.15-.54.12-.77-.12l-11.45-11.45c-2.39-2.39-5.57-3.71-8.96-3.71s-6.57 1.32-8.96 3.71l-15.87 15.87c-2.39 2.39-3.71 5.57-3.71 8.96s1.32 6.57 3.71 8.96l11.45 11.45c.24.24.28.47.12.77-1.77 3.49-3.28 7.13-4.5 10.84-.11.32-.3.46-.64.46h-16.19c-6.99 0-12.67 5.68-12.67 12.67v10.02c-.5 1.37-.76 2.83-.76 4.3v16.19c0 .34-.14.53-.46.64-3.7 1.22-7.35 2.73-10.84 4.5-.3.15-.54.12-.78-.12l-11.45-11.45c-2.39-2.39-5.57-3.71-8.96-3.71s-6.57 1.32-8.96 3.71l-15.87 15.87c-2.39 2.39-3.71 5.57-3.71 8.96s1.32 6.57 3.71 8.96l11.45 11.45c.24.24.28.47.12.77-1.77 3.49-3.28 7.13-4.49 10.84-.11.32-.3.46-.64.46h-16.16c-6.99 0-12.67 5.68-12.67 12.67v22.44c0 6.99 5.68 12.67 12.67 12.67h16.19c.34 0 .53.14.63.46 1.22 3.7 2.73 7.35 4.5 10.84.15.3.12.53-.12.77l-11.45 11.45c-2.39 2.39-3.71 5.57-3.71 8.96s1.32 6.57 3.71 8.96l15.87 15.87c2.39 2.39 5.57 3.71 8.96 3.71s6.57-1.32 8.96-3.71l11.45-11.45c.24-.24.47-.28.78-.12 2.63 1.33 5.35 2.52 8.12 3.55 3.63 25.86 18.43 52.67 31.88 77.01 3.47 6.29 6.76 12.23 9.84 18.11 12.69 35.72 7.66 78.5-12.56 106.56l-6.85 9.51h173.63v-44.26c38.01-.13 59.59-5.99 67.67-18.29 6.96-10.6 1.74-22.31-1.38-29.3-.44-.98-.98-2.19-1.34-3.11 3.35-4.7 4.47-10.39 3.12-16.07.14-.2.3-.41.43-.59 2.26-3.05 6.46-8.74 3.06-18.47-.43-1.24-.63-2.03-.72-2.5.71-.41 1.88-.97 2.87-1.44 1.82-.86 4.08-1.94 6.69-3.46 4.46-2.6 7.64-6.79 8.96-11.8s.59-10.29-2.01-14.74zm-267.36-225.64c0-.36.31-.67.67-.67h16.19c5.49 0 10.32-3.5 12.04-8.71 1.03-3.13 2.31-6.21 3.8-9.16 2.48-4.9 1.54-10.8-2.34-14.68l-11.45-11.45c-.13-.13-.19-.29-.19-.47 0-.19.06-.35.19-.47l15.87-15.87c.25-.25.69-.25.95 0l11.45 11.45c3.88 3.88 9.78 4.82 14.68 2.34 2.95-1.49 6.03-2.77 9.16-3.8 5.21-1.71 8.72-6.55 8.72-12.04v-16.19c0-.36.31-.67.67-.67h22.44c.36 0 .67.31.67.67v16.19c0 5.49 3.5 10.32 8.71 12.04 3.13 1.03 6.21 2.31 9.16 3.8 4.9 2.48 10.8 1.54 14.68-2.34l11.45-11.45c.25-.25.69-.25.95 0l15.87 15.87c.13.13.19.29.19.47 0 .19-.06.35-.19.47l-11.45 11.45c-3.88 3.88-4.83 9.78-2.34 14.68 1.49 2.95 2.77 6.03 3.8 9.16 1.71 5.21 6.55 8.71 12.04 8.71h16.19c.36 0 .67.31.67.67v22.44c0 .36-.31.67-.67.67h-16.19c-5.49 0-10.32 3.5-12.04 8.71-1.03 3.13-2.31 6.21-3.8 9.16-2.48 4.9-1.54 10.8 2.34 14.68l4.07 4.07c-6.1-2.13-12.28-3.88-18.52-5.21-5.2-1.11-10.41-1.91-15.6-2.44 12.29-9.41 20.24-24.22 20.24-40.86 0-28.37-23.08-51.45-51.45-51.45s-51.45 23.08-51.45 51.45c0 20.1 11.59 37.53 28.43 45.99-1.46.45-2.91.93-4.35 1.43-13.15 4.6-25.02 11.14-35.4 19.37l-9.95-9.95c-.13-.13-.19-.28-.19-.47s.06-.35.19-.47l11.45-11.45c3.88-3.88 4.82-9.78 2.34-14.68-1.49-2.95-2.77-6.03-3.8-9.16-1.71-5.21-6.55-8.72-12.04-8.72h-16.19c-.36 0-.67-.31-.67-.67zm91.61 50.67c-21.75 0-39.45-17.7-39.45-39.45s17.7-39.45 39.45-39.45 39.45 17.7 39.45 39.45-17.7 39.45-39.45 39.45zm-81.2 25.88 9.4 9.4c-14.24 13.88-24.92 31.39-31.29 51.61-10.4-7.3-16.85-19.33-16.85-32.3 0-20.29 15.4-37.05 35.13-39.21-.06.51-.1 1.02-.1 1.54 0 3.39 1.32 6.57 3.71 8.96zm-43.73 89.97-11.45 11.45c-.25.25-.69.25-.94 0l-15.87-15.87c-.16-.16-.19-.34-.19-.47 0-.19.06-.35.19-.47l11.45-11.45c3.88-3.88 4.83-9.78 2.34-14.68-1.49-2.95-2.77-6.03-3.8-9.16-1.71-5.21-6.55-8.72-12.04-8.72h-16.19c-.36 0-.67-.31-.67-.67v-22.44c0-.36.31-.67.67-.67h16.19c5.49 0 10.32-3.5 12.04-8.71 1.03-3.13 2.31-6.21 3.8-9.16 2.48-4.9 1.54-10.8-2.34-14.68l-11.45-11.45c-.16-.16-.19-.34-.19-.47 0-.19.06-.35.19-.47l15.87-15.87c.25-.25.69-.25.95 0l11.45 11.45c3.88 3.88 9.78 4.82 14.68 2.34 2.95-1.49 6.03-2.77 9.16-3.8 3.75-1.23 6.61-4.09 7.92-7.63.72.13 1.47.21 2.23.21h16.19c.34 0 .53.14.63.46 1.22 3.7 2.73 7.35 4.5 10.84.15.3.12.53-.12.77l-6.78 6.78c-1.31-.1-2.64-.16-3.95-.16-28.37 0-51.45 23.08-51.45 51.45 0 18.39 9.91 35.35 25.61 44.49-.35 1.61-.69 3.23-.99 4.86-.64 3.46-.96 6.96-1.05 10.48-.63-.3-1.27-.6-1.89-.91-4.92-2.5-10.82-1.55-14.7 2.33zm291.06 70.74c-.5 1.91-1.71 3.5-3.4 4.49-2.17 1.27-4.1 2.18-5.8 2.99-6.98 3.32-12.43 7.02-8.33 18.75 1.31 3.74.35 5.03-1.38 7.37-1.5 2.02-4 5.41-2.62 9.89.88 2.86.29 5.54-1.71 7.76-3.67 4.08-1.39 9.2.82 14.14 3.1 6.95 5.42 13.09 2.31 17.82-3.31 5.04-15.96 13.42-63.57 12.85l-6.07-.07v44.36h-138.97c17.34-30.83 20.69-72.96 7.92-108.51l-.14-.39-.19-.37c-3.21-6.12-6.59-12.24-10.17-18.72-17.49-31.65-35.57-64.37-30.34-92.85 7.68-41.83 33.96-73.47 72.1-86.8 44.14-15.44 96.37-3.43 136.3 31.34 33.22 28.92 41.99 54.65 29.31 86.02l-1.1 2.73 24.28 41.62c.99 1.69 1.25 3.67.75 5.58zm-145.92-155.19c-51.35 0-93.14 41.78-93.14 93.14 0 51.35 41.78 93.13 93.14 93.13s93.14-41.78 93.14-93.13c0-51.36-41.78-93.14-93.14-93.14zm0 174.27c-44.74 0-81.14-36.4-81.14-81.13s36.4-81.14 81.14-81.14 81.14 36.4 81.14 81.14-36.4 81.13-81.14 81.13zm29.28-94.9c-3.51-13.57-12.31-26.17-25.63-36.38-2.15-1.65-5.15-1.65-7.3 0-13.32 10.22-22.12 22.81-25.63 36.38-7.81-2.14-16.51-2.65-25.56-1.45-2.69.35-4.81 2.47-5.16 5.16-2.5 18.97 2.38 35.68 13.74 47.04 9.42 9.42 22.51 14.38 37.52 14.38 2.85 0 5.77-.19 8.74-.55 2.98.36 5.89.55 8.74.55 15.01 0 28.1-4.96 37.52-14.38 11.36-11.36 16.24-28.07 13.74-47.04-.35-2.69-2.47-4.81-5.16-5.16-9.05-1.19-17.75-.68-25.56 1.45zm-29.28-23.87c12.29 10.71 19.01 23.83 19.01 37.34s-6.71 26.63-19.01 37.34c-12.29-10.71-19.01-23.83-19.01-37.34s6.72-26.63 19.01-37.34zm-48.55 33.87c6.31-.35 12.26.35 17.57 2.02-.01.48-.02.96-.02 1.45 0 14.08 5.57 27.65 15.92 39.27-9.08-1.12-16.89-4.67-22.68-10.47-7.77-7.75-11.52-19.08-10.79-32.27zm86.33 32.27c-5.8 5.8-13.61 9.34-22.68 10.47 10.35-11.63 15.91-25.19 15.91-39.27 0-.48-.01-.96-.02-1.45 5.31-1.67 11.25-2.36 17.57-2.02.73 13.19-3.03 24.52-10.78 32.27z\"></path></svg>							\n												<h5>\n													Skill Development												</h5>\n											<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m273.006 83.567v168.425h87.5a4 4 0 1 1 0 8h-87.5v168.433h87.5a4 4 0 0 1 0 8h-91.5a4 4 0 0 1 -4-4v-172.431h-23.979a4 4 0 1 1 0-8h23.973v-172.428a4 4 0 0 1 4-4h91.5a4 4 0 0 1 0 8zm170 415.36a66.5 66.5 0 1 0 -66.5-66.5 66.569 66.569 0 0 0 66.5 66.5zm0-352.86a66.5 66.5 0 1 0 -66.5-66.5 66.569 66.569 0 0 0 66.5 66.5zm0 176.427a66.5 66.5 0 1 0 -66.498-66.494 66.569 66.569 0 0 0 66.5 66.494zm-344.212-195.217-6.473 100.7a4.046 4.046 0 0 0 .55 2.3l17.454 29.364a3.994 3.994 0 0 0 6.88 0l17.454-29.364a3.983 3.983 0 0 0 .55-2.3l-6.473-100.7 60.793 15.639c16.032 4.116 26.821 18.062 27.5 35.53v140.818a19.6 19.6 0 0 1 -6.9 15.283 37.861 37.861 0 0 1 -11.274 6.887 15.2 15.2 0 0 1 -12.961-.608v-142.018a4 4 0 1 0 -8 0v291.546a13.657 13.657 0 0 1 -13.646 13.639h-32.839a13.657 13.657 0 0 1 -13.646-13.639v-130.33a4 4 0 1 0 -8 0v130.33a13.657 13.657 0 0 1 -13.646 13.639h-32.831a13.651 13.651 0 0 1 -13.639-13.639v-291.546a4 4 0 0 0 -8 0v142.018a15.314 15.314 0 0 1 -12.967.608 37.924 37.924 0 0 1 -11.28-6.887 19.616 19.616 0 0 1 -6.895-15.283v-140.818c.672-17.468 11.46-31.414 27.492-35.53l60.793-15.639zm-96.287 50.948v141.039a27.649 27.649 0 0 0 9.61 21.284 45.823 45.823 0 0 0 13.638 8.338 23.478 23.478 0 0 0 15.89.6v140.868a21.667 21.667 0 0 0 21.641 21.646h32.836a21.632 21.632 0 0 0 17.647-9.131 21.608 21.608 0 0 0 17.64 9.131h32.836a21.673 21.673 0 0 0 21.647-21.641v-140.88a22.827 22.827 0 0 0 7.016 1.114 24.352 24.352 0 0 0 8.867-1.707 45.84 45.84 0 0 0 13.639-8.338 27.648 27.648 0 0 0 9.609-21.284v-141.039c-.786-21.127-13.932-38.031-33.493-43.06l-61.836-15.911c22.691-13.039 31.486-42.089 31.807-67.909.193-15.46-4.622-28.557-13.924-37.887a47.161 47.161 0 0 0 -33.301-13.458h-.943a47.221 47.221 0 0 0 -33.379 13.46c-9.3 9.33-14.118 22.427-13.925 37.887.322 25.82 9.124 54.87 31.815 67.909l-61.836 15.909c-19.562 5.029-32.715 21.933-33.5 43.06zm444.493-61.479a4 4 0 1 1 -8 0v-33.179h-33.164a4 4 0 0 1 0-8h33.172v-33.174a4 4 0 0 1 8 0v33.172h33.172a4 4 0 0 1 0 8h-33.18v33.179zm0 102.081v33.165h33.172a4 4 0 1 1 0 8h-33.172v33.171a4 4 0 1 1 -8 0v-33.169h-33.164a4 4 0 0 1 0-8h33.172v-33.167a4 4 0 1 1 8 0zm0 176.419v33.179h33.172a4 4 0 0 1 0 8h-33.172v33.175a4 4 0 0 1 -8 0v-33.173h-33.164a4 4 0 0 1 0-8h33.172v-33.181a4 4 0 1 1 8 0z\" fill-rule=\"evenodd\"></path></svg>							\n												<h5>\n													Tailored Approaches												</h5>\n											<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.</p>										\n		Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 10:43:50', '2026-06-17 10:43:50', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=542', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(543, 1, '2026-06-17 10:45:29', '2026-06-17 10:45:29', '<h2>Frequently Asked Questions </h2>		<p>Please reach us at <a href=\"mailto:info@optimalmentalwellness.org\">info@optimalmentalwellness.org</a> if you cannot find an answer to your question.</p>		\n							Do you accept insurance?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Our office is currently in network with:</p>\n<ul>\n<li>Aetna</li>\n<li>Cigna</li>\n<li>Oscar</li>\n<li>United Health Care</li>\n</ul>\n<p>** All appointments utilizing insurance, must have insurance submitted and verified two days prior to appointment date. There is no exception.**</p>\n							Do you provide self pay options?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>No Insurance? No Problem.</p>\n<p>Cash Pay rates are as followed:</p>\n<ul>\n<li>$200 Initial evaluation 60 minutes (Mandatory for all NEW patients)</li>\n<li>$125 Follow-up appt 30 minutes (medication adjustments/refills)</li>\n<li>$65 Psychotherapy add on to follow up 45 mins</li>\n<li>$45 Psychotherapy add on to follow up 30 mins</li>\n<li>$135 Psychotherapy 50 mins</li>\n</ul>\n							Do you prescribe controlled substances?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>We do prescribe some controlled substances depending on your diagnosis.</p>\n							Do you accept students for clinical hours?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>We do prescribe some controlled substances depending on your diagnosis.</p>', 'Faq', '', 'publish', 'closed', 'closed', '', 'faq', '', '', '2026-06-17 11:07:44', '2026-06-17 11:07:44', '', 0, 'https://mrarif.me/optimalmentalwellness/?page_id=543', 0, 'page', '', 0),
(544, 1, '2026-06-17 10:45:29', '2026-06-17 10:45:29', '', 'Faq', '', 'inherit', 'closed', 'closed', '', '543-revision-v1', '', '', '2026-06-17 10:45:29', '2026-06-17 10:45:29', '', 543, 'https://mrarif.me/optimalmentalwellness/?p=544', 0, 'revision', '', 0),
(545, 1, '2026-06-17 11:16:01', '2026-06-17 10:45:53', ' ', '', '', 'publish', 'closed', 'closed', '', '545', '', '', '2026-06-17 11:16:01', '2026-06-17 11:16:01', '', 0, 'https://mrarif.me/optimalmentalwellness/?p=545', 6, 'nav_menu_item', '', 0),
(546, 1, '2026-06-17 10:47:50', '2026-06-17 10:47:50', '', 'Faq', '', 'inherit', 'closed', 'closed', '', '543-revision-v1', '', '', '2026-06-17 10:47:50', '2026-06-17 10:47:50', '', 543, 'https://mrarif.me/optimalmentalwellness/?p=546', 0, 'revision', '', 0),
(547, 1, '2026-06-17 10:47:50', '2026-06-17 10:47:50', '', 'Faq', '', 'inherit', 'closed', 'closed', '', '543-revision-v1', '', '', '2026-06-17 10:47:50', '2026-06-17 10:47:50', '', 543, 'https://mrarif.me/optimalmentalwellness/?p=547', 0, 'revision', '', 0),
(551, 1, '2026-06-17 10:50:53', '2026-06-17 10:50:53', '<h2>Frequently Asked Questions </h2>		<p>Please reach us at <a href=\"mailto:info@optimalmentalwellness.org\">info@optimalmentalwellness.org</a> if you cannot find an answer to your question.</p>		\n							Do you accept insurance?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Our office is currently in network with:</p>\n<ul>\n<li>Aetna</li>\n<li>Cigna</li>\n<li>Oscar</li>\n<li>United Health Care</li>\n</ul>\n<p>** All appointments utilizing insurance, must have insurance submitted and verified two days prior to appointment date. There is no exception.**</p>\n							Do you provide self pay options?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>No Insurance? No Problem.</p>\n<p>Cash Pay rates are as followed:</p>\n<ul>\n<li>$200 Initial evaluation 60 minutes (Mandatory for all NEW patients)</li>\n<li>$125 Follow-up appt 30 minutes (medication adjustments/refills)</li>\n<li>$65 Psychotherapy add on to follow up 45 mins</li>\n<li>$45 Psychotherapy add on to follow up 30 mins</li>\n<li>$135 Psychotherapy 50 mins</li>\n</ul>\n							Do you prescribe controlled substances?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>We do prescribe some controlled substances depending on your diagnosis.</p>\n							Do you accept students for clinical hours?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>We do prescribe some controlled substances depending on your diagnosis.</p>', 'Faq', '', 'inherit', 'closed', 'closed', '', '543-revision-v1', '', '', '2026-06-17 10:50:53', '2026-06-17 10:50:53', '', 543, 'https://mrarif.me/optimalmentalwellness/?p=551', 0, 'revision', '', 0),
(548, 1, '2026-06-17 10:47:50', '2026-06-17 10:47:50', '<h2>Frequently Asked Questions </h2>				\n							How do I know if my anxiety needs professional treatment?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>If anxiety interferes with your sleep, work, relationships, or daily activities, or if you find yourself avoiding things you used to enjoy, it&#8217;s time to seek help. You don&#8217;t need to wait until things feel unbearable; earlier treatment often means faster relief.</p>\n							What types of anxiety disorders do you treat?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>We treat generalized anxiety disorder (GAD), panic disorder, social anxiety disorder, phobias, and anxiety that occurs alongside other conditions like depression or ADHD.</p>\n							Will I need medication for my anxiety?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Not necessarily. Some patients benefit most from therapy, others from medication, and many from a combination of both. We&#8217;ll discuss all your options and build a plan that aligns with your preferences and goals.</p>\n							Are anxiety medications addictive?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Most first-line anxiety medications, such as SSRIs and SNRIs, are not habit-forming. Some short-term medications require more careful use, and we&#8217;ll always explain the benefits and risks of any medication we recommend so you can make an informed decision.</p>\n							How long does anxiety treatment take to work?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Many patients begin noticing improvement within a few weeks of starting treatment, with continued gains over the following months. We monitor your progress closely and adjust your plan as needed.</p>', 'Faq', '', 'inherit', 'closed', 'closed', '', '543-revision-v1', '', '', '2026-06-17 10:47:50', '2026-06-17 10:47:50', '', 543, 'https://mrarif.me/optimalmentalwellness/?p=548', 0, 'revision', '', 0),
(549, 1, '2026-06-17 10:50:53', '2026-06-17 10:50:53', '<h2>Frequently Asked Questions </h2>				\n							How do I know if my anxiety needs professional treatment?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>If anxiety interferes with your sleep, work, relationships, or daily activities, or if you find yourself avoiding things you used to enjoy, it&#8217;s time to seek help. You don&#8217;t need to wait until things feel unbearable; earlier treatment often means faster relief.</p>\n							What types of anxiety disorders do you treat?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>We treat generalized anxiety disorder (GAD), panic disorder, social anxiety disorder, phobias, and anxiety that occurs alongside other conditions like depression or ADHD.</p>\n							Will I need medication for my anxiety?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Not necessarily. Some patients benefit most from therapy, others from medication, and many from a combination of both. We&#8217;ll discuss all your options and build a plan that aligns with your preferences and goals.</p>\n							Are anxiety medications addictive?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Most first-line anxiety medications, such as SSRIs and SNRIs, are not habit-forming. Some short-term medications require more careful use, and we&#8217;ll always explain the benefits and risks of any medication we recommend so you can make an informed decision.</p>\n							How long does anxiety treatment take to work?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Many patients begin noticing improvement within a few weeks of starting treatment, with continued gains over the following months. We monitor your progress closely and adjust your plan as needed.</p>', 'Faq', '', 'inherit', 'closed', 'closed', '', '543-revision-v1', '', '', '2026-06-17 10:50:53', '2026-06-17 10:50:53', '', 543, 'https://mrarif.me/optimalmentalwellness/?p=549', 0, 'revision', '', 0),
(550, 1, '2026-06-17 10:50:53', '2026-06-17 10:50:53', '<h2>Frequently Asked Questions </h2>				\n							How do I know if my anxiety needs professional treatment?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>If anxiety interferes with your sleep, work, relationships, or daily activities, or if you find yourself avoiding things you used to enjoy, it&#8217;s time to seek help. You don&#8217;t need to wait until things feel unbearable; earlier treatment often means faster relief.</p>\n							What types of anxiety disorders do you treat?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>We treat generalized anxiety disorder (GAD), panic disorder, social anxiety disorder, phobias, and anxiety that occurs alongside other conditions like depression or ADHD.</p>\n							Will I need medication for my anxiety?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Not necessarily. Some patients benefit most from therapy, others from medication, and many from a combination of both. We&#8217;ll discuss all your options and build a plan that aligns with your preferences and goals.</p>\n							Are anxiety medications addictive?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Most first-line anxiety medications, such as SSRIs and SNRIs, are not habit-forming. Some short-term medications require more careful use, and we&#8217;ll always explain the benefits and risks of any medication we recommend so you can make an informed decision.</p>\n							How long does anxiety treatment take to work?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Many patients begin noticing improvement within a few weeks of starting treatment, with continued gains over the following months. We monitor your progress closely and adjust your plan as needed.</p>', 'Faq', '', 'inherit', 'closed', 'closed', '', '543-revision-v1', '', '', '2026-06-17 10:50:53', '2026-06-17 10:50:53', '', 543, 'https://mrarif.me/optimalmentalwellness/?p=550', 0, 'revision', '', 0),
(553, 1, '2026-06-17 11:07:44', '2026-06-17 11:07:44', '<h2>Frequently Asked Questions </h2>		<p>Please reach us at <a href=\"mailto:info@optimalmentalwellness.org\">info@optimalmentalwellness.org</a> if you cannot find an answer to your question.</p>		\n							Do you accept insurance?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Our office is currently in network with:</p>\n<ul>\n<li>Aetna</li>\n<li>Cigna</li>\n<li>Oscar</li>\n<li>United Health Care</li>\n</ul>\n<p>** All appointments utilizing insurance, must have insurance submitted and verified two days prior to appointment date. There is no exception.**</p>\n							Do you provide self pay options?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>No Insurance? No Problem.</p>\n<p>Cash Pay rates are as followed:</p>\n<ul>\n<li>$200 Initial evaluation 60 minutes (Mandatory for all NEW patients)</li>\n<li>$125 Follow-up appt 30 minutes (medication adjustments/refills)</li>\n<li>$65 Psychotherapy add on to follow up 45 mins</li>\n<li>$45 Psychotherapy add on to follow up 30 mins</li>\n<li>$135 Psychotherapy 50 mins</li>\n</ul>\n							Do you prescribe controlled substances?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>We do prescribe some controlled substances depending on your diagnosis.</p>\n							Do you accept students for clinical hours?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>We do prescribe some controlled substances depending on your diagnosis.</p>', 'Faq', '', 'inherit', 'closed', 'closed', '', '543-revision-v1', '', '', '2026-06-17 11:07:44', '2026-06-17 11:07:44', '', 543, 'https://mrarif.me/optimalmentalwellness/?p=553', 0, 'revision', '', 0),
(554, 1, '2026-06-17 11:07:44', '2026-06-17 11:07:44', '<h2>Frequently Asked Questions </h2>		<p>Please reach us at <a href=\"mailto:info@optimalmentalwellness.org\">info@optimalmentalwellness.org</a> if you cannot find an answer to your question.</p>		\n							Do you accept insurance?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Our office is currently in network with:</p>\n<ul>\n<li>Aetna</li>\n<li>Cigna</li>\n<li>Oscar</li>\n<li>United Health Care</li>\n</ul>\n<p>** All appointments utilizing insurance, must have insurance submitted and verified two days prior to appointment date. There is no exception.**</p>\n							Do you provide self pay options?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>No Insurance? No Problem.</p>\n<p>Cash Pay rates are as followed:</p>\n<ul>\n<li>$200 Initial evaluation 60 minutes (Mandatory for all NEW patients)</li>\n<li>$125 Follow-up appt 30 minutes (medication adjustments/refills)</li>\n<li>$65 Psychotherapy add on to follow up 45 mins</li>\n<li>$45 Psychotherapy add on to follow up 30 mins</li>\n<li>$135 Psychotherapy 50 mins</li>\n</ul>\n							Do you prescribe controlled substances?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>We do prescribe some controlled substances depending on your diagnosis.</p>\n							Do you accept students for clinical hours?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>We do prescribe some controlled substances depending on your diagnosis.</p>', 'Faq', '', 'inherit', 'closed', 'closed', '', '543-revision-v1', '', '', '2026-06-17 11:07:44', '2026-06-17 11:07:44', '', 543, 'https://mrarif.me/optimalmentalwellness/?p=554', 0, 'revision', '', 0),
(555, 1, '2026-06-17 11:07:44', '2026-06-17 11:07:44', '<h2>Frequently Asked Questions </h2>		<p>Please reach us at <a href=\"mailto:info@optimalmentalwellness.org\">info@optimalmentalwellness.org</a> if you cannot find an answer to your question.</p>		\n							Do you accept insurance?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Our office is currently in network with:</p>\n<ul>\n<li>Aetna</li>\n<li>Cigna</li>\n<li>Oscar</li>\n<li>United Health Care</li>\n</ul>\n<p>** All appointments utilizing insurance, must have insurance submitted and verified two days prior to appointment date. There is no exception.**</p>\n							Do you provide self pay options?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>No Insurance? No Problem.</p>\n<p>Cash Pay rates are as followed:</p>\n<ul>\n<li>$200 Initial evaluation 60 minutes (Mandatory for all NEW patients)</li>\n<li>$125 Follow-up appt 30 minutes (medication adjustments/refills)</li>\n<li>$65 Psychotherapy add on to follow up 45 mins</li>\n<li>$45 Psychotherapy add on to follow up 30 mins</li>\n<li>$135 Psychotherapy 50 mins</li>\n</ul>\n							Do you prescribe controlled substances?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>We do prescribe some controlled substances depending on your diagnosis.</p>\n							Do you accept students for clinical hours?						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>We do prescribe some controlled substances depending on your diagnosis.</p>', 'Faq', '', 'inherit', 'closed', 'closed', '', '543-revision-v1', '', '', '2026-06-17 11:07:44', '2026-06-17 11:07:44', '', 543, 'https://mrarif.me/optimalmentalwellness/?p=555', 0, 'revision', '', 0),
(556, 1, '2026-06-17 11:14:04', '2026-06-17 11:14:04', '<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Arizona&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Arizona\"\n					aria-label=\"Arizona\"\n			></iframe>\n							<h5>Arizona</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Washington&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Washington\"\n					aria-label=\"Washington\"\n			></iframe>\n							<h5>Washington</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=colorado&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"colorado\"\n					aria-label=\"colorado\"\n			></iframe>\n							<h5>Colorado</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=florida&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"florida\"\n					aria-label=\"florida\"\n			></iframe>\n							<h5>Florida</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Oregon&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Oregon\"\n					aria-label=\"Oregon\"\n			></iframe>\n							<h5>Oregon</h5>', 'Locations', '', 'publish', 'closed', 'closed', '', 'locations', '', '', '2026-06-17 11:35:08', '2026-06-17 11:35:08', '', 0, 'https://mrarif.me/optimalmentalwellness/?page_id=556', 0, 'page', '', 0),
(557, 1, '2026-06-17 11:14:04', '2026-06-17 11:14:04', '', 'Locations', '', 'inherit', 'closed', 'closed', '', '556-revision-v1', '', '', '2026-06-17 11:14:04', '2026-06-17 11:14:04', '', 556, 'https://mrarif.me/optimalmentalwellness/?p=557', 0, 'revision', '', 0),
(558, 1, '2026-06-17 11:16:01', '2026-06-17 11:14:20', ' ', '', '', 'publish', 'closed', 'closed', '', '558', '', '', '2026-06-17 11:16:01', '2026-06-17 11:16:01', '', 0, 'https://mrarif.me/optimalmentalwellness/?p=558', 7, 'nav_menu_item', '', 0),
(559, 1, '2026-06-17 11:15:14', '2026-06-17 11:15:14', '<ul>\n							<li>\n											<a href=\"mailto:info@optimalmentalwellness.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@optimalmentalwellness.org\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:9049017913\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										904-901-7913\n											</a>\n									</li>\n						</ul>\n																	<img width=\"878\" height=\"420\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Optimal-Mental-Health-And-Wellness-logo-a.png\" alt=\"\" />																					<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book Now\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2026-06-17 11:15:14', '2026-06-17 11:15:14', '', 48, 'https://mrarif.me/optimalmentalwellness/?p=559', 0, 'revision', '', 0),
(560, 1, '2026-06-17 11:15:49', '2026-06-17 11:15:49', '<ul>\n							<li>\n											<a href=\"mailto:info@optimalmentalwellness.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@optimalmentalwellness.org\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:9049017913\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										904-901-7913\n											</a>\n									</li>\n						</ul>\n																	<img width=\"878\" height=\"420\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Optimal-Mental-Health-And-Wellness-logo-a.png\" alt=\"\" />																					<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book Now\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2026-06-17 11:15:49', '2026-06-17 11:15:49', '', 48, 'https://mrarif.me/optimalmentalwellness/?p=560', 0, 'revision', '', 0),
(561, 1, '2026-06-17 11:16:22', '2026-06-17 11:16:22', '<ul>\n							<li>\n											<a href=\"mailto:info@optimalmentalwellness.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@optimalmentalwellness.org\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:9049017913\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										904-901-7913\n											</a>\n									</li>\n						</ul>\n																	<img width=\"878\" height=\"420\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Optimal-Mental-Health-And-Wellness-logo-a.png\" alt=\"\" />																					<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book Now\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2026-06-17 11:16:22', '2026-06-17 11:16:22', '', 48, 'https://mrarif.me/optimalmentalwellness/?p=561', 0, 'revision', '', 0),
(562, 1, '2026-06-17 11:17:47', '2026-06-17 11:17:47', '<ul>\n							<li>\n											<a href=\"mailto:info@optimalmentalwellness.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@optimalmentalwellness.org\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:9049017913\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										904-901-7913\n											</a>\n									</li>\n						</ul>\n																	<img width=\"878\" height=\"420\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Optimal-Mental-Health-And-Wellness-logo-a.png\" alt=\"\" />																					<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book Now\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2026-06-17 11:17:47', '2026-06-17 11:17:47', '', 48, 'https://mrarif.me/optimalmentalwellness/?p=562', 0, 'revision', '', 0),
(563, 1, '2026-06-17 11:21:13', '2026-06-17 11:21:13', '{{unknown}}', '', '', 'publish', 'closed', 'closed', '', 'c641bf0605660f5e44dae2c5f1900099', '', '', '2026-06-17 11:21:13', '2026-06-17 11:21:13', '', 0, 'https://mrarif.me/optimalmentalwellness/c641bf0605660f5e44dae2c5f1900099/', 0, 'oembed_cache', '', 0),
(564, 1, '2026-06-17 11:23:22', '2026-06-17 11:23:22', '', 'Locations', '', 'inherit', 'closed', 'closed', '', '556-revision-v1', '', '', '2026-06-17 11:23:22', '2026-06-17 11:23:22', '', 556, 'https://mrarif.me/optimalmentalwellness/?p=564', 0, 'revision', '', 0),
(565, 1, '2026-06-17 11:23:22', '2026-06-17 11:23:22', '', 'Locations', '', 'inherit', 'closed', 'closed', '', '556-revision-v1', '', '', '2026-06-17 11:23:22', '2026-06-17 11:23:22', '', 556, 'https://mrarif.me/optimalmentalwellness/?p=565', 0, 'revision', '', 0),
(566, 1, '2026-06-17 11:23:22', '2026-06-17 11:23:22', '<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Arizona&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Arizona\"\n					aria-label=\"Arizona\"\n			></iframe>\n							<h5>Arizona</h5>', 'Locations', '', 'inherit', 'closed', 'closed', '', '556-revision-v1', '', '', '2026-06-17 11:23:22', '2026-06-17 11:23:22', '', 556, 'https://mrarif.me/optimalmentalwellness/?p=566', 0, 'revision', '', 0),
(567, 1, '2026-06-17 11:31:08', '2026-06-17 11:31:08', '<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Arizona&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Arizona\"\n					aria-label=\"Arizona\"\n			></iframe>\n							<h5>Arizona</h5>', 'Locations', '', 'inherit', 'closed', 'closed', '', '556-revision-v1', '', '', '2026-06-17 11:31:08', '2026-06-17 11:31:08', '', 556, 'https://mrarif.me/optimalmentalwellness/?p=567', 0, 'revision', '', 0),
(568, 1, '2026-06-17 11:31:08', '2026-06-17 11:31:08', '<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Arizona&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Arizona\"\n					aria-label=\"Arizona\"\n			></iframe>\n							<h5>Arizona</h5>', 'Locations', '', 'inherit', 'closed', 'closed', '', '556-revision-v1', '', '', '2026-06-17 11:31:08', '2026-06-17 11:31:08', '', 556, 'https://mrarif.me/optimalmentalwellness/?p=568', 0, 'revision', '', 0),
(569, 1, '2026-06-17 11:31:08', '2026-06-17 11:31:08', '<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Arizona&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Arizona\"\n					aria-label=\"Arizona\"\n			></iframe>\n							<h5>Arizona</h5>', 'Locations', '', 'inherit', 'closed', 'closed', '', '556-revision-v1', '', '', '2026-06-17 11:31:08', '2026-06-17 11:31:08', '', 556, 'https://mrarif.me/optimalmentalwellness/?p=569', 0, 'revision', '', 0),
(570, 1, '2026-06-17 11:31:16', '2026-06-17 11:31:16', '<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Arizona&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Arizona\"\n					aria-label=\"Arizona\"\n			></iframe>\n							<h5>Arizona</h5>', 'Locations', '', 'inherit', 'closed', 'closed', '', '556-revision-v1', '', '', '2026-06-17 11:31:16', '2026-06-17 11:31:16', '', 556, 'https://mrarif.me/optimalmentalwellness/?p=570', 0, 'revision', '', 0),
(571, 1, '2026-06-17 11:31:16', '2026-06-17 11:31:16', '<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Arizona&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Arizona\"\n					aria-label=\"Arizona\"\n			></iframe>\n							<h5>Arizona</h5>', 'Locations', '', 'inherit', 'closed', 'closed', '', '556-revision-v1', '', '', '2026-06-17 11:31:16', '2026-06-17 11:31:16', '', 556, 'https://mrarif.me/optimalmentalwellness/?p=571', 0, 'revision', '', 0),
(572, 1, '2026-06-17 11:31:16', '2026-06-17 11:31:16', '<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Arizona&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Arizona\"\n					aria-label=\"Arizona\"\n			></iframe>\n							<h5>Arizona</h5>', 'Locations', '', 'inherit', 'closed', 'closed', '', '556-revision-v1', '', '', '2026-06-17 11:31:16', '2026-06-17 11:31:16', '', 556, 'https://mrarif.me/optimalmentalwellness/?p=572', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(573, 1, '2026-06-17 11:31:55', '2026-06-17 11:31:55', '<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Arizona&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Arizona\"\n					aria-label=\"Arizona\"\n			></iframe>\n							<h5>Arizona</h5>', 'Locations', '', 'inherit', 'closed', 'closed', '', '556-revision-v1', '', '', '2026-06-17 11:31:55', '2026-06-17 11:31:55', '', 556, 'https://mrarif.me/optimalmentalwellness/?p=573', 0, 'revision', '', 0),
(574, 1, '2026-06-17 11:31:56', '2026-06-17 11:31:56', '<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Arizona&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Arizona\"\n					aria-label=\"Arizona\"\n			></iframe>\n							<h5>Arizona</h5>', 'Locations', '', 'inherit', 'closed', 'closed', '', '556-revision-v1', '', '', '2026-06-17 11:31:56', '2026-06-17 11:31:56', '', 556, 'https://mrarif.me/optimalmentalwellness/?p=574', 0, 'revision', '', 0),
(575, 1, '2026-06-17 11:31:56', '2026-06-17 11:31:56', '<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Arizona&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Arizona\"\n					aria-label=\"Arizona\"\n			></iframe>\n							<h5>Arizona</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=washington&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"washington\"\n					aria-label=\"washington\"\n			></iframe>\n							<h5>Arizona</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Arizona&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Arizona\"\n					aria-label=\"Arizona\"\n			></iframe>\n							<h5>Arizona</h5>', 'Locations', '', 'inherit', 'closed', 'closed', '', '556-revision-v1', '', '', '2026-06-17 11:31:56', '2026-06-17 11:31:56', '', 556, 'https://mrarif.me/optimalmentalwellness/?p=575', 0, 'revision', '', 0),
(576, 1, '2026-06-17 11:32:43', '2026-06-17 11:32:43', '<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Arizona&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Arizona\"\n					aria-label=\"Arizona\"\n			></iframe>\n							<h5>Arizona</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=washington&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"washington\"\n					aria-label=\"washington\"\n			></iframe>\n							<h5>Arizona</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Arizona&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Arizona\"\n					aria-label=\"Arizona\"\n			></iframe>\n							<h5>Arizona</h5>', 'Locations', '', 'inherit', 'closed', 'closed', '', '556-revision-v1', '', '', '2026-06-17 11:32:43', '2026-06-17 11:32:43', '', 556, 'https://mrarif.me/optimalmentalwellness/?p=576', 0, 'revision', '', 0),
(577, 1, '2026-06-17 11:32:44', '2026-06-17 11:32:44', '<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Arizona&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Arizona\"\n					aria-label=\"Arizona\"\n			></iframe>\n							<h5>Arizona</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=washington&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"washington\"\n					aria-label=\"washington\"\n			></iframe>\n							<h5>Arizona</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Arizona&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Arizona\"\n					aria-label=\"Arizona\"\n			></iframe>\n							<h5>Arizona</h5>', 'Locations', '', 'inherit', 'closed', 'closed', '', '556-revision-v1', '', '', '2026-06-17 11:32:44', '2026-06-17 11:32:44', '', 556, 'https://mrarif.me/optimalmentalwellness/?p=577', 0, 'revision', '', 0),
(578, 1, '2026-06-17 11:32:44', '2026-06-17 11:32:44', '<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Arizona&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Arizona\"\n					aria-label=\"Arizona\"\n			></iframe>\n							<h5>Arizona</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=washington&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"washington\"\n					aria-label=\"washington\"\n			></iframe>\n							<h5>Washington</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Arizona&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Arizona\"\n					aria-label=\"Arizona\"\n			></iframe>\n							<h5>Arizona</h5>', 'Locations', '', 'inherit', 'closed', 'closed', '', '556-revision-v1', '', '', '2026-06-17 11:32:44', '2026-06-17 11:32:44', '', 556, 'https://mrarif.me/optimalmentalwellness/?p=578', 0, 'revision', '', 0),
(579, 1, '2026-06-17 11:32:52', '2026-06-17 11:32:52', '<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Arizona&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Arizona\"\n					aria-label=\"Arizona\"\n			></iframe>\n							<h5>Arizona</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=washington&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"washington\"\n					aria-label=\"washington\"\n			></iframe>\n							<h5>Washington</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Arizona&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Arizona\"\n					aria-label=\"Arizona\"\n			></iframe>\n							<h5>Arizona</h5>', 'Locations', '', 'inherit', 'closed', 'closed', '', '556-revision-v1', '', '', '2026-06-17 11:32:52', '2026-06-17 11:32:52', '', 556, 'https://mrarif.me/optimalmentalwellness/?p=579', 0, 'revision', '', 0),
(580, 1, '2026-06-17 11:32:52', '2026-06-17 11:32:52', '<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Arizona&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Arizona\"\n					aria-label=\"Arizona\"\n			></iframe>\n							<h5>Arizona</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=washington&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"washington\"\n					aria-label=\"washington\"\n			></iframe>\n							<h5>Washington</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Arizona&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Arizona\"\n					aria-label=\"Arizona\"\n			></iframe>\n							<h5>Arizona</h5>', 'Locations', '', 'inherit', 'closed', 'closed', '', '556-revision-v1', '', '', '2026-06-17 11:32:52', '2026-06-17 11:32:52', '', 556, 'https://mrarif.me/optimalmentalwellness/?p=580', 0, 'revision', '', 0),
(581, 1, '2026-06-17 11:32:53', '2026-06-17 11:32:53', '<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Arizona&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Arizona\"\n					aria-label=\"Arizona\"\n			></iframe>\n							<h5>Arizona</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Washington&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Washington\"\n					aria-label=\"Washington\"\n			></iframe>\n							<h5>Washington</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Arizona&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Arizona\"\n					aria-label=\"Arizona\"\n			></iframe>\n							<h5>Arizona</h5>', 'Locations', '', 'inherit', 'closed', 'closed', '', '556-revision-v1', '', '', '2026-06-17 11:32:53', '2026-06-17 11:32:53', '', 556, 'https://mrarif.me/optimalmentalwellness/?p=581', 0, 'revision', '', 0),
(582, 1, '2026-06-17 11:33:28', '2026-06-17 11:33:28', '<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Arizona&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Arizona\"\n					aria-label=\"Arizona\"\n			></iframe>\n							<h5>Arizona</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Washington&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Washington\"\n					aria-label=\"Washington\"\n			></iframe>\n							<h5>Washington</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Arizona&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Arizona\"\n					aria-label=\"Arizona\"\n			></iframe>\n							<h5>Arizona</h5>', 'Locations', '', 'inherit', 'closed', 'closed', '', '556-revision-v1', '', '', '2026-06-17 11:33:28', '2026-06-17 11:33:28', '', 556, 'https://mrarif.me/optimalmentalwellness/?p=582', 0, 'revision', '', 0),
(583, 1, '2026-06-17 11:33:28', '2026-06-17 11:33:28', '<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Arizona&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Arizona\"\n					aria-label=\"Arizona\"\n			></iframe>\n							<h5>Arizona</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Washington&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Washington\"\n					aria-label=\"Washington\"\n			></iframe>\n							<h5>Washington</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Arizona&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Arizona\"\n					aria-label=\"Arizona\"\n			></iframe>\n							<h5>Arizona</h5>', 'Locations', '', 'inherit', 'closed', 'closed', '', '556-revision-v1', '', '', '2026-06-17 11:33:28', '2026-06-17 11:33:28', '', 556, 'https://mrarif.me/optimalmentalwellness/?p=583', 0, 'revision', '', 0),
(584, 1, '2026-06-17 11:33:28', '2026-06-17 11:33:28', '<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Arizona&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Arizona\"\n					aria-label=\"Arizona\"\n			></iframe>\n							<h5>Arizona</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Washington&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Washington\"\n					aria-label=\"Washington\"\n			></iframe>\n							<h5>Washington</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=colorado&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"colorado\"\n					aria-label=\"colorado\"\n			></iframe>\n							<h5>Colorado</h5>', 'Locations', '', 'inherit', 'closed', 'closed', '', '556-revision-v1', '', '', '2026-06-17 11:33:28', '2026-06-17 11:33:28', '', 556, 'https://mrarif.me/optimalmentalwellness/?p=584', 0, 'revision', '', 0),
(585, 1, '2026-06-17 11:33:53', '2026-06-17 11:33:53', '<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Arizona&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Arizona\"\n					aria-label=\"Arizona\"\n			></iframe>\n							<h5>Arizona</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Washington&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Washington\"\n					aria-label=\"Washington\"\n			></iframe>\n							<h5>Washington</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=colorado&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"colorado\"\n					aria-label=\"colorado\"\n			></iframe>\n							<h5>Colorado</h5>', 'Locations', '', 'inherit', 'closed', 'closed', '', '556-revision-v1', '', '', '2026-06-17 11:33:53', '2026-06-17 11:33:53', '', 556, 'https://mrarif.me/optimalmentalwellness/?p=585', 0, 'revision', '', 0),
(586, 1, '2026-06-17 11:33:53', '2026-06-17 11:33:53', '<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Arizona&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Arizona\"\n					aria-label=\"Arizona\"\n			></iframe>\n							<h5>Arizona</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Washington&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Washington\"\n					aria-label=\"Washington\"\n			></iframe>\n							<h5>Washington</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=colorado&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"colorado\"\n					aria-label=\"colorado\"\n			></iframe>\n							<h5>Colorado</h5>', 'Locations', '', 'inherit', 'closed', 'closed', '', '556-revision-v1', '', '', '2026-06-17 11:33:53', '2026-06-17 11:33:53', '', 556, 'https://mrarif.me/optimalmentalwellness/?p=586', 0, 'revision', '', 0),
(587, 1, '2026-06-17 11:33:53', '2026-06-17 11:33:53', '<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Arizona&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Arizona\"\n					aria-label=\"Arizona\"\n			></iframe>\n							<h5>Arizona</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Washington&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Washington\"\n					aria-label=\"Washington\"\n			></iframe>\n							<h5>Washington</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=colorado&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"colorado\"\n					aria-label=\"colorado\"\n			></iframe>\n							<h5>Colorado</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=florida&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"florida\"\n					aria-label=\"florida\"\n			></iframe>\n							<h5>Florida</h5>', 'Locations', '', 'inherit', 'closed', 'closed', '', '556-revision-v1', '', '', '2026-06-17 11:33:53', '2026-06-17 11:33:53', '', 556, 'https://mrarif.me/optimalmentalwellness/?p=587', 0, 'revision', '', 0),
(588, 1, '2026-06-17 11:34:15', '2026-06-17 11:34:15', '<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Arizona&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Arizona\"\n					aria-label=\"Arizona\"\n			></iframe>\n							<h5>Arizona</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Washington&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Washington\"\n					aria-label=\"Washington\"\n			></iframe>\n							<h5>Washington</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=colorado&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"colorado\"\n					aria-label=\"colorado\"\n			></iframe>\n							<h5>Colorado</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=florida&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"florida\"\n					aria-label=\"florida\"\n			></iframe>\n							<h5>Florida</h5>', 'Locations', '', 'inherit', 'closed', 'closed', '', '556-revision-v1', '', '', '2026-06-17 11:34:15', '2026-06-17 11:34:15', '', 556, 'https://mrarif.me/optimalmentalwellness/?p=588', 0, 'revision', '', 0),
(589, 1, '2026-06-17 11:34:15', '2026-06-17 11:34:15', '<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Arizona&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Arizona\"\n					aria-label=\"Arizona\"\n			></iframe>\n							<h5>Arizona</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Washington&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Washington\"\n					aria-label=\"Washington\"\n			></iframe>\n							<h5>Washington</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=colorado&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"colorado\"\n					aria-label=\"colorado\"\n			></iframe>\n							<h5>Colorado</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=florida&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"florida\"\n					aria-label=\"florida\"\n			></iframe>\n							<h5>Florida</h5>', 'Locations', '', 'inherit', 'closed', 'closed', '', '556-revision-v1', '', '', '2026-06-17 11:34:15', '2026-06-17 11:34:15', '', 556, 'https://mrarif.me/optimalmentalwellness/?p=589', 0, 'revision', '', 0),
(590, 1, '2026-06-17 11:34:16', '2026-06-17 11:34:16', '<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Arizona&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Arizona\"\n					aria-label=\"Arizona\"\n			></iframe>\n							<h5>Arizona</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Washington&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Washington\"\n					aria-label=\"Washington\"\n			></iframe>\n							<h5>Washington</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=colorado&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"colorado\"\n					aria-label=\"colorado\"\n			></iframe>\n							<h5>Colorado</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=florida&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"florida\"\n					aria-label=\"florida\"\n			></iframe>\n							<h5>Florida</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Oregon&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Oregon\"\n					aria-label=\"Oregon\"\n			></iframe>\n							<h5>Oregon</h5>', 'Locations', '', 'inherit', 'closed', 'closed', '', '556-revision-v1', '', '', '2026-06-17 11:34:16', '2026-06-17 11:34:16', '', 556, 'https://mrarif.me/optimalmentalwellness/?p=590', 0, 'revision', '', 0),
(591, 1, '2026-06-17 11:34:49', '2026-06-17 11:34:49', '<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Arizona&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Arizona\"\n					aria-label=\"Arizona\"\n			></iframe>\n							<h5>Arizona</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Washington&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Washington\"\n					aria-label=\"Washington\"\n			></iframe>\n							<h5>Washington</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=colorado&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"colorado\"\n					aria-label=\"colorado\"\n			></iframe>\n							<h5>Colorado</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=florida&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"florida\"\n					aria-label=\"florida\"\n			></iframe>\n							<h5>Florida</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Oregon&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Oregon\"\n					aria-label=\"Oregon\"\n			></iframe>\n							<h5>Oregon</h5>', 'Locations', '', 'inherit', 'closed', 'closed', '', '556-revision-v1', '', '', '2026-06-17 11:34:49', '2026-06-17 11:34:49', '', 556, 'https://mrarif.me/optimalmentalwellness/?p=591', 0, 'revision', '', 0),
(592, 1, '2026-06-17 11:34:49', '2026-06-17 11:34:49', '<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Arizona&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Arizona\"\n					aria-label=\"Arizona\"\n			></iframe>\n							<h5>Arizona</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Washington&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Washington\"\n					aria-label=\"Washington\"\n			></iframe>\n							<h5>Washington</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=colorado&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"colorado\"\n					aria-label=\"colorado\"\n			></iframe>\n							<h5>Colorado</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=florida&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"florida\"\n					aria-label=\"florida\"\n			></iframe>\n							<h5>Florida</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Oregon&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Oregon\"\n					aria-label=\"Oregon\"\n			></iframe>\n							<h5>Oregon</h5>', 'Locations', '', 'inherit', 'closed', 'closed', '', '556-revision-v1', '', '', '2026-06-17 11:34:49', '2026-06-17 11:34:49', '', 556, 'https://mrarif.me/optimalmentalwellness/?p=592', 0, 'revision', '', 0),
(593, 1, '2026-06-17 11:34:49', '2026-06-17 11:34:49', '<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Arizona&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Arizona\"\n					aria-label=\"Arizona\"\n			></iframe>\n							<h5>Arizona</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Washington&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Washington\"\n					aria-label=\"Washington\"\n			></iframe>\n							<h5>Washington</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=colorado&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"colorado\"\n					aria-label=\"colorado\"\n			></iframe>\n							<h5>Colorado</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=florida&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"florida\"\n					aria-label=\"florida\"\n			></iframe>\n							<h5>Florida</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Oregon&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Oregon\"\n					aria-label=\"Oregon\"\n			></iframe>\n							<h5>Oregon</h5>', 'Locations', '', 'inherit', 'closed', 'closed', '', '556-revision-v1', '', '', '2026-06-17 11:34:49', '2026-06-17 11:34:49', '', 556, 'https://mrarif.me/optimalmentalwellness/?p=593', 0, 'revision', '', 0),
(594, 1, '2026-06-17 11:34:59', '2026-06-17 11:34:59', '<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Arizona&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Arizona\"\n					aria-label=\"Arizona\"\n			></iframe>\n							<h5>Arizona</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Washington&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Washington\"\n					aria-label=\"Washington\"\n			></iframe>\n							<h5>Washington</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=colorado&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"colorado\"\n					aria-label=\"colorado\"\n			></iframe>\n							<h5>Colorado</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=florida&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"florida\"\n					aria-label=\"florida\"\n			></iframe>\n							<h5>Florida</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Oregon&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Oregon\"\n					aria-label=\"Oregon\"\n			></iframe>\n							<h5>Oregon</h5>', 'Locations', '', 'inherit', 'closed', 'closed', '', '556-revision-v1', '', '', '2026-06-17 11:34:59', '2026-06-17 11:34:59', '', 556, 'https://mrarif.me/optimalmentalwellness/?p=594', 0, 'revision', '', 0),
(595, 1, '2026-06-17 11:34:59', '2026-06-17 11:34:59', '<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Arizona&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Arizona\"\n					aria-label=\"Arizona\"\n			></iframe>\n							<h5>Arizona</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Washington&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Washington\"\n					aria-label=\"Washington\"\n			></iframe>\n							<h5>Washington</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=colorado&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"colorado\"\n					aria-label=\"colorado\"\n			></iframe>\n							<h5>Colorado</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=florida&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"florida\"\n					aria-label=\"florida\"\n			></iframe>\n							<h5>Florida</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Oregon&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Oregon\"\n					aria-label=\"Oregon\"\n			></iframe>\n							<h5>Oregon</h5>', 'Locations', '', 'inherit', 'closed', 'closed', '', '556-revision-v1', '', '', '2026-06-17 11:34:59', '2026-06-17 11:34:59', '', 556, 'https://mrarif.me/optimalmentalwellness/?p=595', 0, 'revision', '', 0),
(596, 1, '2026-06-17 11:35:00', '2026-06-17 11:35:00', '<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Arizona&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Arizona\"\n					aria-label=\"Arizona\"\n			></iframe>\n							<h5>Arizona</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Washington&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Washington\"\n					aria-label=\"Washington\"\n			></iframe>\n							<h5>Washington</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=colorado&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"colorado\"\n					aria-label=\"colorado\"\n			></iframe>\n							<h5>Colorado</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=florida&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"florida\"\n					aria-label=\"florida\"\n			></iframe>\n							<h5>Florida</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Oregon&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Oregon\"\n					aria-label=\"Oregon\"\n			></iframe>\n							<h5>Oregon</h5>', 'Locations', '', 'inherit', 'closed', 'closed', '', '556-revision-v1', '', '', '2026-06-17 11:35:00', '2026-06-17 11:35:00', '', 556, 'https://mrarif.me/optimalmentalwellness/?p=596', 0, 'revision', '', 0),
(597, 1, '2026-06-17 11:35:07', '2026-06-17 11:35:07', '<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Arizona&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Arizona\"\n					aria-label=\"Arizona\"\n			></iframe>\n							<h5>Arizona</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Washington&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Washington\"\n					aria-label=\"Washington\"\n			></iframe>\n							<h5>Washington</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=colorado&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"colorado\"\n					aria-label=\"colorado\"\n			></iframe>\n							<h5>Colorado</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=florida&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"florida\"\n					aria-label=\"florida\"\n			></iframe>\n							<h5>Florida</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Oregon&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Oregon\"\n					aria-label=\"Oregon\"\n			></iframe>\n							<h5>Oregon</h5>', 'Locations', '', 'inherit', 'closed', 'closed', '', '556-revision-v1', '', '', '2026-06-17 11:35:07', '2026-06-17 11:35:07', '', 556, 'https://mrarif.me/optimalmentalwellness/?p=597', 0, 'revision', '', 0),
(598, 1, '2026-06-17 11:35:07', '2026-06-17 11:35:07', '<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Arizona&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Arizona\"\n					aria-label=\"Arizona\"\n			></iframe>\n							<h5>Arizona</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Washington&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Washington\"\n					aria-label=\"Washington\"\n			></iframe>\n							<h5>Washington</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=colorado&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"colorado\"\n					aria-label=\"colorado\"\n			></iframe>\n							<h5>Colorado</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=florida&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"florida\"\n					aria-label=\"florida\"\n			></iframe>\n							<h5>Florida</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Oregon&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Oregon\"\n					aria-label=\"Oregon\"\n			></iframe>\n							<h5>Oregon</h5>', 'Locations', '', 'inherit', 'closed', 'closed', '', '556-revision-v1', '', '', '2026-06-17 11:35:07', '2026-06-17 11:35:07', '', 556, 'https://mrarif.me/optimalmentalwellness/?p=598', 0, 'revision', '', 0),
(599, 1, '2026-06-17 11:35:08', '2026-06-17 11:35:08', '<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Arizona&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Arizona\"\n					aria-label=\"Arizona\"\n			></iframe>\n							<h5>Arizona</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Washington&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Washington\"\n					aria-label=\"Washington\"\n			></iframe>\n							<h5>Washington</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=colorado&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"colorado\"\n					aria-label=\"colorado\"\n			></iframe>\n							<h5>Colorado</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=florida&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"florida\"\n					aria-label=\"florida\"\n			></iframe>\n							<h5>Florida</h5>							\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Oregon&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Oregon\"\n					aria-label=\"Oregon\"\n			></iframe>\n							<h5>Oregon</h5>', 'Locations', '', 'inherit', 'closed', 'closed', '', '556-revision-v1', '', '', '2026-06-17 11:35:08', '2026-06-17 11:35:08', '', 556, 'https://mrarif.me/optimalmentalwellness/?p=599', 0, 'revision', '', 0),
(600, 1, '2026-06-17 11:38:47', '2026-06-17 11:38:47', '', 'Bipolar-Disorder-Management-av.jpg', '', 'inherit', 'closed', 'closed', '', 'bipolar-disorder-management-av-jpg', '', '', '2026-06-17 11:38:47', '2026-06-17 11:38:47', '', 0, 'https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Bipolar-Disorder-Management-av.jpg', 0, 'attachment', 'image/jpeg', 0),
(601, 1, '2026-06-17 11:40:26', '2026-06-17 11:40:26', '', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-06-17 11:40:26', '2026-06-17 11:40:26', '', 20, 'https://mrarif.me/optimalmentalwellness/?p=601', 0, 'revision', '', 0),
(602, 1, '2026-06-17 11:40:26', '2026-06-17 11:40:26', '', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-06-17 11:40:26', '2026-06-17 11:40:26', '', 20, 'https://mrarif.me/optimalmentalwellness/?p=602', 0, 'revision', '', 0),
(603, 1, '2026-06-17 11:40:26', '2026-06-17 11:40:26', '<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						05:30 AM - 08:30 PM					\n							Sat - Sun						\n										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>							\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										<a href=\"https://mrarif.me/serenesoundwellness/book-and-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-06-17 11:40:26', '2026-06-17 11:40:26', '', 20, 'https://mrarif.me/optimalmentalwellness/?p=603', 0, 'revision', '', 0),
(604, 1, '2026-06-17 11:40:52', '2026-06-17 11:40:52', '<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						05:30 AM - 08:30 PM					\n							Sat - Sun						\n										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>							\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										<a href=\"https://mrarif.me/serenesoundwellness/book-and-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-06-17 11:40:52', '2026-06-17 11:40:52', '', 20, 'https://mrarif.me/optimalmentalwellness/?p=604', 0, 'revision', '', 0),
(605, 1, '2026-06-17 11:40:52', '2026-06-17 11:40:52', '<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						05:30 AM - 08:30 PM					\n							Sat - Sun						\n										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>							\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										<a href=\"https://mrarif.me/serenesoundwellness/book-and-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-06-17 11:40:52', '2026-06-17 11:40:52', '', 20, 'https://mrarif.me/optimalmentalwellness/?p=605', 0, 'revision', '', 0),
(615, 1, '2026-06-17 11:41:51', '2026-06-17 11:41:51', '<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						05:30 AM - 08:30 PM					\n							Sat - Sun						\n										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-06-17 11:41:51', '2026-06-17 11:41:51', '', 20, 'https://mrarif.me/optimalmentalwellness/?p=615', 0, 'revision', '', 0),
(606, 1, '2026-06-17 11:40:53', '2026-06-17 11:40:53', '<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						05:30 AM - 08:30 PM					\n							Sat - Sun						\n										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>							\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										<a href=\"https://mrarif.me/serenesoundwellness/book-and-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-06-17 11:40:53', '2026-06-17 11:40:53', '', 20, 'https://mrarif.me/optimalmentalwellness/?p=606', 0, 'revision', '', 0),
(607, 1, '2026-06-17 11:41:21', '2026-06-17 11:41:21', '<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						05:30 AM - 08:30 PM					\n							Sat - Sun						\n										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>							\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										<a href=\"https://mrarif.me/serenesoundwellness/book-and-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-06-17 11:41:21', '2026-06-17 11:41:21', '', 20, 'https://mrarif.me/optimalmentalwellness/?p=607', 0, 'revision', '', 0),
(608, 1, '2026-06-17 11:41:21', '2026-06-17 11:41:21', '<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						05:30 AM - 08:30 PM					\n							Sat - Sun						\n										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>							\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										<a href=\"https://mrarif.me/serenesoundwellness/book-and-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-06-17 11:41:21', '2026-06-17 11:41:21', '', 20, 'https://mrarif.me/optimalmentalwellness/?p=608', 0, 'revision', '', 0),
(609, 1, '2026-06-17 11:41:21', '2026-06-17 11:41:21', '<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						05:30 AM - 08:30 PM					\n							Sat - Sun						\n										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>							\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										<a href=\"https://mrarif.me/serenesoundwellness/book-and-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-06-17 11:41:21', '2026-06-17 11:41:21', '', 20, 'https://mrarif.me/optimalmentalwellness/?p=609', 0, 'revision', '', 0),
(610, 1, '2026-06-17 11:41:29', '2026-06-17 11:41:29', '<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						05:30 AM - 08:30 PM					\n							Sat - Sun						\n										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>							\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										<a href=\"https://mrarif.me/serenesoundwellness/book-and-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-06-17 11:41:29', '2026-06-17 11:41:29', '', 20, 'https://mrarif.me/optimalmentalwellness/?p=610', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(611, 1, '2026-06-17 11:41:29', '2026-06-17 11:41:29', '<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						05:30 AM - 08:30 PM					\n							Sat - Sun						\n										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>							\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										<a href=\"https://mrarif.me/serenesoundwellness/book-and-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-06-17 11:41:29', '2026-06-17 11:41:29', '', 20, 'https://mrarif.me/optimalmentalwellness/?p=611', 0, 'revision', '', 0),
(612, 1, '2026-06-17 11:41:29', '2026-06-17 11:41:29', '<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						05:30 AM - 08:30 PM					\n							Sat - Sun						\n										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>							\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										<a href=\"https://mrarif.me/serenesoundwellness/book-and-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-06-17 11:41:29', '2026-06-17 11:41:29', '', 20, 'https://mrarif.me/optimalmentalwellness/?p=612', 0, 'revision', '', 0),
(613, 1, '2026-06-17 11:41:50', '2026-06-17 11:41:50', '<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						05:30 AM - 08:30 PM					\n							Sat - Sun						\n										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>							\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										<a href=\"https://mrarif.me/serenesoundwellness/book-and-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-06-17 11:41:50', '2026-06-17 11:41:50', '', 20, 'https://mrarif.me/optimalmentalwellness/?p=613', 0, 'revision', '', 0),
(614, 1, '2026-06-17 11:41:50', '2026-06-17 11:41:50', '<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						05:30 AM - 08:30 PM					\n							Sat - Sun						\n										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>							\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										<a href=\"https://mrarif.me/serenesoundwellness/book-and-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-06-17 11:41:50', '2026-06-17 11:41:50', '', 20, 'https://mrarif.me/optimalmentalwellness/?p=614', 0, 'revision', '', 0),
(616, 1, '2026-06-17 11:44:00', '2026-06-17 11:44:00', '', 'mental contact a', '', 'inherit', 'closed', 'closed', '', 'mental-contact-a', '', '', '2026-06-17 11:44:00', '2026-06-17 11:44:00', '', 20, 'https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/mental-contact-a.jpg', 0, 'attachment', 'image/jpeg', 0),
(617, 1, '2026-06-17 11:44:49', '2026-06-17 11:44:49', '<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						05:30 AM - 08:30 PM					\n							Sat - Sun						\n										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-06-17 11:44:49', '2026-06-17 11:44:49', '', 20, 'https://mrarif.me/optimalmentalwellness/?p=617', 0, 'revision', '', 0),
(618, 1, '2026-06-17 11:44:50', '2026-06-17 11:44:50', '<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						05:30 AM - 08:30 PM					\n							Sat - Sun						\n										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-06-17 11:44:50', '2026-06-17 11:44:50', '', 20, 'https://mrarif.me/optimalmentalwellness/?p=618', 0, 'revision', '', 0),
(619, 1, '2026-06-17 11:44:50', '2026-06-17 11:44:50', '<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						05:30 AM - 08:30 PM					\n							Sat - Sun						\n										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-06-17 11:44:50', '2026-06-17 11:44:50', '', 20, 'https://mrarif.me/optimalmentalwellness/?p=619', 0, 'revision', '', 0),
(620, 1, '2026-06-17 11:45:01', '2026-06-17 11:45:01', '<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						05:30 AM - 08:30 PM					\n							Sat - Sun						\n										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-06-17 11:45:01', '2026-06-17 11:45:01', '', 20, 'https://mrarif.me/optimalmentalwellness/?p=620', 0, 'revision', '', 0),
(621, 1, '2026-06-17 11:45:01', '2026-06-17 11:45:01', '<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						05:30 AM - 08:30 PM					\n							Sat - Sun						\n										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-06-17 11:45:01', '2026-06-17 11:45:01', '', 20, 'https://mrarif.me/optimalmentalwellness/?p=621', 0, 'revision', '', 0),
(622, 1, '2026-06-17 11:45:02', '2026-06-17 11:45:02', '<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						05:30 AM - 08:30 PM					\n							Sat - Sun						\n										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-06-17 11:45:02', '2026-06-17 11:45:02', '', 20, 'https://mrarif.me/optimalmentalwellness/?p=622', 0, 'revision', '', 0),
(623, 1, '2026-06-17 11:46:00', '2026-06-17 11:46:00', '<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						05:30 AM - 08:30 PM					\n							Sat - Sun						\n										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-06-17 11:46:00', '2026-06-17 11:46:00', '', 20, 'https://mrarif.me/optimalmentalwellness/?p=623', 0, 'revision', '', 0),
(624, 1, '2026-06-17 11:46:00', '2026-06-17 11:46:00', '<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						05:30 AM - 08:30 PM					\n							Sat - Sun						\n										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-06-17 11:46:00', '2026-06-17 11:46:00', '', 20, 'https://mrarif.me/optimalmentalwellness/?p=624', 0, 'revision', '', 0),
(625, 1, '2026-06-17 11:46:01', '2026-06-17 11:46:01', '<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						05:30 AM - 08:30 PM					\n							Sat - Sun						\n						09:00 AM - 05:00 PM					\n										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-06-17 11:46:01', '2026-06-17 11:46:01', '', 20, 'https://mrarif.me/optimalmentalwellness/?p=625', 0, 'revision', '', 0),
(626, 1, '2026-06-17 11:46:40', '2026-06-17 11:46:40', '<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						05:30 AM - 08:30 PM					\n							Sat - Sun						\n						09:00 AM - 05:00 PM					\n										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-06-17 11:46:40', '2026-06-17 11:46:40', '', 20, 'https://mrarif.me/optimalmentalwellness/?p=626', 0, 'revision', '', 0),
(627, 1, '2026-06-17 11:46:40', '2026-06-17 11:46:40', '<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						05:30 AM - 08:30 PM					\n							Sat - Sun						\n						09:00 AM - 05:00 PM					\n										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-06-17 11:46:40', '2026-06-17 11:46:40', '', 20, 'https://mrarif.me/optimalmentalwellness/?p=627', 0, 'revision', '', 0),
(628, 1, '2026-06-17 11:46:41', '2026-06-17 11:46:41', '<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						05:30 AM - 08:30 PM					\n							Sat - Sun						\n						09:00 AM - 05:00 PM					\n										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-06-17 11:46:41', '2026-06-17 11:46:41', '', 20, 'https://mrarif.me/optimalmentalwellness/?p=628', 0, 'revision', '', 0),
(629, 1, '2026-06-17 11:48:33', '2026-06-17 11:48:33', '<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						05:30 AM - 08:30 PM					\n							Sat - Sun						\n						09:00 AM - 05:00 PM					\n										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-06-17 11:48:33', '2026-06-17 11:48:33', '', 20, 'https://mrarif.me/optimalmentalwellness/?p=629', 0, 'revision', '', 0),
(630, 1, '2026-06-17 11:48:33', '2026-06-17 11:48:33', '<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						05:30 AM - 08:30 PM					\n							Sat - Sun						\n						09:00 AM - 05:00 PM					\n										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-06-17 11:48:33', '2026-06-17 11:48:33', '', 20, 'https://mrarif.me/optimalmentalwellness/?p=630', 0, 'revision', '', 0),
(631, 1, '2026-06-17 11:48:34', '2026-06-17 11:48:34', '<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						05:30 AM - 08:30 PM					\n							Sat - Sun						\n						09:00 AM - 05:00 PM					\n										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-06-17 11:48:34', '2026-06-17 11:48:34', '', 20, 'https://mrarif.me/optimalmentalwellness/?p=631', 0, 'revision', '', 0),
(632, 1, '2026-06-17 11:49:03', '2026-06-17 11:49:03', '<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						05:30 AM - 08:30 PM					\n							Sat - Sun						\n						09:00 AM - 05:00 PM					\n										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-06-17 11:49:03', '2026-06-17 11:49:03', '', 20, 'https://mrarif.me/optimalmentalwellness/?p=632', 0, 'revision', '', 0),
(633, 1, '2026-06-17 11:49:03', '2026-06-17 11:49:03', '<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						05:30 AM - 08:30 PM					\n							Sat - Sun						\n						09:00 AM - 05:00 PM					\n										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-06-17 11:49:03', '2026-06-17 11:49:03', '', 20, 'https://mrarif.me/optimalmentalwellness/?p=633', 0, 'revision', '', 0),
(634, 1, '2026-06-17 11:49:04', '2026-06-17 11:49:04', '<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						05:30 AM - 08:30 PM					\n							Sat - Sun						\n						09:00 AM - 05:00 PM					\n										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-06-17 11:49:04', '2026-06-17 11:49:04', '', 20, 'https://mrarif.me/optimalmentalwellness/?p=634', 0, 'revision', '', 0),
(635, 1, '2026-06-17 11:57:33', '2026-06-17 11:57:33', '', 'Book appointment', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-06-17 11:57:33', '2026-06-17 11:57:33', '', 18, 'https://mrarif.me/optimalmentalwellness/?p=635', 0, 'revision', '', 0),
(636, 1, '2026-06-17 11:57:33', '2026-06-17 11:57:33', '', 'Book appointment', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-06-17 11:57:33', '2026-06-17 11:57:33', '', 18, 'https://mrarif.me/optimalmentalwellness/?p=636', 0, 'revision', '', 0),
(638, 1, '2026-06-17 11:58:33', '2026-06-17 11:58:33', '<h2>Book an Appointment</h2>\r\n1\r\nService\r\n2\r\nDate &amp; Time\r\n3\r\nYour Info\r\n4\r\nConfirm\r\n<!-- Step 1: Service Selection -->\r\n<h3>Select a Service</h3>\r\nChoose the service you would like to book.\r\n\r\n🔍\r\n<input type=\"search\" placeholder=\"Search services…\" aria-label=\"Search services\" />\r\nLoading services…\r\n<!-- Step 2: Date & Time -->\r\n<h3>Choose Date &amp; Time</h3>\r\nSelect your preferred appointment date and time slot.\r\n<h4>Date</h4>\r\n<h4>Available Slots</h4>\r\nPlease select a date to see available slots.\r\n\r\n<!-- Step 3: Customer Form -->\r\n<h3>Your Information</h3>\r\nPlease fill in your details below.\r\n\r\nLoading form…\r\n<!-- Step 4: Summary -->\r\n<h3>Confirm Your Booking</h3>\r\nPlease review your booking details before confirming.\r\n\r\n<!-- Success Screen -->\r\n✅\r\n<h3>Booking Confirmed!</h3>\r\n<!-- Navigation -->\r\n<button style=\"display: none;\" type=\"button\">\r\n← Back </button>\r\n<button type=\"button\">\r\nNext →\r\n</button>\r\n<!-- Status messages -->', 'Book An Appointment', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-06-17 11:58:33', '2026-06-17 11:58:33', '', 18, 'https://mrarif.me/optimalmentalwellness/?p=638', 0, 'revision', '', 0),
(637, 1, '2026-06-17 11:57:34', '2026-06-17 11:57:34', '<h2>Book an Appointment</h2>\n							1\n							Service\n							2\n							Date &amp; Time\n							3\n							Your Info\n							4\n							Confirm\n			<!-- Step 1: Service Selection -->\n				<h3>\n					Select a Service				</h3>\n				<p>\n					Choose the service you would like to book.				</p>\n					🔍\n					<input type=\"search\"\n					       placeholder=\"Search services…\"\n					       aria-label=\"Search services\">\n						Loading services…					\n			<!-- Step 2: Date & Time -->\n				<h3>\n					Choose Date &amp; Time				</h3>\n				<p>\n					Select your preferred appointment date and time slot.				</p>\n						<h4>Date</h4>\n						<h4>Available Slots</h4>\n							<p>\n								Please select a date to see available slots.							</p>\n			<!-- Step 3: Customer Form -->\n				<h3>\n					Your Information				</h3>\n				<p>\n					Please fill in your details below.				</p>\n						Loading form…					\n			<!-- Step 4: Summary -->\n				<h3>\n					Confirm Your Booking				</h3>\n				<p>\n					Please review your booking details before confirming.				</p>\n			<!-- Success Screen -->\n				✅\n				<h3>\n					Booking Confirmed!				</h3>\n				<p></p>\n				<p></p>\n			<!-- Navigation -->\n				<button type=\"button\" style=\"display:none;\">\n					← Back				</button>\n				<button type=\"button\">\n					Next →\n				</button>\n			<!-- Status messages -->', 'Book appointment', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-06-17 11:57:34', '2026-06-17 11:57:34', '', 18, 'https://mrarif.me/optimalmentalwellness/?p=637', 0, 'revision', '', 0),
(639, 1, '2026-06-17 11:59:06', '2026-06-17 11:59:06', '<h2>Book an Appointment</h2>\r\n1\r\nService\r\n2\r\nDate &amp; Time\r\n3\r\nYour Info\r\n4\r\nConfirm\r\n<!-- Step 1: Service Selection -->\r\n<h3>Select a Service</h3>\r\nChoose the service you would like to book.\r\n\r\n🔍\r\n<input type=\"search\" placeholder=\"Search services…\" aria-label=\"Search services\" />\r\nLoading services…\r\n<!-- Step 2: Date & Time -->\r\n<h3>Choose Date &amp; Time</h3>\r\nSelect your preferred appointment date and time slot.\r\n<h4>Date</h4>\r\n<h4>Available Slots</h4>\r\nPlease select a date to see available slots.\r\n\r\n<!-- Step 3: Customer Form -->\r\n<h3>Your Information</h3>\r\nPlease fill in your details below.\r\n\r\nLoading form…\r\n<!-- Step 4: Summary -->\r\n<h3>Confirm Your Booking</h3>\r\nPlease review your booking details before confirming.\r\n\r\n<!-- Success Screen -->\r\n✅\r\n<h3>Booking Confirmed!</h3>\r\n<!-- Navigation -->\r\n<button style=\"display: none;\" type=\"button\">\r\n← Back </button>\r\n<button type=\"button\">\r\nNext →\r\n</button>\r\n<!-- Status messages -->', 'Book An Appointment', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-06-17 11:59:06', '2026-06-17 11:59:06', '', 18, 'https://mrarif.me/optimalmentalwellness/?p=639', 0, 'revision', '', 0),
(640, 1, '2026-06-17 11:59:06', '2026-06-17 11:59:06', '<h2>Book an Appointment</h2>\r\n1\r\nService\r\n2\r\nDate &amp; Time\r\n3\r\nYour Info\r\n4\r\nConfirm\r\n<!-- Step 1: Service Selection -->\r\n<h3>Select a Service</h3>\r\nChoose the service you would like to book.\r\n\r\n🔍\r\n<input type=\"search\" placeholder=\"Search services…\" aria-label=\"Search services\" />\r\nLoading services…\r\n<!-- Step 2: Date & Time -->\r\n<h3>Choose Date &amp; Time</h3>\r\nSelect your preferred appointment date and time slot.\r\n<h4>Date</h4>\r\n<h4>Available Slots</h4>\r\nPlease select a date to see available slots.\r\n\r\n<!-- Step 3: Customer Form -->\r\n<h3>Your Information</h3>\r\nPlease fill in your details below.\r\n\r\nLoading form…\r\n<!-- Step 4: Summary -->\r\n<h3>Confirm Your Booking</h3>\r\nPlease review your booking details before confirming.\r\n\r\n<!-- Success Screen -->\r\n✅\r\n<h3>Booking Confirmed!</h3>\r\n<!-- Navigation -->\r\n<button style=\"display: none;\" type=\"button\">\r\n← Back </button>\r\n<button type=\"button\">\r\nNext →\r\n</button>\r\n<!-- Status messages -->', 'Book appointment', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-06-17 11:59:06', '2026-06-17 11:59:06', '', 18, 'https://mrarif.me/optimalmentalwellness/?p=640', 0, 'revision', '', 0),
(662, 1, '2026-06-17 12:08:10', '2026-06-17 12:08:10', '<h2>Book an Appointment</h2>\n			<!-- Step 1: Service Selection -->\n				<h3>\n					Select a Service				</h3>\n				<p>\n					Choose the service you would like to book.				</p>\n						Loading services…					\n			<!-- Step 2: Date & Time -->\n				<h3>\n					Choose Date &amp; Time				</h3>\n				<p>\n					Select your preferred appointment date and time slot.				</p>\n						<h4>Date</h4>\n						<h4>Available Slots</h4>\n							<p>\n								Please select a date to see available slots.							</p>\n			<!-- Step 3: Customer Form -->\n				<h3>\n					Your Information				</h3>\n				<p>\n					Please fill in your details below.				</p>\n						Loading form…					\n			<!-- Step 4: Summary -->\n				<h3>\n					Confirm Your Booking				</h3>\n				<p>\n					Please review your booking details before confirming.				</p>\n			<!-- Success Screen -->\n				✅\n				<h3>\n					Booking Confirmed!				</h3>\n				<p></p>\n				<p></p>\n			<!-- Navigation -->\n				<button type=\"button\" style=\"display:none;\">\n					← Back				</button>\n				<button type=\"button\">\n					Next →\n				</button>\n			<!-- Status messages -->', 'Book appointment', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-06-17 12:08:10', '2026-06-17 12:08:10', '', 18, 'https://mrarif.me/optimalmentalwellness/?p=662', 0, 'revision', '', 0),
(650, 1, '2026-06-17 12:02:26', '2026-06-17 12:02:26', '<h2>Book an Appointment</h2>\n			<!-- Step 1: Service Selection -->\n				<h3>\n					Select a Service				</h3>\n				<p>\n					Choose the service you would like to book.				</p>\n					🔍\n					<input type=\"search\"\n					       placeholder=\"Search services…\"\n					       aria-label=\"Search services\">\n						Loading services…					\n			<!-- Step 2: Date & Time -->\n				<h3>\n					Choose Date &amp; Time				</h3>\n				<p>\n					Select your preferred appointment date and time slot.				</p>\n						<h4>Date</h4>\n						<h4>Available Slots</h4>\n							<p>\n								Please select a date to see available slots.							</p>\n			<!-- Step 3: Customer Form -->\n				<h3>\n					Your Information				</h3>\n				<p>\n					Please fill in your details below.				</p>\n						Loading form…					\n			<!-- Step 4: Summary -->\n				<h3>\n					Confirm Your Booking				</h3>\n				<p>\n					Please review your booking details before confirming.				</p>\n			<!-- Success Screen -->\n				✅\n				<h3>\n					Booking Confirmed!				</h3>\n				<p></p>\n				<p></p>\n			<!-- Navigation -->\n				<button type=\"button\" style=\"display:none;\">\n					← Back				</button>\n				<button type=\"button\">\n					Next →\n				</button>\n			<!-- Status messages -->', 'Book appointment', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-06-17 12:02:26', '2026-06-17 12:02:26', '', 18, 'https://mrarif.me/optimalmentalwellness/?p=650', 0, 'revision', '', 0),
(641, 1, '2026-06-17 11:59:07', '2026-06-17 11:59:07', '<h2>Book an Appointment</h2>\n							1\n							Service\n							2\n							Date &amp; Time\n							3\n							Your Info\n							4\n							Confirm\n			<!-- Step 1: Service Selection -->\n				<h3>\n					Select a Service				</h3>\n				<p>\n					Choose the service you would like to book.				</p>\n					🔍\n					<input type=\"search\"\n					       placeholder=\"Search services…\"\n					       aria-label=\"Search services\">\n						Loading services…					\n			<!-- Step 2: Date & Time -->\n				<h3>\n					Choose Date &amp; Time				</h3>\n				<p>\n					Select your preferred appointment date and time slot.				</p>\n						<h4>Date</h4>\n						<h4>Available Slots</h4>\n							<p>\n								Please select a date to see available slots.							</p>\n			<!-- Step 3: Customer Form -->\n				<h3>\n					Your Information				</h3>\n				<p>\n					Please fill in your details below.				</p>\n						Loading form…					\n			<!-- Step 4: Summary -->\n				<h3>\n					Confirm Your Booking				</h3>\n				<p>\n					Please review your booking details before confirming.				</p>\n			<!-- Success Screen -->\n				✅\n				<h3>\n					Booking Confirmed!				</h3>\n				<p></p>\n				<p></p>\n			<!-- Navigation -->\n				<button type=\"button\" style=\"display:none;\">\n					← Back				</button>\n				<button type=\"button\">\n					Next →\n				</button>\n			<!-- Status messages -->', 'Book appointment', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-06-17 11:59:07', '2026-06-17 11:59:07', '', 18, 'https://mrarif.me/optimalmentalwellness/?p=641', 0, 'revision', '', 0),
(642, 1, '2026-06-17 12:01:45', '2026-06-17 12:01:45', '<h2>Book an Appointment</h2>\n							1\n							Service\n							2\n							Date &amp; Time\n							3\n							Your Info\n							4\n							Confirm\n			<!-- Step 1: Service Selection -->\n				<h3>\n					Select a Service				</h3>\n				<p>\n					Choose the service you would like to book.				</p>\n					🔍\n					<input type=\"search\"\n					       placeholder=\"Search services…\"\n					       aria-label=\"Search services\">\n						Loading services…					\n			<!-- Step 2: Date & Time -->\n				<h3>\n					Choose Date &amp; Time				</h3>\n				<p>\n					Select your preferred appointment date and time slot.				</p>\n						<h4>Date</h4>\n						<h4>Available Slots</h4>\n							<p>\n								Please select a date to see available slots.							</p>\n			<!-- Step 3: Customer Form -->\n				<h3>\n					Your Information				</h3>\n				<p>\n					Please fill in your details below.				</p>\n						Loading form…					\n			<!-- Step 4: Summary -->\n				<h3>\n					Confirm Your Booking				</h3>\n				<p>\n					Please review your booking details before confirming.				</p>\n			<!-- Success Screen -->\n				✅\n				<h3>\n					Booking Confirmed!				</h3>\n				<p></p>\n				<p></p>\n			<!-- Navigation -->\n				<button type=\"button\" style=\"display:none;\">\n					← Back				</button>\n				<button type=\"button\">\n					Next →\n				</button>\n			<!-- Status messages -->', 'Book appointment', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-06-17 12:01:45', '2026-06-17 12:01:45', '', 18, 'https://mrarif.me/optimalmentalwellness/?p=642', 0, 'revision', '', 0),
(643, 1, '2026-06-17 12:01:45', '2026-06-17 12:01:45', '<h2>Book an Appointment</h2>\n							1\n							Service\n							2\n							Date &amp; Time\n							3\n							Your Info\n							4\n							Confirm\n			<!-- Step 1: Service Selection -->\n				<h3>\n					Select a Service				</h3>\n				<p>\n					Choose the service you would like to book.				</p>\n					🔍\n					<input type=\"search\"\n					       placeholder=\"Search services…\"\n					       aria-label=\"Search services\">\n						Loading services…					\n			<!-- Step 2: Date & Time -->\n				<h3>\n					Choose Date &amp; Time				</h3>\n				<p>\n					Select your preferred appointment date and time slot.				</p>\n						<h4>Date</h4>\n						<h4>Available Slots</h4>\n							<p>\n								Please select a date to see available slots.							</p>\n			<!-- Step 3: Customer Form -->\n				<h3>\n					Your Information				</h3>\n				<p>\n					Please fill in your details below.				</p>\n						Loading form…					\n			<!-- Step 4: Summary -->\n				<h3>\n					Confirm Your Booking				</h3>\n				<p>\n					Please review your booking details before confirming.				</p>\n			<!-- Success Screen -->\n				✅\n				<h3>\n					Booking Confirmed!				</h3>\n				<p></p>\n				<p></p>\n			<!-- Navigation -->\n				<button type=\"button\" style=\"display:none;\">\n					← Back				</button>\n				<button type=\"button\">\n					Next →\n				</button>\n			<!-- Status messages -->', 'Book appointment', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-06-17 12:01:45', '2026-06-17 12:01:45', '', 18, 'https://mrarif.me/optimalmentalwellness/?p=643', 0, 'revision', '', 0),
(644, 1, '2026-06-17 12:01:45', '2026-06-17 12:01:45', '<h2>Book an Appointment</h2>\n							1\n							Service\n							2\n							Date &amp; Time\n							3\n							Your Info\n							4\n							Confirm\n			<!-- Step 1: Service Selection -->\n				<h3>\n					Select a Service				</h3>\n				<p>\n					Choose the service you would like to book.				</p>\n					🔍\n					<input type=\"search\"\n					       placeholder=\"Search services…\"\n					       aria-label=\"Search services\">\n						Loading services…					\n			<!-- Step 2: Date & Time -->\n				<h3>\n					Choose Date &amp; Time				</h3>\n				<p>\n					Select your preferred appointment date and time slot.				</p>\n						<h4>Date</h4>\n						<h4>Available Slots</h4>\n							<p>\n								Please select a date to see available slots.							</p>\n			<!-- Step 3: Customer Form -->\n				<h3>\n					Your Information				</h3>\n				<p>\n					Please fill in your details below.				</p>\n						Loading form…					\n			<!-- Step 4: Summary -->\n				<h3>\n					Confirm Your Booking				</h3>\n				<p>\n					Please review your booking details before confirming.				</p>\n			<!-- Success Screen -->\n				✅\n				<h3>\n					Booking Confirmed!				</h3>\n				<p></p>\n				<p></p>\n			<!-- Navigation -->\n				<button type=\"button\" style=\"display:none;\">\n					← Back				</button>\n				<button type=\"button\">\n					Next →\n				</button>\n			<!-- Status messages -->', 'Book appointment', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-06-17 12:01:45', '2026-06-17 12:01:45', '', 18, 'https://mrarif.me/optimalmentalwellness/?p=644', 0, 'revision', '', 0),
(645, 1, '2026-06-17 12:01:56', '2026-06-17 12:01:56', '<h2>Book an Appointment</h2>\n							1\n							Service\n							2\n							Date &amp; Time\n							3\n							Your Info\n							4\n							Confirm\n			<!-- Step 1: Service Selection -->\n				<h3>\n					Select a Service				</h3>\n				<p>\n					Choose the service you would like to book.				</p>\n					🔍\n					<input type=\"search\"\n					       placeholder=\"Search services…\"\n					       aria-label=\"Search services\">\n						Loading services…					\n			<!-- Step 2: Date & Time -->\n				<h3>\n					Choose Date &amp; Time				</h3>\n				<p>\n					Select your preferred appointment date and time slot.				</p>\n						<h4>Date</h4>\n						<h4>Available Slots</h4>\n							<p>\n								Please select a date to see available slots.							</p>\n			<!-- Step 3: Customer Form -->\n				<h3>\n					Your Information				</h3>\n				<p>\n					Please fill in your details below.				</p>\n						Loading form…					\n			<!-- Step 4: Summary -->\n				<h3>\n					Confirm Your Booking				</h3>\n				<p>\n					Please review your booking details before confirming.				</p>\n			<!-- Success Screen -->\n				✅\n				<h3>\n					Booking Confirmed!				</h3>\n				<p></p>\n				<p></p>\n			<!-- Navigation -->\n				<button type=\"button\" style=\"display:none;\">\n					← Back				</button>\n				<button type=\"button\">\n					Next →\n				</button>\n			<!-- Status messages -->', 'Book appointment', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-06-17 12:01:56', '2026-06-17 12:01:56', '', 18, 'https://mrarif.me/optimalmentalwellness/?p=645', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(646, 1, '2026-06-17 12:01:57', '2026-06-17 12:01:57', '<h2>Book an Appointment</h2>\n							1\n							Service\n							2\n							Date &amp; Time\n							3\n							Your Info\n							4\n							Confirm\n			<!-- Step 1: Service Selection -->\n				<h3>\n					Select a Service				</h3>\n				<p>\n					Choose the service you would like to book.				</p>\n					🔍\n					<input type=\"search\"\n					       placeholder=\"Search services…\"\n					       aria-label=\"Search services\">\n						Loading services…					\n			<!-- Step 2: Date & Time -->\n				<h3>\n					Choose Date &amp; Time				</h3>\n				<p>\n					Select your preferred appointment date and time slot.				</p>\n						<h4>Date</h4>\n						<h4>Available Slots</h4>\n							<p>\n								Please select a date to see available slots.							</p>\n			<!-- Step 3: Customer Form -->\n				<h3>\n					Your Information				</h3>\n				<p>\n					Please fill in your details below.				</p>\n						Loading form…					\n			<!-- Step 4: Summary -->\n				<h3>\n					Confirm Your Booking				</h3>\n				<p>\n					Please review your booking details before confirming.				</p>\n			<!-- Success Screen -->\n				✅\n				<h3>\n					Booking Confirmed!				</h3>\n				<p></p>\n				<p></p>\n			<!-- Navigation -->\n				<button type=\"button\" style=\"display:none;\">\n					← Back				</button>\n				<button type=\"button\">\n					Next →\n				</button>\n			<!-- Status messages -->', 'Book appointment', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-06-17 12:01:57', '2026-06-17 12:01:57', '', 18, 'https://mrarif.me/optimalmentalwellness/?p=646', 0, 'revision', '', 0),
(647, 1, '2026-06-17 12:01:57', '2026-06-17 12:01:57', '<h2>Book an Appointment</h2>\n							1\n							Service\n							2\n							Date &amp; Time\n							3\n							Your Info\n							4\n							Confirm\n			<!-- Step 1: Service Selection -->\n				<h3>\n					Select a Service				</h3>\n				<p>\n					Choose the service you would like to book.				</p>\n					🔍\n					<input type=\"search\"\n					       placeholder=\"Search services…\"\n					       aria-label=\"Search services\">\n						Loading services…					\n			<!-- Step 2: Date & Time -->\n				<h3>\n					Choose Date &amp; Time				</h3>\n				<p>\n					Select your preferred appointment date and time slot.				</p>\n						<h4>Date</h4>\n						<h4>Available Slots</h4>\n							<p>\n								Please select a date to see available slots.							</p>\n			<!-- Step 3: Customer Form -->\n				<h3>\n					Your Information				</h3>\n				<p>\n					Please fill in your details below.				</p>\n						Loading form…					\n			<!-- Step 4: Summary -->\n				<h3>\n					Confirm Your Booking				</h3>\n				<p>\n					Please review your booking details before confirming.				</p>\n			<!-- Success Screen -->\n				✅\n				<h3>\n					Booking Confirmed!				</h3>\n				<p></p>\n				<p></p>\n			<!-- Navigation -->\n				<button type=\"button\" style=\"display:none;\">\n					← Back				</button>\n				<button type=\"button\">\n					Next →\n				</button>\n			<!-- Status messages -->', 'Book appointment', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-06-17 12:01:57', '2026-06-17 12:01:57', '', 18, 'https://mrarif.me/optimalmentalwellness/?p=647', 0, 'revision', '', 0),
(648, 1, '2026-06-17 12:02:25', '2026-06-17 12:02:25', '<h2>Book an Appointment</h2>\n							1\n							Service\n							2\n							Date &amp; Time\n							3\n							Your Info\n							4\n							Confirm\n			<!-- Step 1: Service Selection -->\n				<h3>\n					Select a Service				</h3>\n				<p>\n					Choose the service you would like to book.				</p>\n					🔍\n					<input type=\"search\"\n					       placeholder=\"Search services…\"\n					       aria-label=\"Search services\">\n						Loading services…					\n			<!-- Step 2: Date & Time -->\n				<h3>\n					Choose Date &amp; Time				</h3>\n				<p>\n					Select your preferred appointment date and time slot.				</p>\n						<h4>Date</h4>\n						<h4>Available Slots</h4>\n							<p>\n								Please select a date to see available slots.							</p>\n			<!-- Step 3: Customer Form -->\n				<h3>\n					Your Information				</h3>\n				<p>\n					Please fill in your details below.				</p>\n						Loading form…					\n			<!-- Step 4: Summary -->\n				<h3>\n					Confirm Your Booking				</h3>\n				<p>\n					Please review your booking details before confirming.				</p>\n			<!-- Success Screen -->\n				✅\n				<h3>\n					Booking Confirmed!				</h3>\n				<p></p>\n				<p></p>\n			<!-- Navigation -->\n				<button type=\"button\" style=\"display:none;\">\n					← Back				</button>\n				<button type=\"button\">\n					Next →\n				</button>\n			<!-- Status messages -->', 'Book appointment', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-06-17 12:02:25', '2026-06-17 12:02:25', '', 18, 'https://mrarif.me/optimalmentalwellness/?p=648', 0, 'revision', '', 0),
(649, 1, '2026-06-17 12:02:25', '2026-06-17 12:02:25', '<h2>Book an Appointment</h2>\n							1\n							Service\n							2\n							Date &amp; Time\n							3\n							Your Info\n							4\n							Confirm\n			<!-- Step 1: Service Selection -->\n				<h3>\n					Select a Service				</h3>\n				<p>\n					Choose the service you would like to book.				</p>\n					🔍\n					<input type=\"search\"\n					       placeholder=\"Search services…\"\n					       aria-label=\"Search services\">\n						Loading services…					\n			<!-- Step 2: Date & Time -->\n				<h3>\n					Choose Date &amp; Time				</h3>\n				<p>\n					Select your preferred appointment date and time slot.				</p>\n						<h4>Date</h4>\n						<h4>Available Slots</h4>\n							<p>\n								Please select a date to see available slots.							</p>\n			<!-- Step 3: Customer Form -->\n				<h3>\n					Your Information				</h3>\n				<p>\n					Please fill in your details below.				</p>\n						Loading form…					\n			<!-- Step 4: Summary -->\n				<h3>\n					Confirm Your Booking				</h3>\n				<p>\n					Please review your booking details before confirming.				</p>\n			<!-- Success Screen -->\n				✅\n				<h3>\n					Booking Confirmed!				</h3>\n				<p></p>\n				<p></p>\n			<!-- Navigation -->\n				<button type=\"button\" style=\"display:none;\">\n					← Back				</button>\n				<button type=\"button\">\n					Next →\n				</button>\n			<!-- Status messages -->', 'Book appointment', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-06-17 12:02:25', '2026-06-17 12:02:25', '', 18, 'https://mrarif.me/optimalmentalwellness/?p=649', 0, 'revision', '', 0),
(651, 1, '2026-06-17 12:02:50', '2026-06-17 12:02:50', '<h2>Book an Appointment</h2>\n			<!-- Step 1: Service Selection -->\n				<h3>\n					Select a Service				</h3>\n				<p>\n					Choose the service you would like to book.				</p>\n					🔍\n					<input type=\"search\"\n					       placeholder=\"Search services…\"\n					       aria-label=\"Search services\">\n						Loading services…					\n			<!-- Step 2: Date & Time -->\n				<h3>\n					Choose Date &amp; Time				</h3>\n				<p>\n					Select your preferred appointment date and time slot.				</p>\n						<h4>Date</h4>\n						<h4>Available Slots</h4>\n							<p>\n								Please select a date to see available slots.							</p>\n			<!-- Step 3: Customer Form -->\n				<h3>\n					Your Information				</h3>\n				<p>\n					Please fill in your details below.				</p>\n						Loading form…					\n			<!-- Step 4: Summary -->\n				<h3>\n					Confirm Your Booking				</h3>\n				<p>\n					Please review your booking details before confirming.				</p>\n			<!-- Success Screen -->\n				✅\n				<h3>\n					Booking Confirmed!				</h3>\n				<p></p>\n				<p></p>\n			<!-- Navigation -->\n				<button type=\"button\" style=\"display:none;\">\n					← Back				</button>\n				<button type=\"button\">\n					Next →\n				</button>\n			<!-- Status messages -->', 'Book appointment', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-06-17 12:02:50', '2026-06-17 12:02:50', '', 18, 'https://mrarif.me/optimalmentalwellness/?p=651', 0, 'revision', '', 0),
(652, 1, '2026-06-17 12:02:50', '2026-06-17 12:02:50', '<h2>Book an Appointment</h2>\n			<!-- Step 1: Service Selection -->\n				<h3>\n					Select a Service				</h3>\n				<p>\n					Choose the service you would like to book.				</p>\n					🔍\n					<input type=\"search\"\n					       placeholder=\"Search services…\"\n					       aria-label=\"Search services\">\n						Loading services…					\n			<!-- Step 2: Date & Time -->\n				<h3>\n					Choose Date &amp; Time				</h3>\n				<p>\n					Select your preferred appointment date and time slot.				</p>\n						<h4>Date</h4>\n						<h4>Available Slots</h4>\n							<p>\n								Please select a date to see available slots.							</p>\n			<!-- Step 3: Customer Form -->\n				<h3>\n					Your Information				</h3>\n				<p>\n					Please fill in your details below.				</p>\n						Loading form…					\n			<!-- Step 4: Summary -->\n				<h3>\n					Confirm Your Booking				</h3>\n				<p>\n					Please review your booking details before confirming.				</p>\n			<!-- Success Screen -->\n				✅\n				<h3>\n					Booking Confirmed!				</h3>\n				<p></p>\n				<p></p>\n			<!-- Navigation -->\n				<button type=\"button\" style=\"display:none;\">\n					← Back				</button>\n				<button type=\"button\">\n					Next →\n				</button>\n			<!-- Status messages -->', 'Book appointment', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-06-17 12:02:50', '2026-06-17 12:02:50', '', 18, 'https://mrarif.me/optimalmentalwellness/?p=652', 0, 'revision', '', 0),
(653, 1, '2026-06-17 12:02:50', '2026-06-17 12:02:50', '<h2>Book an Appointment</h2>\n			<!-- Step 1: Service Selection -->\n				<h3>\n					Select a Service				</h3>\n				<p>\n					Choose the service you would like to book.				</p>\n					🔍\n					<input type=\"search\"\n					       placeholder=\"Search services…\"\n					       aria-label=\"Search services\">\n						Loading services…					\n			<!-- Step 2: Date & Time -->\n				<h3>\n					Choose Date &amp; Time				</h3>\n				<p>\n					Select your preferred appointment date and time slot.				</p>\n						<h4>Date</h4>\n						<h4>Available Slots</h4>\n							<p>\n								Please select a date to see available slots.							</p>\n			<!-- Step 3: Customer Form -->\n				<h3>\n					Your Information				</h3>\n				<p>\n					Please fill in your details below.				</p>\n						Loading form…					\n			<!-- Step 4: Summary -->\n				<h3>\n					Confirm Your Booking				</h3>\n				<p>\n					Please review your booking details before confirming.				</p>\n			<!-- Success Screen -->\n				✅\n				<h3>\n					Booking Confirmed!				</h3>\n				<p></p>\n				<p></p>\n			<!-- Navigation -->\n				<button type=\"button\" style=\"display:none;\">\n					← Back				</button>\n				<button type=\"button\">\n					Next →\n				</button>\n			<!-- Status messages -->', 'Book appointment', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-06-17 12:02:50', '2026-06-17 12:02:50', '', 18, 'https://mrarif.me/optimalmentalwellness/?p=653', 0, 'revision', '', 0),
(654, 1, '2026-06-17 12:03:08', '2026-06-17 12:03:08', '<h2>Book an Appointment</h2>\n			<!-- Step 1: Service Selection -->\n				<h3>\n					Select a Service				</h3>\n				<p>\n					Choose the service you would like to book.				</p>\n					🔍\n					<input type=\"search\"\n					       placeholder=\"Search services…\"\n					       aria-label=\"Search services\">\n						Loading services…					\n			<!-- Step 2: Date & Time -->\n				<h3>\n					Choose Date &amp; Time				</h3>\n				<p>\n					Select your preferred appointment date and time slot.				</p>\n						<h4>Date</h4>\n						<h4>Available Slots</h4>\n							<p>\n								Please select a date to see available slots.							</p>\n			<!-- Step 3: Customer Form -->\n				<h3>\n					Your Information				</h3>\n				<p>\n					Please fill in your details below.				</p>\n						Loading form…					\n			<!-- Step 4: Summary -->\n				<h3>\n					Confirm Your Booking				</h3>\n				<p>\n					Please review your booking details before confirming.				</p>\n			<!-- Success Screen -->\n				✅\n				<h3>\n					Booking Confirmed!				</h3>\n				<p></p>\n				<p></p>\n			<!-- Navigation -->\n				<button type=\"button\" style=\"display:none;\">\n					← Back				</button>\n				<button type=\"button\">\n					Next →\n				</button>\n			<!-- Status messages -->', 'Book appointment', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-06-17 12:03:08', '2026-06-17 12:03:08', '', 18, 'https://mrarif.me/optimalmentalwellness/?p=654', 0, 'revision', '', 0),
(655, 1, '2026-06-17 12:03:08', '2026-06-17 12:03:08', '<h2>Book an Appointment</h2>\n			<!-- Step 1: Service Selection -->\n				<h3>\n					Select a Service				</h3>\n				<p>\n					Choose the service you would like to book.				</p>\n					🔍\n					<input type=\"search\"\n					       placeholder=\"Search services…\"\n					       aria-label=\"Search services\">\n						Loading services…					\n			<!-- Step 2: Date & Time -->\n				<h3>\n					Choose Date &amp; Time				</h3>\n				<p>\n					Select your preferred appointment date and time slot.				</p>\n						<h4>Date</h4>\n						<h4>Available Slots</h4>\n							<p>\n								Please select a date to see available slots.							</p>\n			<!-- Step 3: Customer Form -->\n				<h3>\n					Your Information				</h3>\n				<p>\n					Please fill in your details below.				</p>\n						Loading form…					\n			<!-- Step 4: Summary -->\n				<h3>\n					Confirm Your Booking				</h3>\n				<p>\n					Please review your booking details before confirming.				</p>\n			<!-- Success Screen -->\n				✅\n				<h3>\n					Booking Confirmed!				</h3>\n				<p></p>\n				<p></p>\n			<!-- Navigation -->\n				<button type=\"button\" style=\"display:none;\">\n					← Back				</button>\n				<button type=\"button\">\n					Next →\n				</button>\n			<!-- Status messages -->', 'Book appointment', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-06-17 12:03:08', '2026-06-17 12:03:08', '', 18, 'https://mrarif.me/optimalmentalwellness/?p=655', 0, 'revision', '', 0),
(656, 1, '2026-06-17 12:03:09', '2026-06-17 12:03:09', '<h2>Book an Appointment</h2>\n			<!-- Step 1: Service Selection -->\n				<h3>\n					Select a Service				</h3>\n				<p>\n					Choose the service you would like to book.				</p>\n					🔍\n					<input type=\"search\"\n					       placeholder=\"Search services…\"\n					       aria-label=\"Search services\">\n						Loading services…					\n			<!-- Step 2: Date & Time -->\n				<h3>\n					Choose Date &amp; Time				</h3>\n				<p>\n					Select your preferred appointment date and time slot.				</p>\n						<h4>Date</h4>\n						<h4>Available Slots</h4>\n							<p>\n								Please select a date to see available slots.							</p>\n			<!-- Step 3: Customer Form -->\n				<h3>\n					Your Information				</h3>\n				<p>\n					Please fill in your details below.				</p>\n						Loading form…					\n			<!-- Step 4: Summary -->\n				<h3>\n					Confirm Your Booking				</h3>\n				<p>\n					Please review your booking details before confirming.				</p>\n			<!-- Success Screen -->\n				✅\n				<h3>\n					Booking Confirmed!				</h3>\n				<p></p>\n				<p></p>\n			<!-- Navigation -->\n				<button type=\"button\" style=\"display:none;\">\n					← Back				</button>\n				<button type=\"button\">\n					Next →\n				</button>\n			<!-- Status messages -->', 'Book appointment', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-06-17 12:03:09', '2026-06-17 12:03:09', '', 18, 'https://mrarif.me/optimalmentalwellness/?p=656', 0, 'revision', '', 0),
(657, 1, '2026-06-17 12:03:23', '2026-06-17 12:03:23', '<h2>Book an Appointment</h2>\n			<!-- Step 1: Service Selection -->\n				<h3>\n					Select a Service				</h3>\n				<p>\n					Choose the service you would like to book.				</p>\n					🔍\n					<input type=\"search\"\n					       placeholder=\"Search services…\"\n					       aria-label=\"Search services\">\n						Loading services…					\n			<!-- Step 2: Date & Time -->\n				<h3>\n					Choose Date &amp; Time				</h3>\n				<p>\n					Select your preferred appointment date and time slot.				</p>\n						<h4>Date</h4>\n						<h4>Available Slots</h4>\n							<p>\n								Please select a date to see available slots.							</p>\n			<!-- Step 3: Customer Form -->\n				<h3>\n					Your Information				</h3>\n				<p>\n					Please fill in your details below.				</p>\n						Loading form…					\n			<!-- Step 4: Summary -->\n				<h3>\n					Confirm Your Booking				</h3>\n				<p>\n					Please review your booking details before confirming.				</p>\n			<!-- Success Screen -->\n				✅\n				<h3>\n					Booking Confirmed!				</h3>\n				<p></p>\n				<p></p>\n			<!-- Navigation -->\n				<button type=\"button\" style=\"display:none;\">\n					← Back				</button>\n				<button type=\"button\">\n					Next →\n				</button>\n			<!-- Status messages -->', 'Book appointment', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-06-17 12:03:23', '2026-06-17 12:03:23', '', 18, 'https://mrarif.me/optimalmentalwellness/?p=657', 0, 'revision', '', 0),
(658, 1, '2026-06-17 12:03:23', '2026-06-17 12:03:23', '<h2>Book an Appointment</h2>\n			<!-- Step 1: Service Selection -->\n				<h3>\n					Select a Service				</h3>\n				<p>\n					Choose the service you would like to book.				</p>\n					🔍\n					<input type=\"search\"\n					       placeholder=\"Search services…\"\n					       aria-label=\"Search services\">\n						Loading services…					\n			<!-- Step 2: Date & Time -->\n				<h3>\n					Choose Date &amp; Time				</h3>\n				<p>\n					Select your preferred appointment date and time slot.				</p>\n						<h4>Date</h4>\n						<h4>Available Slots</h4>\n							<p>\n								Please select a date to see available slots.							</p>\n			<!-- Step 3: Customer Form -->\n				<h3>\n					Your Information				</h3>\n				<p>\n					Please fill in your details below.				</p>\n						Loading form…					\n			<!-- Step 4: Summary -->\n				<h3>\n					Confirm Your Booking				</h3>\n				<p>\n					Please review your booking details before confirming.				</p>\n			<!-- Success Screen -->\n				✅\n				<h3>\n					Booking Confirmed!				</h3>\n				<p></p>\n				<p></p>\n			<!-- Navigation -->\n				<button type=\"button\" style=\"display:none;\">\n					← Back				</button>\n				<button type=\"button\">\n					Next →\n				</button>\n			<!-- Status messages -->', 'Book appointment', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-06-17 12:03:23', '2026-06-17 12:03:23', '', 18, 'https://mrarif.me/optimalmentalwellness/?p=658', 0, 'revision', '', 0),
(659, 1, '2026-06-17 12:03:24', '2026-06-17 12:03:24', '<h2>Book an Appointment</h2>\n			<!-- Step 1: Service Selection -->\n				<h3>\n					Select a Service				</h3>\n				<p>\n					Choose the service you would like to book.				</p>\n					🔍\n					<input type=\"search\"\n					       placeholder=\"Search services…\"\n					       aria-label=\"Search services\">\n						Loading services…					\n			<!-- Step 2: Date & Time -->\n				<h3>\n					Choose Date &amp; Time				</h3>\n				<p>\n					Select your preferred appointment date and time slot.				</p>\n						<h4>Date</h4>\n						<h4>Available Slots</h4>\n							<p>\n								Please select a date to see available slots.							</p>\n			<!-- Step 3: Customer Form -->\n				<h3>\n					Your Information				</h3>\n				<p>\n					Please fill in your details below.				</p>\n						Loading form…					\n			<!-- Step 4: Summary -->\n				<h3>\n					Confirm Your Booking				</h3>\n				<p>\n					Please review your booking details before confirming.				</p>\n			<!-- Success Screen -->\n				✅\n				<h3>\n					Booking Confirmed!				</h3>\n				<p></p>\n				<p></p>\n			<!-- Navigation -->\n				<button type=\"button\" style=\"display:none;\">\n					← Back				</button>\n				<button type=\"button\">\n					Next →\n				</button>\n			<!-- Status messages -->', 'Book appointment', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-06-17 12:03:24', '2026-06-17 12:03:24', '', 18, 'https://mrarif.me/optimalmentalwellness/?p=659', 0, 'revision', '', 0),
(660, 1, '2026-06-17 12:08:10', '2026-06-17 12:08:10', '<h2>Book an Appointment</h2>\n			<!-- Step 1: Service Selection -->\n				<h3>\n					Select a Service				</h3>\n				<p>\n					Choose the service you would like to book.				</p>\n					🔍\n					<input type=\"search\"\n					       placeholder=\"Search services…\"\n					       aria-label=\"Search services\">\n						Loading services…					\n			<!-- Step 2: Date & Time -->\n				<h3>\n					Choose Date &amp; Time				</h3>\n				<p>\n					Select your preferred appointment date and time slot.				</p>\n						<h4>Date</h4>\n						<h4>Available Slots</h4>\n							<p>\n								Please select a date to see available slots.							</p>\n			<!-- Step 3: Customer Form -->\n				<h3>\n					Your Information				</h3>\n				<p>\n					Please fill in your details below.				</p>\n						Loading form…					\n			<!-- Step 4: Summary -->\n				<h3>\n					Confirm Your Booking				</h3>\n				<p>\n					Please review your booking details before confirming.				</p>\n			<!-- Success Screen -->\n				✅\n				<h3>\n					Booking Confirmed!				</h3>\n				<p></p>\n				<p></p>\n			<!-- Navigation -->\n				<button type=\"button\" style=\"display:none;\">\n					← Back				</button>\n				<button type=\"button\">\n					Next →\n				</button>\n			<!-- Status messages -->', 'Book appointment', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-06-17 12:08:10', '2026-06-17 12:08:10', '', 18, 'https://mrarif.me/optimalmentalwellness/?p=660', 0, 'revision', '', 0),
(661, 1, '2026-06-17 12:08:10', '2026-06-17 12:08:10', '<h2>Book an Appointment</h2>\n			<!-- Step 1: Service Selection -->\n				<h3>\n					Select a Service				</h3>\n				<p>\n					Choose the service you would like to book.				</p>\n					🔍\n					<input type=\"search\"\n					       placeholder=\"Search services…\"\n					       aria-label=\"Search services\">\n						Loading services…					\n			<!-- Step 2: Date & Time -->\n				<h3>\n					Choose Date &amp; Time				</h3>\n				<p>\n					Select your preferred appointment date and time slot.				</p>\n						<h4>Date</h4>\n						<h4>Available Slots</h4>\n							<p>\n								Please select a date to see available slots.							</p>\n			<!-- Step 3: Customer Form -->\n				<h3>\n					Your Information				</h3>\n				<p>\n					Please fill in your details below.				</p>\n						Loading form…					\n			<!-- Step 4: Summary -->\n				<h3>\n					Confirm Your Booking				</h3>\n				<p>\n					Please review your booking details before confirming.				</p>\n			<!-- Success Screen -->\n				✅\n				<h3>\n					Booking Confirmed!				</h3>\n				<p></p>\n				<p></p>\n			<!-- Navigation -->\n				<button type=\"button\" style=\"display:none;\">\n					← Back				</button>\n				<button type=\"button\">\n					Next →\n				</button>\n			<!-- Status messages -->', 'Book appointment', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-06-17 12:08:10', '2026-06-17 12:08:10', '', 18, 'https://mrarif.me/optimalmentalwellness/?p=661', 0, 'revision', '', 0),
(663, 1, '2026-06-17 12:45:57', '2026-06-17 12:45:57', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 12:45:57', '2026-06-17 12:45:57', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=663', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(664, 1, '2026-06-17 12:45:57', '2026-06-17 12:45:57', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 12:45:57', '2026-06-17 12:45:57', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=664', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(665, 1, '2026-06-17 12:45:58', '2026-06-17 12:45:58', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 12:45:58', '2026-06-17 12:45:58', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=665', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(666, 1, '2026-06-17 12:46:26', '2026-06-17 12:46:26', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 12:46:26', '2026-06-17 12:46:26', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=666', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(667, 1, '2026-06-17 12:46:26', '2026-06-17 12:46:26', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 12:46:26', '2026-06-17 12:46:26', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=667', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(668, 1, '2026-06-17 12:46:27', '2026-06-17 12:46:27', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 12:46:27', '2026-06-17 12:46:27', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=668', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(669, 1, '2026-06-17 12:46:47', '2026-06-17 12:46:47', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 12:46:47', '2026-06-17 12:46:47', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=669', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(670, 1, '2026-06-17 12:46:47', '2026-06-17 12:46:47', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 12:46:47', '2026-06-17 12:46:47', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=670', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(671, 1, '2026-06-17 12:46:48', '2026-06-17 12:46:48', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 12:46:48', '2026-06-17 12:46:48', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=671', 0, 'revision', '', 0),
(672, 1, '2026-06-17 12:49:02', '2026-06-17 12:49:02', '<ul>\n							<li>\n											<a href=\"mailto:info@optimalmentalwellness.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@optimalmentalwellness.org\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:9049017913\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										904-901-7913\n											</a>\n									</li>\n						</ul>\n																	<img width=\"878\" height=\"420\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Optimal-Mental-Health-And-Wellness-logo-a.png\" alt=\"\" />																					<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book Now\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2026-06-17 12:49:02', '2026-06-17 12:49:02', '', 48, 'https://mrarif.me/optimalmentalwellness/?p=672', 0, 'revision', '', 0),
(673, 1, '2026-06-17 12:50:59', '2026-06-17 12:50:59', '<ul>\n							<li>\n											<a href=\"mailto:info@optimalmentalwellness.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@optimalmentalwellness.org\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:9049017913\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										904-901-7913\n											</a>\n									</li>\n						</ul>\n																	<img width=\"878\" height=\"420\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Optimal-Mental-Health-And-Wellness-logo-a.png\" alt=\"\" />																					<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book Now\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2026-06-17 12:50:59', '2026-06-17 12:50:59', '', 48, 'https://mrarif.me/optimalmentalwellness/?p=673', 0, 'revision', '', 0),
(674, 1, '2026-06-17 12:51:11', '2026-06-17 12:51:11', '<ul>\n							<li>\n											<a href=\"mailto:info@optimalmentalwellness.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@optimalmentalwellness.org\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:9049017913\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										904-901-7913\n											</a>\n									</li>\n						</ul>\n																	<img width=\"878\" height=\"420\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Optimal-Mental-Health-And-Wellness-logo-a.png\" alt=\"\" />																					<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book Now\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2026-06-17 12:51:11', '2026-06-17 12:51:11', '', 48, 'https://mrarif.me/optimalmentalwellness/?p=674', 0, 'revision', '', 0),
(675, 1, '2026-06-17 12:51:40', '2026-06-17 12:51:40', '<ul>\n							<li>\n											<a href=\"mailto:info@optimalmentalwellness.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@optimalmentalwellness.org\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:9049017913\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										904-901-7913\n											</a>\n									</li>\n						</ul>\n																	<img width=\"878\" height=\"420\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Optimal-Mental-Health-And-Wellness-logo-a.png\" alt=\"\" />																					<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book Now\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2026-06-17 12:51:40', '2026-06-17 12:51:40', '', 48, 'https://mrarif.me/optimalmentalwellness/?p=675', 0, 'revision', '', 0),
(676, 1, '2026-06-17 12:52:16', '2026-06-17 12:52:16', '<ul>\n							<li>\n											<a href=\"mailto:info@optimalmentalwellness.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@optimalmentalwellness.org\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:9049017913\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										904-901-7913\n											</a>\n									</li>\n						</ul>\n																	<img width=\"878\" height=\"420\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Optimal-Mental-Health-And-Wellness-logo-a.png\" alt=\"\" />																					<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book Now\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2026-06-17 12:52:16', '2026-06-17 12:52:16', '', 48, 'https://mrarif.me/optimalmentalwellness/?p=676', 0, 'revision', '', 0),
(677, 1, '2026-06-17 13:01:04', '2026-06-17 13:01:04', '<ul>\n							<li>\n											<a href=\"mailto:info@optimalmentalwellness.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@optimalmentalwellness.org\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:9049017913\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										904-901-7913\n											</a>\n									</li>\n						</ul>\n																	<img width=\"878\" height=\"420\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Optimal-Mental-Health-And-Wellness-logo-a.png\" alt=\"\" />																					<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book Now\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2026-06-17 13:01:04', '2026-06-17 13:01:04', '', 48, 'https://mrarif.me/optimalmentalwellness/?p=677', 0, 'revision', '', 0),
(678, 1, '2026-06-17 13:02:19', '2026-06-17 13:02:19', '<ul>\n							<li>\n											<a href=\"mailto:info@optimalmentalwellness.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@optimalmentalwellness.org\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:9049017913\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										904-901-7913\n											</a>\n									</li>\n						</ul>\n																	<img width=\"878\" height=\"420\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Optimal-Mental-Health-And-Wellness-logo-a.png\" alt=\"\" />																					<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book Now\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2026-06-17 13:02:19', '2026-06-17 13:02:19', '', 48, 'https://mrarif.me/optimalmentalwellness/?p=678', 0, 'revision', '', 0),
(679, 1, '2026-06-17 13:11:58', '2026-06-17 13:11:58', '<ul>\n							<li>\n											<a href=\"mailto:info@optimalmentalwellness.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@optimalmentalwellness.org\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:9049017913\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										904-901-7913\n											</a>\n									</li>\n						</ul>\n																	<img width=\"878\" height=\"420\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Optimal-Mental-Health-And-Wellness-logo-a.png\" alt=\"\" />																					<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book Now\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2026-06-17 13:11:58', '2026-06-17 13:11:58', '', 48, 'https://mrarif.me/optimalmentalwellness/?p=679', 0, 'revision', '', 0),
(680, 1, '2026-06-17 13:12:29', '2026-06-17 13:12:29', '<ul>\n							<li>\n											<a href=\"mailto:info@optimalmentalwellness.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@optimalmentalwellness.org\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:9049017913\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										904-901-7913\n											</a>\n									</li>\n						</ul>\n																	<img width=\"878\" height=\"420\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Optimal-Mental-Health-And-Wellness-logo-a.png\" alt=\"\" />																					<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book Now\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2026-06-17 13:12:29', '2026-06-17 13:12:29', '', 48, 'https://mrarif.me/optimalmentalwellness/?p=680', 0, 'revision', '', 0),
(681, 1, '2026-06-17 13:13:10', '2026-06-17 13:13:10', '<ul>\n							<li>\n											<a href=\"mailto:info@optimalmentalwellness.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@optimalmentalwellness.org\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:9049017913\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										904-901-7913\n											</a>\n									</li>\n						</ul>\n																	<img width=\"878\" height=\"420\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Optimal-Mental-Health-And-Wellness-logo-a.png\" alt=\"\" />																					<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book Now\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2026-06-17 13:13:10', '2026-06-17 13:13:10', '', 48, 'https://mrarif.me/optimalmentalwellness/?p=681', 0, 'revision', '', 0),
(682, 1, '2026-06-17 13:13:23', '2026-06-17 13:13:23', '<ul>\n							<li>\n											<a href=\"mailto:info@optimalmentalwellness.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@optimalmentalwellness.org\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:9049017913\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										904-901-7913\n											</a>\n									</li>\n						</ul>\n																	<img width=\"878\" height=\"420\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Optimal-Mental-Health-And-Wellness-logo-a.png\" alt=\"\" />																					<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book Now\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2026-06-17 13:13:23', '2026-06-17 13:13:23', '', 48, 'https://mrarif.me/optimalmentalwellness/?p=682', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(683, 1, '2026-06-17 13:47:22', '2026-06-17 13:47:22', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 13:47:22', '2026-06-17 13:47:22', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=683', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-06-17 13:47:22', '2026-06-17 13:47:22', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 13:47:22', '2026-06-17 13:47:22', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=684', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(685, 1, '2026-06-17 13:47:22', '2026-06-17 13:47:22', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 13:47:22', '2026-06-17 13:47:22', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=685', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(686, 1, '2026-06-17 14:04:05', '2026-06-17 14:04:05', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 14:04:05', '2026-06-17 14:04:05', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=686', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(687, 1, '2026-06-17 14:04:05', '2026-06-17 14:04:05', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 14:04:05', '2026-06-17 14:04:05', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=687', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(688, 1, '2026-06-17 14:04:06', '2026-06-17 14:04:06', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 14:04:06', '2026-06-17 14:04:06', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=688', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(689, 1, '2026-06-17 14:04:16', '2026-06-17 14:04:16', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 14:04:16', '2026-06-17 14:04:16', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=689', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-06-17 14:04:17', '2026-06-17 14:04:17', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 14:04:17', '2026-06-17 14:04:17', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=690', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(691, 1, '2026-06-17 14:04:17', '2026-06-17 14:04:17', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 14:04:17', '2026-06-17 14:04:17', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=691', 0, 'revision', '', 0),
(692, 1, '2026-06-17 14:06:14', '2026-06-17 14:06:14', '<ul>\n							<li>\n											<a href=\"mailto:info@optimalmentalwellness.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@optimalmentalwellness.org\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:9049017913\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										904-901-7913\n											</a>\n									</li>\n						</ul>\n																	<img width=\"878\" height=\"420\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Optimal-Mental-Health-And-Wellness-logo-a.png\" alt=\"\" />																					<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book Now\n					</a>\n									<h2>Blog</h2>', 'Header', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2026-06-17 14:06:14', '2026-06-17 14:06:14', '', 48, 'https://mrarif.me/optimalmentalwellness/?p=692', 0, 'revision', '', 0),
(693, 1, '2026-06-17 14:06:49', '2026-06-17 14:06:49', '<ul>\n							<li>\n											<a href=\"mailto:info@optimalmentalwellness.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@optimalmentalwellness.org\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:9049017913\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										904-901-7913\n											</a>\n									</li>\n						</ul>\n																	<img width=\"878\" height=\"420\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Optimal-Mental-Health-And-Wellness-logo-a.png\" alt=\"\" />																					<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book Now\n					</a>\n									<h2>Blog</h2>', 'Header', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2026-06-17 14:06:49', '2026-06-17 14:06:49', '', 48, 'https://mrarif.me/optimalmentalwellness/?p=693', 0, 'revision', '', 0),
(694, 1, '2026-06-17 14:07:27', '2026-06-17 14:07:27', '<ul>\n							<li>\n											<a href=\"mailto:info@optimalmentalwellness.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@optimalmentalwellness.org\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:9049017913\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										904-901-7913\n											</a>\n									</li>\n						</ul>\n																	<img width=\"878\" height=\"420\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Optimal-Mental-Health-And-Wellness-logo-a.png\" alt=\"\" />																					<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book Now\n					</a>\n									<h2>Blog</h2>', 'Header', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2026-06-17 14:07:27', '2026-06-17 14:07:27', '', 48, 'https://mrarif.me/optimalmentalwellness/?p=694', 0, 'revision', '', 0),
(695, 1, '2026-06-17 14:08:48', '2026-06-17 14:08:48', '<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Elementor Archive #695', '', 'publish', 'closed', 'closed', '', 'elementor-archive-695', '', '', '2026-06-17 14:09:41', '2026-06-17 14:09:41', '', 0, 'https://mrarif.me/optimalmentalwellness/?post_type=elementor_library&#038;p=695', 0, 'elementor_library', '', 0),
(696, 1, '2026-06-17 14:08:48', '2026-06-17 14:08:48', '', 'Elementor Archive #695', '', 'inherit', 'closed', 'closed', '', '695-revision-v1', '', '', '2026-06-17 14:08:48', '2026-06-17 14:08:48', '', 695, 'https://mrarif.me/optimalmentalwellness/?p=696', 0, 'revision', '', 0),
(697, 1, '2026-06-17 14:09:41', '2026-06-17 14:09:41', '<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Elementor Archive #695', '', 'inherit', 'closed', 'closed', '', '695-revision-v1', '', '', '2026-06-17 14:09:41', '2026-06-17 14:09:41', '', 695, 'https://mrarif.me/optimalmentalwellness/?p=697', 0, 'revision', '', 0),
(701, 1, '2026-06-17 14:11:09', '2026-06-17 14:11:09', '', 'Elementor Single Post #701', '', 'publish', 'closed', 'closed', '', 'elementor-single-post-701', '', '', '2026-06-17 14:14:09', '2026-06-17 14:14:09', '', 0, 'https://mrarif.me/optimalmentalwellness/?post_type=elementor_library&#038;p=701', 0, 'elementor_library', '', 0),
(702, 1, '2026-06-17 14:11:09', '2026-06-17 14:11:09', '', 'Elementor Single Post #701', '', 'inherit', 'closed', 'closed', '', '701-revision-v1', '', '', '2026-06-17 14:11:09', '2026-06-17 14:11:09', '', 701, 'https://mrarif.me/optimalmentalwellness/?p=702', 0, 'revision', '', 0),
(703, 1, '2026-06-17 14:14:09', '2026-06-17 14:14:09', '', 'Elementor Single Post #701', '', 'inherit', 'closed', 'closed', '', '701-revision-v1', '', '', '2026-06-17 14:14:09', '2026-06-17 14:14:09', '', 701, 'https://mrarif.me/optimalmentalwellness/?p=703', 0, 'revision', '', 0),
(704, 1, '2026-06-17 14:27:18', '2026-06-17 14:27:18', '<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.', 'About Us', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-06-17 14:27:18', '2026-06-17 14:27:18', '', 31, 'https://mrarif.me/optimalmentalwellness/?p=704', 0, 'revision', '', 0),
(705, 1, '2026-06-17 14:27:18', '2026-06-17 14:27:18', '<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.', 'About Us', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-06-17 14:27:18', '2026-06-17 14:27:18', '', 31, 'https://mrarif.me/optimalmentalwellness/?p=705', 0, 'revision', '', 0),
(706, 1, '2026-06-17 14:27:19', '2026-06-17 14:27:19', '<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.', 'About Us', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-06-17 14:27:19', '2026-06-17 14:27:19', '', 31, 'https://mrarif.me/optimalmentalwellness/?p=706', 0, 'revision', '', 0),
(707, 1, '2026-06-17 14:28:04', '2026-06-17 14:28:04', '<img width=\"826\" height=\"1188\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/IMG_9815.jpg\" alt=\"\" />																<h2>Meet the Provider</h2>					<h5>Arlene Johnson</h5>		<p>Arlene Johnson is a distinguished board -certified Nurse Practitioner holding a Masters Degree in Nursing Practice. Arlene is licensed in the state of Florida,Washington,Arizona,and Colorado as a Psychiatric Mental Health Nurse Practitioner . She obtained her Bachelor’s degree and Master’s degree from Walden University.</p><p>Arlene\'s passion for mental health was ignited early on in her nursing career, and since then, being an advocate for those suffering from mental health conditions has been at the forefront. With well over a decade of experience in the healthcare field, ranging from treating acute to chronic conditions, Arlene believes in a comprehensive approach integrating both her Psychiatric and Medical background grounded in evidence-based practice to provide the highest quality of care. With her patient-centered care tailored to meet the needs of each individual patient, she not only fosters a caring therapeutic environment, but she also empowers her patients to become the best version of themselves.<br /><br />Her years of extensive healthcare experience and unparalleled insight has helped individuals cultivate a path towards a balanced and fulfilling life of mental wellness!</p>', 'Meet the Provider', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-06-17 14:28:04', '2026-06-17 14:28:04', '', 12, 'https://mrarif.me/optimalmentalwellness/?p=707', 0, 'revision', '', 0),
(708, 1, '2026-06-17 14:28:04', '2026-06-17 14:28:04', '<img width=\"826\" height=\"1188\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/IMG_9815.jpg\" alt=\"\" />																<h2>Meet the Provider</h2>					<h5>Arlene Johnson</h5>		<p>Arlene Johnson is a distinguished board -certified Nurse Practitioner holding a Masters Degree in Nursing Practice. Arlene is licensed in the state of Florida,Washington,Arizona,and Colorado as a Psychiatric Mental Health Nurse Practitioner . She obtained her Bachelor’s degree and Master’s degree from Walden University.</p><p>Arlene\'s passion for mental health was ignited early on in her nursing career, and since then, being an advocate for those suffering from mental health conditions has been at the forefront. With well over a decade of experience in the healthcare field, ranging from treating acute to chronic conditions, Arlene believes in a comprehensive approach integrating both her Psychiatric and Medical background grounded in evidence-based practice to provide the highest quality of care. With her patient-centered care tailored to meet the needs of each individual patient, she not only fosters a caring therapeutic environment, but she also empowers her patients to become the best version of themselves.<br /><br />Her years of extensive healthcare experience and unparalleled insight has helped individuals cultivate a path towards a balanced and fulfilling life of mental wellness!</p>', 'Meet the Provider', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-06-17 14:28:04', '2026-06-17 14:28:04', '', 12, 'https://mrarif.me/optimalmentalwellness/?p=708', 0, 'revision', '', 0),
(709, 1, '2026-06-17 14:28:04', '2026-06-17 14:28:04', '<img width=\"826\" height=\"1188\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/IMG_9815.jpg\" alt=\"\" />																<h2>Meet the Provider</h2>					<h5>Arlene Johnson</h5>		<p>Arlene Johnson is a distinguished board -certified Nurse Practitioner holding a Masters Degree in Nursing Practice. Arlene is licensed in the state of Florida,Washington,Arizona,and Colorado as a Psychiatric Mental Health Nurse Practitioner . She obtained her Bachelor’s degree and Master’s degree from Walden University.</p><p>Arlene\'s passion for mental health was ignited early on in her nursing career, and since then, being an advocate for those suffering from mental health conditions has been at the forefront. With well over a decade of experience in the healthcare field, ranging from treating acute to chronic conditions, Arlene believes in a comprehensive approach integrating both her Psychiatric and Medical background grounded in evidence-based practice to provide the highest quality of care. With her patient-centered care tailored to meet the needs of each individual patient, she not only fosters a caring therapeutic environment, but she also empowers her patients to become the best version of themselves.<br /><br />Her years of extensive healthcare experience and unparalleled insight has helped individuals cultivate a path towards a balanced and fulfilling life of mental wellness!</p>', 'Meet the Provider', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-06-17 14:28:04', '2026-06-17 14:28:04', '', 12, 'https://mrarif.me/optimalmentalwellness/?p=709', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(710, 1, '2026-06-17 14:29:17', '2026-06-17 14:29:17', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />																<h2>Psychotherapy</h2>		<ul style=\"margin-left: 18px;\">\n 	<li>Individual therapy</li>\n 	<li>Couples/marriage therapy</li>\n 	<li>Family therapy</li>\n 	<li>Child/teen therapy</li>\n 	<li>Online therapy</li>\n 	<li>COMMON SPECIALTIES &amp; approaches</li>\n 	<li>Anxiety therapy</li>\n 	<li>Cognitive behavioral therapy (CBT)</li>\n 	<li>Depression counseling</li>\n 	<li>Dialectical behavior therapy (DBT)</li>\n 	<li>Grief &amp; loss counseling</li>\n 	<li>Relational therapy</li>\n</ul>			<h3>Therapy can be highly beneficial for mental health for several reasons:</h3>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 64 64.1999969\" width=\"512\"><path d=\"m51.2529297 42.0226555c.6357422-.6357422.9863281-1.4804688.9863281-2.3808594 0-.8994141-.3500977-1.7441406-.9863281-2.3808594-1.3125-1.3125-3.4492188-1.3125-4.7617188 0l-9.3178711 9.3173828c-.7426758.7441406-1.1518555 1.7314453-1.1518555 2.7822266v11.6396484c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-5.109375l11.5913086-11.5917969c.1875-.1875.2929688-.4414062.2929688-.7070312v-11.5488281c0-2.0097656-1.6347656-3.6445312-3.6445312-3.6445312s-3.6450195 1.6347656-3.6450195 3.6445312v8.6582031l-4.2260742 4.2255859c-.1459961.1455078-.3828125.1435547-.527832 0-.1455078-.1455078-.1455078-.3818359 0-.5273438zm-3.7910156 4.3183594c.9243164.9248047 2.4306641.9267578 3.355957 0l4.519043-4.5185547c.1875-.1875.2929688-.4414062.2929688-.7070312v-9.0722656c0-.9072266.737793-1.6445312 1.6450195-1.6445312.9067383 0 1.6445312.7373047 1.6445312 1.6445312v11.1347656l-11.5913086 11.5917968c-.1875.1875-.2929688.4414062-.2929688.7070312v4.5234375h-9.0136719v-10.6396484c0-.5166016.2011719-1.0029297.5664062-1.3681641l9.3173828-9.3173828c.5332031-.5332031 1.4008789-.5332031 1.9331055 0 .2583008.2587891.4008789.6015625.4008789.9667969s-.1420898.7089844-.4003906.9667969l-2.3769531 2.3769531c-.9252929.9248047-.9252929 2.4306641.0000001 3.3554688z\"></path><path d=\"m6.7250977 28.398632c-2.0097656 0-3.6445312 1.6347656-3.6445312 3.6445312v11.5488281c0 .265625.1054688.5195312.2929688.7070312l11.5913086 11.5917969v5.109375c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-11.6396483c0-1.0507812-.4091797-2.0380859-1.1523438-2.7822266l-9.3173828-9.3173828c-1.3125-1.3125-3.4487305-1.3125-4.762207 0-.6357422.6367188-.9858398 1.4814453-.9858398 2.3808594 0 .9003906.3505859 1.7451172.9863281 2.3808594l2.3769531 2.3769531c.1455078.1455078.1455078.3818359 0 .5273438s-.3823242.1435547-.527832 0l-4.2260742-4.2255859v-8.6582031c-.0000002-2.0097657-1.6352541-3.6445314-3.6450197-3.6445314zm6.4570312 17.9423829c.925293.9267578 2.4316406.9257812 3.355957 0 .925293-.9248047.925293-2.4306641 0-3.3554688l-2.3769531-2.3769531c-.2583008-.2578125-.4003906-.6015625-.4003906-.9667969s.1425781-.7080078.4003906-.9667969c.5332031-.5332031 1.4003906-.5332031 1.9335938 0l9.3168945 9.3173828c.3657227.3652344.5668945.8515625.5668945 1.3681641v10.6396484h-9.0136719v-4.5234375c0-.265625-.1054688-.5195312-.2929688-.7070312l-11.5913085-11.5917969v-11.1347656c0-.9072266.737793-1.6445312 1.6445312-1.6445312.9072266 0 1.6450195.7373047 1.6450195 1.6445312v9.0722656c0 .265625.1054688.5195312.2929688.7070312z\"></path><path d=\"m32 2.0998046c-10.0986328 0-18.3144531 8.2158203-18.3144531 18.3144531s8.2158203 18.3144525 18.3144531 18.3144525 18.3144531-8.2158203 18.3144531-18.3144531-8.2158203-18.3144525-18.3144531-18.3144525zm0 2.0000003c7.614502 0 14.0088501 5.2510376 15.798584 12.3173819-3.1233521-2.2542105-8.8903809-3.70996-15.798584-3.70996s-12.6752319 1.4557495-15.798584 3.70996c1.7897339-7.0663443 8.184082-12.3173819 15.798584-12.3173819zm16.3144531 16.3144521c0 2.6992188-6.7001953 5.7070312-16.3144531 5.7070312s-16.3144531-3.0078125-16.3144531-5.7070312 6.7001953-5.7070302 16.3144531-5.7070302 16.3144531 3.0078115 16.3144531 5.7070302zm-16.3144531 16.3144532c-7.614502 0-14.0088501-5.2510376-15.798584-12.3173828 3.1233521 2.2542114 8.8903809 3.7099609 15.798584 3.7099609s12.6752319-1.4557495 15.798584-3.7099609c-1.7897339 7.0663452-8.184082 12.3173828-15.798584 12.3173828z\"></path></svg>							\n												<h5>\n													Safe Space												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"friendship-work\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><circle cx=\"72\" cy=\"102\" r=\"4\"></circle><circle cx=\"64\" cy=\"50\" r=\"4\"></circle><path d=\"m228 98h4v4c0 2.211 1.789 4 4 4s4-1.789 4-4v-4h4c2.211 0 4-1.789 4-4s-1.789-4-4-4h-4v-4c0-2.211-1.789-4-4-4s-4 1.789-4 4v4h-4c-2.211 0-4 1.789-4 4s1.789 4 4 4z\"></path><path d=\"m132 218h-16v-5.977c0-13.759-8.223-25.608-20-30.964v-35.059c0-.031-.017-.057-.018-.088 4.839-3.653 8.018-9.396 8.018-15.912 0-2.211-1.789-4-4-4h-30.707c-7.328 0-13.293 5.965-13.293 13.293v25.953c0 5.361 2.096 10.206 5.444 13.892-14.614 3.818-25.444 17.092-25.444 32.885v49.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-49.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v9.977c0 2.211 1.789 4 4 4h8v8h-20v-17.582c0-2.211-1.789-4-4-4s-4 1.789-4 4v21.582 24c0 2.211 1.789 4 4 4s4-1.789 4-4v-20h32c6.617 0 12-5.383 12-12s-5.383-12-12-12zm-68-78.707c0-2.918 2.375-5.293 5.293-5.293h26.023c-1.652 4.656-6.102 8-11.316 8h-20zm12.754 38.707c-7.031 0-12.754-5.723-12.754-12.754v-15.246h24v28zm55.246 56h-4v-8h4c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m56 210c-2.211 0-4 1.789-4 4v48c0 2.211 1.789 4 4 4s4-1.789 4-4v-48c0-2.211-1.789-4-4-4z\"></path><path d=\"m238.009 178.998c3.704-3.95 5.991-9.243 5.991-15.072v-9.926c0-11.027-8.973-20-20-20s-20 8.973-20 20v27.06c-11.777 5.355-20 17.205-20 30.964v45.976c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v45.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-15.99-11.1-29.402-25.991-33.025zm-26.009-.998v-24c0-6.617 5.383-12 12-12s12 5.383 12 12v9.926c0 7.762-6.312 14.074-14.074 14.074z\"></path><path d=\"m204 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m244 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m185.41 118.613c.102-.242.203-.488.301-.734 5.809-.832 10.289-5.844 10.289-11.879 0-1.206-.223-2.353-.555-3.452 10.229-11.777 15.466-22.512 15.466-31.899-.001-20.208-15.274-36.649-34.048-36.649-7.633 0-14.91 2.711-20.863 7.707-5.953-4.996-13.23-7.707-20.863-7.707-18.773 0-34.047 16.441-34.047 36.648 0 9.39 5.238 20.125 15.465 31.903-.333 1.098-.555 2.244-.555 3.449 0 6.035 4.48 11.047 10.289 11.879.098.246.199.488.301.73-3.516 4.699-3.141 11.406 1.125 15.672 4.27 4.27 10.98 4.633 15.672 1.129.242.102.488.203.734.301.832 5.809 5.844 10.289 11.879 10.289s11.047-4.48 11.879-10.289c.246-.098.492-.199.734-.301 4.688 3.504 11.398 3.141 15.672-1.129 4.262-4.261 4.641-10.965 1.125-15.668zm-50.273-76.613c6.707 0 13.09 2.82 17.965 7.945 1.516 1.586 4.281 1.586 5.797 0 4.874-5.125 11.257-7.945 17.964-7.945 14.363 0 26.047 12.852 26.047 28.648 0 6.991-4.298 15.714-12.379 25.343-1.433-.939-3.052-1.616-4.82-1.87-.098-.246-.199-.488-.301-.73 3.516-4.699 3.141-11.406-1.125-15.672-4.273-4.27-10.984-4.637-15.672-1.129-.242-.102-.488-.203-.734-.301-.832-5.809-5.844-10.289-11.879-10.289s-11.047 4.48-11.879 10.289c-.246.098-.492.199-.734.301-4.691-3.508-11.402-3.141-15.672 1.129-4.262 4.262-4.641 10.965-1.125 15.668-.102.242-.203.488-.301.734-1.769.253-3.387.931-4.821 1.87-8.079-9.625-12.378-18.35-12.378-25.343 0-15.796 11.683-28.648 26.047-28.648zm47.687 68c-1.77 0-3.328 1.16-3.832 2.855-.488 1.629-1.117 3.16-1.875 4.555-.848 1.562-.562 3.492.695 4.746l.812.812c1.562 1.559 1.562 4.098.004 5.656-1.562 1.566-4.098 1.559-5.66 0l-.82-.82c-1.254-1.254-3.18-1.535-4.73-.691-1.426.773-2.957 1.402-4.555 1.875-1.699.504-2.863 2.062-2.863 3.836v1.176c0 2.207-1.793 4-4 4s-4-1.793-4-4v-1.176c0-1.773-1.164-3.332-2.863-3.836-1.598-.473-3.129-1.102-4.555-1.875-.598-.324-1.254-.48-1.902-.48-1.035 0-2.059.402-2.828 1.172l-.82.82c-1.559 1.559-4.094 1.566-5.66 0-1.559-1.559-1.559-4.098-.008-5.648l.824-.82c1.258-1.254 1.543-3.184.695-4.746-.758-1.395-1.387-2.926-1.875-4.555-.504-1.695-2.062-2.855-3.832-2.855h-1.176c-2.207 0-4-1.793-4-4s1.793-4 4-4h1.176c1.77 0 3.328-1.16 3.832-2.855.488-1.629 1.117-3.16 1.875-4.555.848-1.562.562-3.492-.695-4.746l-.812-.812c-1.562-1.559-1.562-4.098-.004-5.656 1.57-1.562 4.105-1.559 5.66 0l.82.82c1.25 1.25 3.18 1.531 4.73.691 1.426-.773 2.957-1.402 4.555-1.875 1.699-.504 2.863-2.062 2.863-3.836v-1.177c0-2.207 1.793-4 4-4s4 1.793 4 4v1.176c0 1.773 1.164 3.332 2.863 3.836 1.598.473 3.129 1.102 4.555 1.875 1.555.844 3.48.562 4.73-.691l.82-.82c1.562-1.559 4.098-1.566 5.66 0 1.559 1.559 1.559 4.098.008 5.648l-.824.82c-1.258 1.254-1.543 3.184-.695 4.746.758 1.395 1.387 2.926 1.875 4.555.504 1.695 2.062 2.855 3.832 2.855h1.176c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m156 90c-8.824 0-16 7.176-16 16s7.176 16 16 16 16-7.176 16-16-7.176-16-16-16zm0 24c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path></g></svg>							\n												<h5>\n													Emotional Support												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m206.102 400.162c-46.373 0-92.751-17.652-128.056-52.957-34.207-34.208-53.046-79.687-53.046-128.061s18.839-93.853 53.046-128.06c70.615-70.615 185.512-70.605 256.117 0 70.614 70.614 70.614 185.507 0 256.121-35.305 35.305-81.683 52.957-128.061 52.957zm0-346.791c-42.47 0-84.94 16.167-117.271 48.498-64.665 64.666-64.665 169.885 0 234.551 64.666 64.666 169.891 64.661 234.547 0 31.328-31.328 48.578-72.978 48.578-117.276 0-44.297-17.25-85.947-48.578-117.275-32.33-32.331-74.801-48.498-117.276-48.498z\"></path><path d=\"m206.102 357.901c-37.063 0-71.905-14.435-98.109-40.643-54.098-54.1-54.098-142.128 0-196.227 54.1-54.1 142.124-54.09 196.223 0 54.1 54.099 54.1 142.128 0 196.227-26.208 26.208-61.051 40.643-98.114 40.643zm0-262.194c-31.626 0-63.25 12.036-87.324 36.109-48.151 48.156-48.151 126.502 0 174.657 23.323 23.328 54.338 36.174 87.324 36.174s64.001-12.845 87.329-36.174c48.151-48.156 48.151-126.502 0-174.657-24.078-24.073-55.703-36.109-87.329-36.109z\"></path><path d=\"m297.428 421.907c-8.813 0-17.618-3.352-24.326-10.061-2.978-2.978-2.978-7.805 0-10.785 2.98-2.98 7.806-2.98 10.786 0 7.468 7.468 19.619 7.468 27.087 0l77.045-77.05c3.615-3.62 5.606-8.427 5.606-13.54 0-5.115-1.991-9.921-5.606-13.541-2.979-2.98-2.979-7.805 0-10.785 2.98-2.979 7.806-2.979 10.785 0 13.412 13.412 13.412 35.241 0 48.652l-77.045 77.05c-6.709 6.707-15.523 10.06-24.332 10.06z\"></path><path d=\"m402.881 461.874c-12.275 0-23.809-4.783-32.489-13.462l-47.992-47.991c-2.979-2.98-2.979-7.805 0-10.785l54.194-54.193c2.979-2.979 7.805-2.979 10.785 0l47.992 47.991c8.679 8.68 13.461 20.215 13.461 32.49s-4.782 23.809-13.461 32.489c-8.68 8.679-20.216 13.461-32.49 13.461zm-64.303-66.846 42.599 42.599c11.967 11.967 31.442 11.967 43.408 0 11.968-11.968 11.968-31.442 0-43.408l-42.599-42.6z\"></path><path d=\"m467.373 461.874h-355.566c-4.211 0-7.627-3.417-7.627-7.628s3.416-7.627 7.627-7.627h355.566c4.211 0 7.627 3.416 7.627 7.627s-3.416 7.628-7.627 7.628z\"></path><path d=\"m401.258 421.926c-1.951 0-3.904-.744-5.392-2.234l-21.675-21.679c-2.98-2.979-2.98-7.806 0-10.786 2.979-2.979 7.805-2.979 10.785 0l21.675 21.68c2.98 2.979 2.98 7.805 0 10.785-1.491 1.489-3.442 2.234-5.393 2.234z\"></path><path d=\"m206.102 305.102c-.814 0-1.628-.129-2.413-.392-3.814-1.272-41.556-24.446-49.383-62.342-6.668-32.305 9.048-65.739 46.716-99.385 2.89-2.583 7.269-2.583 10.16 0 37.668 33.641 53.384 67.079 46.715 99.38-7.826 37.897-45.569 61.076-49.383 62.347-.783.263-1.598.392-2.412.392zm0-146.07c-27.603 26.133-40.27 51.358-37.674 75.049 3.138 28.626 28.11 47.967 37.674 54.392 9.564-6.426 34.541-25.762 37.679-54.392 2.597-23.691-10.075-48.916-37.679-75.049z\"></path><path d=\"m212.691 305.102c-3.48 0-5.675-.164-6.082-.198-2.652-.224-5.001-1.813-6.192-4.192-.029-.06-.243-.501-.268-.561-1.658-3.541-.373-7.757 2.979-9.768 10.835-6.515 63.212-41.869 30.112-98.402-1.073-1.832-1.331-4.027-.715-6.062.615-2.031 2.045-3.715 3.957-4.648 14.42-7.027 32.256-12.021 53.007-14.842 3.889-.571 7.478 1.927 8.427 5.685 11.51 45.499 7.364 80.353-12.324 103.586-22.525 26.577-58.58 29.402-72.901 29.402zm37.744-113.333c22.007 44.953-.696 78.336-19.848 96.52 13.933-2.384 31.348-8.268 43.364-22.45 15.403-18.178 19.019-46.169 10.775-83.267-12.915 2.146-24.4 5.225-34.291 9.197z\"></path><path d=\"m199.553 305.102c-14.291 0-50.42-2.82-72.944-29.416-19.678-23.233-23.824-58.082-12.314-103.571.948-3.758 4.509-6.256 8.422-5.685 20.756 2.821 38.592 7.816 53.012 14.842 1.912.933 3.342 2.617 3.958 4.648.615 2.035.358 4.23-.715 6.062-33.1 56.533 19.276 91.887 30.111 98.402 3.392 2.036 4.662 6.332 2.925 9.887-1.182 2.413-3.734 4.409-6.411 4.633-.408.035-2.589.198-6.044.198zm-72.07-122.529c-8.243 37.088-4.633 65.079 10.765 83.257 12.007 14.177 29.426 20.066 43.364 22.45-19.147-18.184-41.849-51.562-19.837-96.51-9.892-3.973-21.371-7.052-34.292-9.197z\"></path><path d=\"m205.154 304.547c-4.211 0-7.627-3.417-7.627-7.628v-71.533c0-4.211 3.416-7.627 7.627-7.627s7.628 3.416 7.628 7.627v71.533c-.001 4.211-3.417 7.628-7.628 7.628z\"></path></g></svg>							\n												<h5>\n													Self-Exploration												</h5>\n											<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m295.544 178.256a6.741 6.741 0 0 0 -3.689-3.623 6.718 6.718 0 0 0 -8.727 3.475c-.058.16-.123.319-.193.475a6.715 6.715 0 0 0 3.572 8.482q.238.087.473.192a6.789 6.789 0 0 0 8.569-9zm4.657-15.648a21.3 21.3 0 0 1 -18.927 38.018l-.027-.012a21.345 21.345 0 0 1 -11.856-27.305 7.1 7.1 0 0 1 .358-.879 21.238 21.238 0 0 1 11.277-11.14 21.465 21.465 0 0 1 4.89-1.409 108.471 108.471 0 0 1 110.169-79.395l-7.5-9.84a7.256 7.256 0 0 1 11.533-8.807l18.139 23.785a7.255 7.255 0 0 1 -1.364 10.17l-23.793 18.138a7.256 7.256 0 0 1 -8.8-11.532l9.821-7.488a94.123 94.123 0 0 0 -93.917 67.7zm-136.607 130.062c-1.181-.462-2.53-.937-4.2-1.439-1.749-.526-3.761-1.034-5.893-1.571-2.249-.568-4.622-1.167-6.887-1.817a81.221 81.221 0 0 1 -7.736-2.626 52.681 52.681 0 0 1 -7.96-3.915 57.093 57.093 0 0 1 -5.122-3.558 19.314 19.314 0 0 1 -2.1 3.175 29.979 29.979 0 0 1 -4.78 4.617c-1.583 1.254-3.581 2.64-5.787 4.091-1.069.7-2 1.305-2.835 1.842v15.331a30.06 30.06 0 0 0 7.975 20.595 25.087 25.087 0 0 0 37.345 0 30.056 30.056 0 0 0 7.976-20.595v-14.13zm-3.794 117.75q-.863.314-1.737.606a66.691 66.691 0 0 1 -42.171 0q-.874-.292-1.736-.606 8.1 16.046 22.822 31.483 14.722-15.438 22.822-31.483zm-44.516-66.689-1.446 6.36a26.013 26.013 0 0 1 -8.247 14.073q-.63.554-1.295 1.069a86.352 86.352 0 0 0 2.3 24.838 49.4 49.4 0 0 0 13.842 7.2 53.4 53.4 0 0 0 33.079 0 49.4 49.4 0 0 0 13.842-7.2 86.282 86.282 0 0 0 2.3-24.786q-.7-.539-1.362-1.121a26.01 26.01 0 0 1 -8.247-14.073l-1.446-6.36a39.133 39.133 0 0 1 -43.323 0zm102.131 19.247c21.553 5.007 34.482 13.526 35.172 45.641v.142h.028v79.966a7.273 7.273 0 0 1 -7.272 7.273h-216.795a7.273 7.273 0 0 1 -7.273-7.273v-79.966a7.309 7.309 0 0 1 .049-.842c.911-33.257 15.2-40.822 38.733-45.728.5-7.586 1.773-17.265 3.2-28.09 2.421-18.4 5.3-40.261 5.3-60.319a67.9 67.9 0 0 1 19.627-47.875 66.563 66.563 0 0 1 94.957 0 67.889 67.889 0 0 1 19.627 47.875c0 22.494 5.342 45.587 9.591 63.955 2.279 9.851 4.261 18.419 5.062 25.241zm-46.7-31.379a44.85 44.85 0 0 0 7.42-24.8v-18.92a7.275 7.275 0 0 0 -4.889-6.873c-1.2-.525-2.455-1.065-4.1-1.717-1.832-.726-3.692-1.4-5.606-1.978-2.014-.606-4.2-1.158-6.517-1.742-2.01-.507-4.13-1.042-6.433-1.7-2.252-.647-4.44-1.344-6.372-2.113a37.981 37.981 0 0 1 -5.745-2.837 66.527 66.527 0 0 1 -8.659-6.687c-.68-.593-.82-.722-1.072-.939l.012-.014a14.573 14.573 0 0 0 -4.812-3.1c-6.5-2.195-9.224.041-10.259 6.5a21.51 21.51 0 0 0 -.208 2.607 14.785 14.785 0 0 1 -.37 3.3 3.848 3.848 0 0 1 -.715 1.241 16.145 16.145 0 0 1 -2.507 2.344c-1.423 1.129-3.022 2.244-4.707 3.353-1.127.741-3.346 2.131-5.627 3.557a7.274 7.274 0 0 0 -3.8 6.392v19.327a44.847 44.847 0 0 0 7.42 24.8l-3.479 15.309a11.711 11.711 0 0 1 -3.7 6.345 18.2 18.2 0 0 1 -8.506 3.875c-3.592.726-8.189 1.542-12.649 2.326.575-6.608 1.632-14.641 2.8-23.479 2.5-19 5.467-41.557 5.467-62.194a53.45 53.45 0 0 1 15.423-37.7 52.155 52.155 0 0 1 74.275 0 53.45 53.45 0 0 1 15.423 37.7c0 24.013 5.564 48.064 9.989 67.193 1.675 7.243 3.177 13.738 4.1 19.051l-2.054-.362c-4.821-.846-9.929-1.744-13.842-2.535a18.2 18.2 0 0 1 -8.506-3.875 11.711 11.711 0 0 1 -3.7-6.345l-3.482-15.31zm-41.01 149.856h-45.614a7.289 7.289 0 0 0 -.715-1.2 26.958 26.958 0 0 1 -5.261-16.38q0-9.969 5.972-22.523a7.256 7.256 0 0 0 -13.125-6.193q-7.392 15.54-7.393 28.716a41.569 41.569 0 0 0 3.738 17.583h-31.487v-72.697c0-.137 0-.274-.012-.41.791-27.416 16-30.094 40.333-34.368 3.862-.679 7.947-1.4 13.53-2.518a102.527 102.527 0 0 0 9.229 40.627q10.013 22.326 30.808 43.123v26.24zm14.545-26.241q20.795-20.795 30.808-43.121a102.527 102.527 0 0 0 9.226-40.616c5.55 1.115 9.617 1.83 13.466 2.506 24.453 4.3 39.695 6.976 40.344 34.778h-.024v72.694h-31.422a41.554 41.554 0 0 0 3.738-17.583q0-13.176-7.392-28.716a7.256 7.256 0 1 0 -13.125 6.193q5.971 12.554 5.972 22.523a26.959 26.959 0 0 1 -5.262 16.38 7.359 7.359 0 0 0 -.715 1.2h-45.614zm314.57-424.669a17.825 17.825 0 0 1 12.368 4.889 15.841 15.841 0 0 1 4.992 11.445v162.839a15.841 15.841 0 0 1 -4.992 11.445 17.821 17.821 0 0 1 -12.368 4.889h-92.395a7.234 7.234 0 0 0 -3.9 1.136l-22.385 12.384q-.276.151-.532.323l-36.3 20.086v-26.656a7.273 7.273 0 0 0 -7.273-7.273h-55.544a17.824 17.824 0 0 1 -12.368-4.889 15.844 15.844 0 0 1 -4.991-11.445v-162.839a15.842 15.842 0 0 1 4.991-11.445 17.829 17.829 0 0 1 12.368-4.889zm-218.329-14.545h218.329a32.378 32.378 0 0 1 22.425 8.979 30.272 30.272 0 0 1 9.48 21.9v162.839a30.268 30.268 0 0 1 -9.48 21.9 32.375 32.375 0 0 1 -22.425 8.98h-90.544l-21.149 11.7q-.257.141-.518.259l-47.084 26.051a7.236 7.236 0 0 1 -10.73-6.335h-.037v-31.673h-48.267a32.378 32.378 0 0 1 -22.425-8.98 30.272 30.272 0 0 1 -9.48-21.9v-162.841a30.268 30.268 0 0 1 9.48-21.9 32.378 32.378 0 0 1 22.425-8.979zm53.254 72.778-10.193-10.192 10.193-10.193a7.272 7.272 0 0 0 -10.285-10.284l-10.192 10.191-10.192-10.19a7.272 7.272 0 0 0 -10.284 10.284l10.192 10.192-10.192 10.191a7.272 7.272 0 0 0 10.284 10.284l10.192-10.191 10.192 10.192a7.272 7.272 0 0 0 10.285-10.284zm123.469 89.042-10.192-10.192 10.192-10.193a7.272 7.272 0 0 0 -10.284-10.284l-10.192 10.192-10.192-10.191a7.272 7.272 0 1 0 -10.284 10.284l10.192 10.192-10.192 10.191a7.272 7.272 0 1 0 10.284 10.281l10.192-10.191 10.192 10.191a7.272 7.272 0 0 0 10.284-10.284z\" fill-rule=\"evenodd\"></path></svg>							\n												<h5>\n													Coping Strategies												</h5>\n											<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M248.298,398.776v-96.35c0-5.971-2.694-11.517-7.393-15.216l-59.928-47.132c-2.984-2.348-7.254-2.094-9.939,0.592   l-14.349,14.349c-2.986,2.985-4.637,7.118-4.53,11.338c0.106,4.215,1.961,8.252,5.079,11.069l30.406,27.556l-1.867,1.93   c-1.111,1.149-2.665,1.808-4.265,1.808h-5.366c-4.046,0-7.953-1.201-11.299-3.474l-66.646-45.245   c-1.237-0.838-1.976-2.237-1.976-3.742v-42.516c0-8.724-7.102-15.821-15.832-15.821h-23.54c-4.142,0-7.5,3.358-7.5,7.5v72.637   c0,6.404,3.145,12.405,8.408,16.048l46.124,31.979c3.404,2.359,8.077,1.513,10.437-1.89c2.36-3.404,1.514-8.077-1.89-10.437   l-46.128-31.982c-1.222-0.846-1.951-2.235-1.951-3.718v-65.137h16.039c0.458,0,0.832,0.368,0.832,0.821v42.516   c0,6.486,3.2,12.526,8.556,16.155l66.64,45.241c5.84,3.967,12.661,6.064,19.726,6.064h5.366c5.643,0,11.128-2.326,15.047-6.38   l2.254-2.331c2.749-2.837,4.193-6.572,4.066-10.518c-0.127-3.948-1.811-7.585-4.741-10.242l-30.836-27.946   c-0.039-0.036-0.143-0.129-0.148-0.327c-0.005-0.206,0.101-0.312,0.141-0.352l9.642-9.642l54.693,43.015   c1.061,0.834,1.668,2.084,1.668,3.427v88.844h-60.32v-24.995c0-6.607-3.24-12.792-8.658-16.538l-27.532-19.089   c-3.405-2.36-8.077-1.514-10.437,1.89s-1.514,8.077,1.89,10.437l27.541,19.095c1.375,0.951,2.196,2.522,2.196,4.205v24.995h-3.726   c-4.142,0-7.5,3.358-7.5,7.5v58.66c0,0.033,0.004,0.064,0.005,0.097V504.5c0,4.142,3.358,7.5,7.5,7.5h25.971   c4.142,0,7.5-3.358,7.5-7.5c0-4.142-3.358-7.5-7.5-7.5h-18.471v-47.64h71.535v8.07c0,0.016,0.002,0.032,0.002,0.048V497h-23.519   c-4.142,0-7.5,3.358-7.5,7.5c0,4.142,3.358,7.5,7.5,7.5h31.019c4.142,0,7.5-3.358,7.5-7.5v-62.64c0-0.016-0.002-0.032-0.002-0.048   v-42.92C248.293,398.853,248.298,398.815,248.298,398.776z M233.292,434.359h-71.54V406.27h3.62c0.036,0,0.07,0.005,0.106,0.005   h67.814V434.359z\"></path>	</g></g><g>	<g>		<path d=\"M455.147,197.92h-23.535c-8.728,0-15.828,7.101-15.828,15.828v42.51c0,1.501-0.742,2.9-1.984,3.744l-66.637,45.24   c-3.349,2.273-7.258,3.475-11.304,3.475h-5.362c-1.604,0-3.162-0.66-4.279-1.813l-1.862-1.922l30.408-27.549   c3.125-2.831,4.977-6.871,5.08-11.085c0.104-4.215-1.546-8.342-4.526-11.324l-14.354-14.354c-2.687-2.686-6.956-2.939-9.94-0.592   l-47.179,37.107l-12.747,10.025c-4.695,3.693-7.389,9.238-7.389,15.211v96.35c0,0.02,0.003,0.038,0.003,0.058v42.972   c0,0.02-0.003,0.038-0.003,0.058v62.64c0,4.142,3.357,7.5,7.5,7.5h86.538c4.143,0,7.5-3.358,7.5-7.5v-46.973   c0-0.033,0.005-0.064,0.005-0.097v-58.66c0-4.142-3.357-7.5-7.5-7.5h-3.729v-24.994c0-1.68,0.824-3.254,2.204-4.211l98.021-67.96   c5.26-3.647,8.4-9.646,8.4-16.046V205.42C462.647,201.278,459.29,197.92,455.147,197.92z M350.247,497h-71.538v-39.512   c0-0.02,0.003-0.038,0.003-0.058v-8.07h71.535V497z M350.252,434.36h-71.54v-28.088h67.811c0.013,0,0.026-0.002,0.039-0.002h3.69   V434.36z M447.65,278.059h-0.003c0,1.483-0.728,2.874-1.947,3.719l-98.021,67.961c-5.42,3.759-8.656,9.941-8.656,16.538v24.994   H278.71v-88.848c0-1.343,0.605-2.591,1.662-3.421l12.747-10.025l41.946-32.992l9.646,9.646c0.039,0.04,0.144,0.144,0.139,0.347   s-0.114,0.302-0.155,0.339l-30.83,27.931c-2.928,2.653-4.611,6.289-4.74,10.238c-0.128,3.95,1.314,7.688,4.065,10.527l2.256,2.328   c3.924,4.053,9.41,6.377,15.053,6.377h5.362c7.062,0,13.884-2.097,19.729-6.064l66.638-45.241   c5.359-3.639,8.559-9.677,8.559-16.154v-42.51c0-0.457,0.371-0.828,0.828-0.828h16.035V278.059z\"></path>	</g></g><g>	<g>		<path d=\"M256.002,0c-55.95,0-102.985,41.857-109.407,97.364c-0.476,4.115,2.474,7.836,6.588,8.313   c4.12,0.482,7.836-2.474,8.313-6.588C167.042,51.15,207.671,15,256.002,15c52.466,0,95.15,42.684,95.15,95.15   c0,41.507-26.532,77.917-66.021,90.603c-1.723,0.553-3.187,1.71-4.123,3.258l-25.006,41.333l-25.006-41.333   c-0.937-1.548-2.401-2.705-4.123-3.258c-33.804-10.859-58.561-39.313-64.609-74.259c-0.707-4.082-4.587-6.812-8.669-6.111   c-4.082,0.707-6.817,4.588-6.111,8.669c6.842,39.527,34.351,71.881,72.103,85.076l30,49.587c1.358,2.246,3.792,3.618,6.417,3.618   s5.059-1.372,6.417-3.618l29.999-49.587c44.219-15.453,73.732-56.883,73.732-103.978C366.152,49.413,316.739,0,256.002,0z\"></path>	</g></g><g>	<g>		<path d=\"M315.754,102.65h-10.565c-1.234-8.128-4.447-15.612-9.123-21.955l7.492-7.492c2.929-2.929,2.929-7.678,0-10.606   c-2.93-2.929-7.678-2.929-10.607,0l-7.491,7.491c-6.343-4.676-13.827-7.888-21.955-9.123V50.4c0-4.142-3.357-7.5-7.5-7.5   c-4.142,0-7.5,3.358-7.5,7.5v10.565c-8.128,1.234-15.612,4.447-21.955,9.123l-7.491-7.491c-2.929-2.929-7.678-2.929-10.606,0   c-2.929,2.929-2.929,7.678,0,10.606l7.491,7.491c-4.676,6.343-7.889,13.828-9.123,21.956c0,0-10.569,0-10.569,0   c-4.142,0-7.5,3.358-7.5,7.5c0,4.142,3.358,7.5,7.5,7.5h10.565c1.234,8.128,4.447,15.613,9.123,21.956l-7.491,7.491   c-2.929,2.929-2.929,7.678,0,10.606c1.464,1.464,3.384,2.197,5.303,2.197s3.839-0.732,5.303-2.197l7.491-7.491   c6.343,4.676,13.828,7.889,21.956,9.123V169.9c0,4.142,3.358,7.5,7.5,7.5c4.143,0,7.5-3.358,7.5-7.5v-10.565   c8.128-1.234,15.612-4.447,21.956-9.123l7.491,7.491c1.465,1.464,3.385,2.197,5.304,2.197c1.919,0,3.839-0.732,5.304-2.197   c2.929-2.929,2.929-7.678,0-10.606l-7.491-7.491c4.676-6.343,7.889-13.828,9.123-21.956h10.565c4.143,0,7.5-3.358,7.5-7.5   C323.254,106.008,319.897,102.65,315.754,102.65z M290.751,110.164c-0.007,19.151-15.586,34.731-34.738,34.738   c-0.004,0-0.009-0.001-0.013-0.001c-0.004,0-0.009,0.001-0.013,0.001c-19.151-0.007-34.731-15.586-34.738-34.738   c0-0.004,0.001-0.009,0.001-0.013c0-0.004-0.001-0.008-0.001-0.013c0.009-19.154,15.592-34.735,34.746-34.738   c0.002,0,0.004,0,0.006,0s0.004,0,0.006,0c19.155,0.004,34.737,15.584,34.744,34.738c0,0.004-0.001,0.008-0.001,0.013   C290.75,110.155,290.751,110.16,290.751,110.164z\"></path>	</g></g><g>	<g>		<path d=\"M256.002,85.119c-13.802,0-25.032,11.229-25.032,25.031c0,13.803,11.229,25.032,25.032,25.032   c13.803,0,25.031-11.229,25.031-25.031C281.033,96.348,269.804,85.119,256.002,85.119z M256.002,120.182   c-5.532,0-10.032-4.5-10.032-10.031c0-5.532,4.5-10.032,10.032-10.032c5.531,0,10.031,4.5,10.031,10.032   C266.033,115.682,261.533,120.182,256.002,120.182z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>							\n												<h5>\n													Goal Setting												</h5>\n											<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xodm=\"http://www.corel.com/coreldraw/odm/2003\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_2077007814064\"><g id=\"_200306976\"><path d=\"m256 319.44c-1.59 0-3.12-.63-4.24-1.75-11.13-11.13-22.33-21.98-33.17-32.48-62.94-60.98-117.31-113.65-117.31-179.39 0-44.31 36.05-80.35 80.36-80.35 37.74 0 57.46 18.43 74.36 48.87 16.9-30.44 36.62-48.87 74.35-48.87 44.31 0 80.36 36.04 80.36 80.35 0 65.74-54.36 118.41-117.31 179.39-10.83 10.49-22.03 21.35-33.16 32.48-1.12 1.12-2.65 1.75-4.24 1.75zm-74.36-281.97c-37.69 0-68.35 30.66-68.35 68.35 0 60.66 52.67 111.69 113.65 170.77 9.5 9.2 19.27 18.67 29.06 28.39 9.78-9.72 19.56-19.19 29.06-28.39 60.98-59.08 113.65-110.11 113.65-170.77 0-37.69-30.66-68.35-68.35-68.35-31.58 0-49.63 13.72-68.99 52.45-1.02 2.03-3.1 3.31-5.37 3.31s-4.35-1.28-5.37-3.31c-19.36-38.73-37.41-52.45-68.99-52.45z\"></path></g><g><g id=\"_200307000\"><path d=\"m268.35 249.13h-24.7c-3.32 0-6-2.68-6-6v-11.56c-2.07-.72-4.09-1.56-6.06-2.51l-8.18 8.18c-1.13 1.12-2.65 1.75-4.25 1.75-1.59 0-3.11-.63-4.24-1.75l-17.47-17.47c-2.34-2.34-2.34-6.14 0-8.49l8.18-8.18c-.95-1.97-1.79-3.99-2.51-6.06h-11.57c-3.31 0-6-2.68-6-6v-24.7c0-3.32 2.69-6 6-6h11.57c.72-2.07 1.56-4.09 2.51-6.06l-8.18-8.18c-1.13-1.13-1.76-2.65-1.76-4.24 0-1.6.63-3.12 1.76-4.25l17.47-17.47c2.34-2.34 6.14-2.34 8.49 0l8.18 8.18c1.96-.95 3.99-1.79 6.05-2.51v-11.56c0-3.32 2.69-6 6-6h24.71c3.31 0 6 2.68 6 6v11.56c2.07.72 4.09 1.56 6.06 2.51l8.18-8.18c1.12-1.12 2.65-1.76 4.24-1.76s3.12.64 4.24 1.76l17.48 17.47c1.12 1.13 1.75 2.65 1.75 4.25 0 1.59-.63 3.11-1.75 4.24l-8.19 8.18c.96 1.97 1.8 3.99 2.52 6.06h11.56c3.32 0 6 2.68 6 6v24.7c0 3.32-2.68 6-6 6h-11.56c-.72 2.07-1.56 4.09-2.52 6.06l8.19 8.18c1.12 1.13 1.75 2.65 1.75 4.24 0 1.6-.63 3.12-1.75 4.25l-17.47 17.47c-2.35 2.34-6.15 2.34-8.49 0l-8.18-8.18c-1.97.95-3.99 1.79-6.06 2.51v11.57c0 3.31-2.69 5.99-6 5.99zm-18.7-12h12.7v-10.02c0-2.74 1.86-5.14 4.52-5.82 4.06-1.03 7.95-2.64 11.56-4.79 2.36-1.4 5.37-1.02 7.31.92l7.09 7.09 8.99-8.99-7.09-7.09c-1.94-1.94-2.32-4.95-.92-7.31 2.15-3.6 3.76-7.49 4.79-11.56.68-2.66 3.07-4.52 5.82-4.52h10.02v-12.7h-10.02c-2.75 0-5.14-1.87-5.82-4.52-1.03-4.07-2.64-7.95-4.79-11.56-1.4-2.36-1.03-5.37.92-7.31l7.09-7.1-8.99-8.98-7.09 7.09c-1.94 1.94-4.95 2.32-7.31.92-3.61-2.15-7.5-3.77-11.56-4.8-2.66-.67-4.52-3.07-4.52-5.81v-10.03h-12.7v10.03c0 2.74-1.87 5.14-4.53 5.81-4.05 1.04-7.94 2.65-11.55 4.8-2.36 1.4-5.37 1.02-7.31-.92l-7.1-7.09-8.98 8.99 7.09 7.09c1.94 1.94 2.32 4.95.92 7.31-2.15 3.61-3.76 7.5-4.8 11.55-.67 2.66-3.07 4.53-5.81 4.53h-10.02v12.7h10.02c2.74 0 5.14 1.86 5.81 4.52 1.04 4.06 2.65 7.95 4.8 11.56 1.4 2.36 1.02 5.37-.92 7.31l-7.09 7.09 8.98 8.99 7.1-7.09c1.94-1.94 4.95-2.32 7.31-.92 3.61 2.15 7.5 3.76 11.56 4.79 2.66.68 4.52 3.08 4.52 5.82z\"></path></g><g id=\"_200306760\"><path d=\"m256 215.48c-20.29 0-36.8-16.5-36.8-36.79s16.51-36.8 36.8-36.8 36.79 16.51 36.79 36.8-16.5 36.79-36.79 36.79zm0-61.59c-13.67 0-24.8 11.13-24.8 24.8s11.13 24.79 24.8 24.79 24.79-11.12 24.79-24.79-11.12-24.8-24.79-24.8z\"></path></g></g><g id=\"_200306784\"><path d=\"m461.9 340.14c-.4 0-.8-.04-1.21-.12-2.77-.57-4.77-3.01-4.79-5.84-.01-.8-.54-16.35-18.14-25.35-4.77 6.05-14.98 15.83-31.26 15.83-7.09 0-14.53-1.91-22.17-5.68-1.97 2.49-4.39 6.45-4.71 11.19-.17 2.67-2.1 4.89-4.71 5.46-2.62.57-5.29-.67-6.56-3.03-.73-1.35-17.54-33.58 6.24-66.87.25-.34.54-.67.85-.95.53-.48 13.04-11.64 29.73-11.64 8.33 0 16.16 2.73 23.32 8.11 6.78.84 29.41 4.94 40.34 22.87 8.21 13.48 7.74 31.11-1.42 52.39-.96 2.24-3.15 3.63-5.51 3.63zm-26.24-44.82c.73 0 1.45.13 2.16.41 12.4 4.82 19.68 12.11 23.97 19.04 1.81-9.72.76-17.87-3.18-24.36-9.39-15.48-32.65-17.38-32.88-17.39-1.23-.09-2.4-.56-3.35-1.33-5.36-4.35-11.14-6.55-17.2-6.55-10.52 0-19.21 6.52-21.25 8.17-10.03 14.4-10.85 28.57-9.39 38.73 2.4-3.14 4.55-4.96 4.74-5.12 1.93-1.61 4.66-1.85 6.84-.59 7.27 4.2 14.13 6.33 20.38 6.33 15.81 0 23.56-13.64 23.88-14.22 1.09-1.97 3.15-3.12 5.28-3.12z\"></path></g><g id=\"_200307264\"><path d=\"m419.46 411.58c-.16 0-.32 0-.48 0-10.3-.15-20.06-5.17-28.23-14.52-7.44-8.5-13.2-20.37-16.78-34.51-9.81-1.95-15.33-9.01-16.53-15.9-1.66-9.54 3.98-18.57 14.03-22.48 3.08-1.2 6.56.33 7.76 3.42s-.33 6.56-3.41 7.77c-5.64 2.19-7.06 6.34-6.56 9.23.53 3.02 3.36 6.31 9.74 6.48 2.77.08 5.12 2.03 5.71 4.73 5.7 26.37 19.22 43.55 34.45 43.78h.29c14.2 0 26.75-15.15 32.81-39.65.62-2.5 2.75-4.32 5.31-4.54 5.81-.5 8.33-3.74 8.74-6.61.43-2.97-1.08-6.91-6.58-9.05-3.09-1.2-4.62-4.68-3.42-7.76 1.2-3.09 4.68-4.62 7.77-3.42 9.78 3.8 15.45 12.62 14.11 21.93-1.15 8.02-6.99 14.03-15.29 16.15-7.91 27.89-24.31 44.95-43.44 44.95z\"></path></g><g id=\"_200306808\"><path d=\"m332.55 486.53c-1.59 0-3.11-.63-4.24-1.75-1.12-1.13-1.76-2.65-1.76-4.25 0-44.88 21.25-52.28 38.32-58.24 13.67-4.77 23.55-8.21 24.07-29.7.08-3.31 2.86-5.89 6.15-5.85 3.31.08 5.93 2.83 5.85 6.15-.73 29.78-17.41 35.6-32.12 40.73-15.3 5.34-28.64 9.99-30.13 40.91h161.17c-1.49-30.92-14.83-35.57-30.13-40.91-14.73-5.13-31.42-10.96-32.12-40.8-.08-3.31 2.54-6.06 5.85-6.14 3.31-.11 6.06 2.54 6.14 5.86.51 21.53 10.4 24.98 24.08 29.75 17.07 5.96 38.32 13.36 38.32 58.24 0 3.31-2.69 6-6 6z\"></path></g><g id=\"_200306616\"><path d=\"m419.27 443.04c-15.8 0-30.68-6.12-41.9-17.25-2.36-2.33-2.38-6.13-.04-8.48 2.33-2.35 6.13-2.37 8.48-.04 8.96 8.88 20.85 13.77 33.46 13.77 12.62 0 24.5-4.89 33.46-13.77 2.36-2.33 6.16-2.31 8.49.04s2.31 6.15-.04 8.48c-11.22 11.13-26.11 17.25-41.91 17.25z\"></path></g><g id=\"_200307672\"><path d=\"m374.04 486.53c-3.32 0-6-2.68-6-6v-19.82c0-3.31 2.68-6 6-6 3.31 0 6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307888\"><path d=\"m464.51 486.53c-3.31 0-6-2.68-6-6v-19.82c0-3.31 2.69-6 6-6s6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307744\"><path d=\"m135.35 340.14c-.4 0-.8-.04-1.21-.12-2.77-.57-4.77-3.01-4.79-5.84-.01-.8-.54-16.35-18.14-25.35-4.77 6.05-14.98 15.83-31.26 15.83-7.09 0-14.53-1.91-22.17-5.68-1.97 2.49-4.39 6.45-4.7 11.19-.18 2.67-2.11 4.89-4.72 5.46-2.62.57-5.29-.67-6.56-3.03-.72-1.35-17.54-33.58 6.24-66.87.25-.34.54-.67.86-.95.52-.48 13.03-11.64 29.73-11.64 8.32 0 16.16 2.73 23.31 8.11 6.78.84 29.41 4.94 40.34 22.87 8.22 13.48 7.74 31.11-1.42 52.39-.96 2.24-3.15 3.63-5.51 3.63zm-26.25-44.82c.72 0 1.46.13 2.17.41 12.4 4.82 19.69 12.1 23.97 19.04 1.81-9.72.76-17.87-3.18-24.36-9.39-15.48-32.65-17.37-32.88-17.39-1.22-.09-2.4-.56-3.35-1.33-5.36-4.35-11.14-6.55-17.2-6.55-10.52 0-19.21 6.52-21.24 8.17-10.04 14.4-10.85 28.57-9.4 38.73 2.4-3.14 4.55-4.96 4.74-5.12 1.93-1.61 4.67-1.85 6.84-.59 7.27 4.2 14.13 6.33 20.38 6.33 16.01 0 23.79-14.05 23.86-14.2 1.08-1.98 3.14-3.14 5.29-3.14z\"></path></g><g id=\"_200307960\"><path d=\"m92.91 411.58c-.16 0-.32 0-.48 0-10.3-.15-20.06-5.17-28.23-14.52-7.44-8.5-13.2-20.37-16.79-34.51-9.8-1.95-15.32-9.01-16.52-15.9-1.66-9.54 3.98-18.57 14.03-22.48 3.08-1.2 6.56.33 7.76 3.42s-.33 6.56-3.41 7.77c-5.64 2.19-7.06 6.34-6.56 9.23.53 3.02 3.36 6.31 9.74 6.48 2.77.08 5.12 2.03 5.71 4.73 5.7 26.37 19.22 43.55 34.45 43.78h.29c14.2 0 26.75-15.15 32.81-39.65.62-2.5 2.75-4.32 5.31-4.54 5.81-.5 8.33-3.74 8.74-6.61.43-2.97-1.08-6.91-6.58-9.05-3.09-1.2-4.62-4.68-3.42-7.76 1.2-3.09 4.68-4.62 7.77-3.42 9.78 3.8 15.45 12.62 14.11 21.93-1.16 8.02-6.99 14.03-15.3 16.15-7.9 27.89-24.3 44.95-43.43 44.95z\"></path></g><g id=\"_200307408\"><path d=\"m6 486.53c-1.59 0-3.11-.63-4.24-1.75-1.12-1.13-1.76-2.65-1.76-4.25 0-44.88 21.25-52.28 38.32-58.24 13.67-4.77 23.55-8.21 24.08-29.7.08-3.31 2.82-5.89 6.14-5.85 3.31.08 5.93 2.83 5.85 6.15-.73 29.78-17.41 35.6-32.12 40.73-15.3 5.34-28.64 9.99-30.13 40.91h161.17c-1.5-30.92-14.83-35.57-30.13-40.91-14.73-5.13-31.42-10.96-32.12-40.8-.08-3.31 2.54-6.06 5.85-6.14 3.27-.11 6.06 2.54 6.14 5.86.51 21.53 10.4 24.98 24.08 29.75 17.07 5.96 38.32 13.36 38.32 58.24 0 3.31-2.69 6-6 6h-173.45z\"></path></g><g id=\"_200307648\"><path d=\"m92.73 443.04c-15.81 0-30.69-6.12-41.91-17.25-2.36-2.33-2.37-6.13-.04-8.48s6.13-2.37 8.48-.04c8.97 8.88 20.85 13.77 33.47 13.77 12.61 0 24.49-4.89 33.45-13.77 2.36-2.33 6.16-2.31 8.49.04s2.31 6.15-.04 8.48c-11.22 11.13-26.11 17.25-41.9 17.25z\"></path></g><g id=\"_200307720\"><path d=\"m47.49 486.53c-3.32 0-6-2.68-6-6v-19.82c0-3.31 2.68-6 6-6 3.31 0 6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307456\"><path d=\"m137.96 486.53c-3.31 0-6-2.68-6-6v-19.82c0-3.31 2.69-6 6-6s6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307840\"><path d=\"m94.44 269.46c-3.31 0-6-2.68-6-6v-23.34c0-8.01 6.52-14.53 14.53-14.53h70.38c3.31 0 6 2.69 6 6 0 3.32-2.69 6-6 6h-70.38c-1.37 0-2.53 1.16-2.53 2.53v23.34c0 3.32-2.68 6-6 6zm323.12-1.73c-3.32 0-6-2.69-6-6v-21.61c0-1.37-1.16-2.53-2.53-2.53h-70.38c-3.31 0-6-2.68-6-6 0-3.31 2.69-6 6-6h70.37c8.02 0 14.54 6.52 14.54 14.53v21.61c0 3.31-2.69 6-6 6z\"></path></g></g></g></svg>							\n												<h5>\n													Relationship Improvement												</h5>\n											<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m434.61 333.03-21.34-36.58c6.76-18.2 7.07-35.07.96-51.47-5.64-15.15-16.96-29.98-34.59-45.33-11.13-9.69-23.22-17.82-35.9-24.21.12-3.43-1.13-6.87-3.68-9.41l-11.45-11.45c-.24-.24-.28-.47-.12-.78 1.77-3.49 3.28-7.13 4.5-10.84.11-.32.3-.46.64-.46h16.19c6.99 0 12.67-5.68 12.67-12.67v-22.44c0-6.99-5.68-12.67-12.67-12.67h-16.19c-.34 0-.53-.14-.64-.46-1.22-3.71-2.73-7.35-4.5-10.84-.15-.3-.12-.53.12-.77l11.45-11.45c2.39-2.39 3.71-5.57 3.71-8.96s-1.32-6.57-3.71-8.96l-15.87-15.87c-2.39-2.39-5.57-3.71-8.96-3.71s-6.57 1.32-8.96 3.71l-11.45 11.45c-.24.24-.47.28-.77.12-3.48-1.77-7.13-3.28-10.84-4.5-.32-.11-.46-.3-.46-.64v-16.17c0-6.99-5.68-12.67-12.67-12.67h-22.44c-6.99 0-12.67 5.68-12.67 12.67v16.19c0 .34-.14.53-.46.64-3.7 1.22-7.35 2.73-10.84 4.5-.3.15-.54.12-.77-.12l-11.45-11.45c-2.39-2.39-5.57-3.71-8.96-3.71s-6.57 1.32-8.96 3.71l-15.87 15.87c-2.39 2.39-3.71 5.57-3.71 8.96s1.32 6.57 3.71 8.96l11.45 11.45c.24.24.28.47.12.77-1.77 3.49-3.28 7.13-4.5 10.84-.11.32-.3.46-.64.46h-16.19c-6.99 0-12.67 5.68-12.67 12.67v10.02c-.5 1.37-.76 2.83-.76 4.3v16.19c0 .34-.14.53-.46.64-3.7 1.22-7.35 2.73-10.84 4.5-.3.15-.54.12-.78-.12l-11.45-11.45c-2.39-2.39-5.57-3.71-8.96-3.71s-6.57 1.32-8.96 3.71l-15.87 15.87c-2.39 2.39-3.71 5.57-3.71 8.96s1.32 6.57 3.71 8.96l11.45 11.45c.24.24.28.47.12.77-1.77 3.49-3.28 7.13-4.49 10.84-.11.32-.3.46-.64.46h-16.16c-6.99 0-12.67 5.68-12.67 12.67v22.44c0 6.99 5.68 12.67 12.67 12.67h16.19c.34 0 .53.14.63.46 1.22 3.7 2.73 7.35 4.5 10.84.15.3.12.53-.12.77l-11.45 11.45c-2.39 2.39-3.71 5.57-3.71 8.96s1.32 6.57 3.71 8.96l15.87 15.87c2.39 2.39 5.57 3.71 8.96 3.71s6.57-1.32 8.96-3.71l11.45-11.45c.24-.24.47-.28.78-.12 2.63 1.33 5.35 2.52 8.12 3.55 3.63 25.86 18.43 52.67 31.88 77.01 3.47 6.29 6.76 12.23 9.84 18.11 12.69 35.72 7.66 78.5-12.56 106.56l-6.85 9.51h173.63v-44.26c38.01-.13 59.59-5.99 67.67-18.29 6.96-10.6 1.74-22.31-1.38-29.3-.44-.98-.98-2.19-1.34-3.11 3.35-4.7 4.47-10.39 3.12-16.07.14-.2.3-.41.43-.59 2.26-3.05 6.46-8.74 3.06-18.47-.43-1.24-.63-2.03-.72-2.5.71-.41 1.88-.97 2.87-1.44 1.82-.86 4.08-1.94 6.69-3.46 4.46-2.6 7.64-6.79 8.96-11.8s.59-10.29-2.01-14.74zm-267.36-225.64c0-.36.31-.67.67-.67h16.19c5.49 0 10.32-3.5 12.04-8.71 1.03-3.13 2.31-6.21 3.8-9.16 2.48-4.9 1.54-10.8-2.34-14.68l-11.45-11.45c-.13-.13-.19-.29-.19-.47 0-.19.06-.35.19-.47l15.87-15.87c.25-.25.69-.25.95 0l11.45 11.45c3.88 3.88 9.78 4.82 14.68 2.34 2.95-1.49 6.03-2.77 9.16-3.8 5.21-1.71 8.72-6.55 8.72-12.04v-16.19c0-.36.31-.67.67-.67h22.44c.36 0 .67.31.67.67v16.19c0 5.49 3.5 10.32 8.71 12.04 3.13 1.03 6.21 2.31 9.16 3.8 4.9 2.48 10.8 1.54 14.68-2.34l11.45-11.45c.25-.25.69-.25.95 0l15.87 15.87c.13.13.19.29.19.47 0 .19-.06.35-.19.47l-11.45 11.45c-3.88 3.88-4.83 9.78-2.34 14.68 1.49 2.95 2.77 6.03 3.8 9.16 1.71 5.21 6.55 8.71 12.04 8.71h16.19c.36 0 .67.31.67.67v22.44c0 .36-.31.67-.67.67h-16.19c-5.49 0-10.32 3.5-12.04 8.71-1.03 3.13-2.31 6.21-3.8 9.16-2.48 4.9-1.54 10.8 2.34 14.68l4.07 4.07c-6.1-2.13-12.28-3.88-18.52-5.21-5.2-1.11-10.41-1.91-15.6-2.44 12.29-9.41 20.24-24.22 20.24-40.86 0-28.37-23.08-51.45-51.45-51.45s-51.45 23.08-51.45 51.45c0 20.1 11.59 37.53 28.43 45.99-1.46.45-2.91.93-4.35 1.43-13.15 4.6-25.02 11.14-35.4 19.37l-9.95-9.95c-.13-.13-.19-.28-.19-.47s.06-.35.19-.47l11.45-11.45c3.88-3.88 4.82-9.78 2.34-14.68-1.49-2.95-2.77-6.03-3.8-9.16-1.71-5.21-6.55-8.72-12.04-8.72h-16.19c-.36 0-.67-.31-.67-.67zm91.61 50.67c-21.75 0-39.45-17.7-39.45-39.45s17.7-39.45 39.45-39.45 39.45 17.7 39.45 39.45-17.7 39.45-39.45 39.45zm-81.2 25.88 9.4 9.4c-14.24 13.88-24.92 31.39-31.29 51.61-10.4-7.3-16.85-19.33-16.85-32.3 0-20.29 15.4-37.05 35.13-39.21-.06.51-.1 1.02-.1 1.54 0 3.39 1.32 6.57 3.71 8.96zm-43.73 89.97-11.45 11.45c-.25.25-.69.25-.94 0l-15.87-15.87c-.16-.16-.19-.34-.19-.47 0-.19.06-.35.19-.47l11.45-11.45c3.88-3.88 4.83-9.78 2.34-14.68-1.49-2.95-2.77-6.03-3.8-9.16-1.71-5.21-6.55-8.72-12.04-8.72h-16.19c-.36 0-.67-.31-.67-.67v-22.44c0-.36.31-.67.67-.67h16.19c5.49 0 10.32-3.5 12.04-8.71 1.03-3.13 2.31-6.21 3.8-9.16 2.48-4.9 1.54-10.8-2.34-14.68l-11.45-11.45c-.16-.16-.19-.34-.19-.47 0-.19.06-.35.19-.47l15.87-15.87c.25-.25.69-.25.95 0l11.45 11.45c3.88 3.88 9.78 4.82 14.68 2.34 2.95-1.49 6.03-2.77 9.16-3.8 3.75-1.23 6.61-4.09 7.92-7.63.72.13 1.47.21 2.23.21h16.19c.34 0 .53.14.63.46 1.22 3.7 2.73 7.35 4.5 10.84.15.3.12.53-.12.77l-6.78 6.78c-1.31-.1-2.64-.16-3.95-.16-28.37 0-51.45 23.08-51.45 51.45 0 18.39 9.91 35.35 25.61 44.49-.35 1.61-.69 3.23-.99 4.86-.64 3.46-.96 6.96-1.05 10.48-.63-.3-1.27-.6-1.89-.91-4.92-2.5-10.82-1.55-14.7 2.33zm291.06 70.74c-.5 1.91-1.71 3.5-3.4 4.49-2.17 1.27-4.1 2.18-5.8 2.99-6.98 3.32-12.43 7.02-8.33 18.75 1.31 3.74.35 5.03-1.38 7.37-1.5 2.02-4 5.41-2.62 9.89.88 2.86.29 5.54-1.71 7.76-3.67 4.08-1.39 9.2.82 14.14 3.1 6.95 5.42 13.09 2.31 17.82-3.31 5.04-15.96 13.42-63.57 12.85l-6.07-.07v44.36h-138.97c17.34-30.83 20.69-72.96 7.92-108.51l-.14-.39-.19-.37c-3.21-6.12-6.59-12.24-10.17-18.72-17.49-31.65-35.57-64.37-30.34-92.85 7.68-41.83 33.96-73.47 72.1-86.8 44.14-15.44 96.37-3.43 136.3 31.34 33.22 28.92 41.99 54.65 29.31 86.02l-1.1 2.73 24.28 41.62c.99 1.69 1.25 3.67.75 5.58zm-145.92-155.19c-51.35 0-93.14 41.78-93.14 93.14 0 51.35 41.78 93.13 93.14 93.13s93.14-41.78 93.14-93.13c0-51.36-41.78-93.14-93.14-93.14zm0 174.27c-44.74 0-81.14-36.4-81.14-81.13s36.4-81.14 81.14-81.14 81.14 36.4 81.14 81.14-36.4 81.13-81.14 81.13zm29.28-94.9c-3.51-13.57-12.31-26.17-25.63-36.38-2.15-1.65-5.15-1.65-7.3 0-13.32 10.22-22.12 22.81-25.63 36.38-7.81-2.14-16.51-2.65-25.56-1.45-2.69.35-4.81 2.47-5.16 5.16-2.5 18.97 2.38 35.68 13.74 47.04 9.42 9.42 22.51 14.38 37.52 14.38 2.85 0 5.77-.19 8.74-.55 2.98.36 5.89.55 8.74.55 15.01 0 28.1-4.96 37.52-14.38 11.36-11.36 16.24-28.07 13.74-47.04-.35-2.69-2.47-4.81-5.16-5.16-9.05-1.19-17.75-.68-25.56 1.45zm-29.28-23.87c12.29 10.71 19.01 23.83 19.01 37.34s-6.71 26.63-19.01 37.34c-12.29-10.71-19.01-23.83-19.01-37.34s6.72-26.63 19.01-37.34zm-48.55 33.87c6.31-.35 12.26.35 17.57 2.02-.01.48-.02.96-.02 1.45 0 14.08 5.57 27.65 15.92 39.27-9.08-1.12-16.89-4.67-22.68-10.47-7.77-7.75-11.52-19.08-10.79-32.27zm86.33 32.27c-5.8 5.8-13.61 9.34-22.68 10.47 10.35-11.63 15.91-25.19 15.91-39.27 0-.48-.01-.96-.02-1.45 5.31-1.67 11.25-2.36 17.57-2.02.73 13.19-3.03 24.52-10.78 32.27z\"></path></svg>							\n												<h5>\n													Skill Development												</h5>\n											<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m273.006 83.567v168.425h87.5a4 4 0 1 1 0 8h-87.5v168.433h87.5a4 4 0 0 1 0 8h-91.5a4 4 0 0 1 -4-4v-172.431h-23.979a4 4 0 1 1 0-8h23.973v-172.428a4 4 0 0 1 4-4h91.5a4 4 0 0 1 0 8zm170 415.36a66.5 66.5 0 1 0 -66.5-66.5 66.569 66.569 0 0 0 66.5 66.5zm0-352.86a66.5 66.5 0 1 0 -66.5-66.5 66.569 66.569 0 0 0 66.5 66.5zm0 176.427a66.5 66.5 0 1 0 -66.498-66.494 66.569 66.569 0 0 0 66.5 66.494zm-344.212-195.217-6.473 100.7a4.046 4.046 0 0 0 .55 2.3l17.454 29.364a3.994 3.994 0 0 0 6.88 0l17.454-29.364a3.983 3.983 0 0 0 .55-2.3l-6.473-100.7 60.793 15.639c16.032 4.116 26.821 18.062 27.5 35.53v140.818a19.6 19.6 0 0 1 -6.9 15.283 37.861 37.861 0 0 1 -11.274 6.887 15.2 15.2 0 0 1 -12.961-.608v-142.018a4 4 0 1 0 -8 0v291.546a13.657 13.657 0 0 1 -13.646 13.639h-32.839a13.657 13.657 0 0 1 -13.646-13.639v-130.33a4 4 0 1 0 -8 0v130.33a13.657 13.657 0 0 1 -13.646 13.639h-32.831a13.651 13.651 0 0 1 -13.639-13.639v-291.546a4 4 0 0 0 -8 0v142.018a15.314 15.314 0 0 1 -12.967.608 37.924 37.924 0 0 1 -11.28-6.887 19.616 19.616 0 0 1 -6.895-15.283v-140.818c.672-17.468 11.46-31.414 27.492-35.53l60.793-15.639zm-96.287 50.948v141.039a27.649 27.649 0 0 0 9.61 21.284 45.823 45.823 0 0 0 13.638 8.338 23.478 23.478 0 0 0 15.89.6v140.868a21.667 21.667 0 0 0 21.641 21.646h32.836a21.632 21.632 0 0 0 17.647-9.131 21.608 21.608 0 0 0 17.64 9.131h32.836a21.673 21.673 0 0 0 21.647-21.641v-140.88a22.827 22.827 0 0 0 7.016 1.114 24.352 24.352 0 0 0 8.867-1.707 45.84 45.84 0 0 0 13.639-8.338 27.648 27.648 0 0 0 9.609-21.284v-141.039c-.786-21.127-13.932-38.031-33.493-43.06l-61.836-15.911c22.691-13.039 31.486-42.089 31.807-67.909.193-15.46-4.622-28.557-13.924-37.887a47.161 47.161 0 0 0 -33.301-13.458h-.943a47.221 47.221 0 0 0 -33.379 13.46c-9.3 9.33-14.118 22.427-13.925 37.887.322 25.82 9.124 54.87 31.815 67.909l-61.836 15.909c-19.562 5.029-32.715 21.933-33.5 43.06zm444.493-61.479a4 4 0 1 1 -8 0v-33.179h-33.164a4 4 0 0 1 0-8h33.172v-33.174a4 4 0 0 1 8 0v33.172h33.172a4 4 0 0 1 0 8h-33.18v33.179zm0 102.081v33.165h33.172a4 4 0 1 1 0 8h-33.172v33.171a4 4 0 1 1 -8 0v-33.169h-33.164a4 4 0 0 1 0-8h33.172v-33.167a4 4 0 1 1 8 0zm0 176.419v33.179h33.172a4 4 0 0 1 0 8h-33.172v33.175a4 4 0 0 1 -8 0v-33.173h-33.164a4 4 0 0 1 0-8h33.172v-33.181a4 4 0 1 1 8 0z\" fill-rule=\"evenodd\"></path></svg>							\n												<h5>\n													Tailored Approaches												</h5>\n											<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.</p>										\n		Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 14:29:17', '2026-06-17 14:29:17', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=710', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-06-17 14:29:17', '2026-06-17 14:29:17', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />																<h2>Psychotherapy</h2>		<ul style=\"margin-left: 18px;\">\n 	<li>Individual therapy</li>\n 	<li>Couples/marriage therapy</li>\n 	<li>Family therapy</li>\n 	<li>Child/teen therapy</li>\n 	<li>Online therapy</li>\n 	<li>COMMON SPECIALTIES &amp; approaches</li>\n 	<li>Anxiety therapy</li>\n 	<li>Cognitive behavioral therapy (CBT)</li>\n 	<li>Depression counseling</li>\n 	<li>Dialectical behavior therapy (DBT)</li>\n 	<li>Grief &amp; loss counseling</li>\n 	<li>Relational therapy</li>\n</ul>			<h3>Therapy can be highly beneficial for mental health for several reasons:</h3>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 64 64.1999969\" width=\"512\"><path d=\"m51.2529297 42.0226555c.6357422-.6357422.9863281-1.4804688.9863281-2.3808594 0-.8994141-.3500977-1.7441406-.9863281-2.3808594-1.3125-1.3125-3.4492188-1.3125-4.7617188 0l-9.3178711 9.3173828c-.7426758.7441406-1.1518555 1.7314453-1.1518555 2.7822266v11.6396484c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-5.109375l11.5913086-11.5917969c.1875-.1875.2929688-.4414062.2929688-.7070312v-11.5488281c0-2.0097656-1.6347656-3.6445312-3.6445312-3.6445312s-3.6450195 1.6347656-3.6450195 3.6445312v8.6582031l-4.2260742 4.2255859c-.1459961.1455078-.3828125.1435547-.527832 0-.1455078-.1455078-.1455078-.3818359 0-.5273438zm-3.7910156 4.3183594c.9243164.9248047 2.4306641.9267578 3.355957 0l4.519043-4.5185547c.1875-.1875.2929688-.4414062.2929688-.7070312v-9.0722656c0-.9072266.737793-1.6445312 1.6450195-1.6445312.9067383 0 1.6445312.7373047 1.6445312 1.6445312v11.1347656l-11.5913086 11.5917968c-.1875.1875-.2929688.4414062-.2929688.7070312v4.5234375h-9.0136719v-10.6396484c0-.5166016.2011719-1.0029297.5664062-1.3681641l9.3173828-9.3173828c.5332031-.5332031 1.4008789-.5332031 1.9331055 0 .2583008.2587891.4008789.6015625.4008789.9667969s-.1420898.7089844-.4003906.9667969l-2.3769531 2.3769531c-.9252929.9248047-.9252929 2.4306641.0000001 3.3554688z\"></path><path d=\"m6.7250977 28.398632c-2.0097656 0-3.6445312 1.6347656-3.6445312 3.6445312v11.5488281c0 .265625.1054688.5195312.2929688.7070312l11.5913086 11.5917969v5.109375c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-11.6396483c0-1.0507812-.4091797-2.0380859-1.1523438-2.7822266l-9.3173828-9.3173828c-1.3125-1.3125-3.4487305-1.3125-4.762207 0-.6357422.6367188-.9858398 1.4814453-.9858398 2.3808594 0 .9003906.3505859 1.7451172.9863281 2.3808594l2.3769531 2.3769531c.1455078.1455078.1455078.3818359 0 .5273438s-.3823242.1435547-.527832 0l-4.2260742-4.2255859v-8.6582031c-.0000002-2.0097657-1.6352541-3.6445314-3.6450197-3.6445314zm6.4570312 17.9423829c.925293.9267578 2.4316406.9257812 3.355957 0 .925293-.9248047.925293-2.4306641 0-3.3554688l-2.3769531-2.3769531c-.2583008-.2578125-.4003906-.6015625-.4003906-.9667969s.1425781-.7080078.4003906-.9667969c.5332031-.5332031 1.4003906-.5332031 1.9335938 0l9.3168945 9.3173828c.3657227.3652344.5668945.8515625.5668945 1.3681641v10.6396484h-9.0136719v-4.5234375c0-.265625-.1054688-.5195312-.2929688-.7070312l-11.5913085-11.5917969v-11.1347656c0-.9072266.737793-1.6445312 1.6445312-1.6445312.9072266 0 1.6450195.7373047 1.6450195 1.6445312v9.0722656c0 .265625.1054688.5195312.2929688.7070312z\"></path><path d=\"m32 2.0998046c-10.0986328 0-18.3144531 8.2158203-18.3144531 18.3144531s8.2158203 18.3144525 18.3144531 18.3144525 18.3144531-8.2158203 18.3144531-18.3144531-8.2158203-18.3144525-18.3144531-18.3144525zm0 2.0000003c7.614502 0 14.0088501 5.2510376 15.798584 12.3173819-3.1233521-2.2542105-8.8903809-3.70996-15.798584-3.70996s-12.6752319 1.4557495-15.798584 3.70996c1.7897339-7.0663443 8.184082-12.3173819 15.798584-12.3173819zm16.3144531 16.3144521c0 2.6992188-6.7001953 5.7070312-16.3144531 5.7070312s-16.3144531-3.0078125-16.3144531-5.7070312 6.7001953-5.7070302 16.3144531-5.7070302 16.3144531 3.0078115 16.3144531 5.7070302zm-16.3144531 16.3144532c-7.614502 0-14.0088501-5.2510376-15.798584-12.3173828 3.1233521 2.2542114 8.8903809 3.7099609 15.798584 3.7099609s12.6752319-1.4557495 15.798584-3.7099609c-1.7897339 7.0663452-8.184082 12.3173828-15.798584 12.3173828z\"></path></svg>							\n												<h5>\n													Safe Space												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"friendship-work\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><circle cx=\"72\" cy=\"102\" r=\"4\"></circle><circle cx=\"64\" cy=\"50\" r=\"4\"></circle><path d=\"m228 98h4v4c0 2.211 1.789 4 4 4s4-1.789 4-4v-4h4c2.211 0 4-1.789 4-4s-1.789-4-4-4h-4v-4c0-2.211-1.789-4-4-4s-4 1.789-4 4v4h-4c-2.211 0-4 1.789-4 4s1.789 4 4 4z\"></path><path d=\"m132 218h-16v-5.977c0-13.759-8.223-25.608-20-30.964v-35.059c0-.031-.017-.057-.018-.088 4.839-3.653 8.018-9.396 8.018-15.912 0-2.211-1.789-4-4-4h-30.707c-7.328 0-13.293 5.965-13.293 13.293v25.953c0 5.361 2.096 10.206 5.444 13.892-14.614 3.818-25.444 17.092-25.444 32.885v49.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-49.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v9.977c0 2.211 1.789 4 4 4h8v8h-20v-17.582c0-2.211-1.789-4-4-4s-4 1.789-4 4v21.582 24c0 2.211 1.789 4 4 4s4-1.789 4-4v-20h32c6.617 0 12-5.383 12-12s-5.383-12-12-12zm-68-78.707c0-2.918 2.375-5.293 5.293-5.293h26.023c-1.652 4.656-6.102 8-11.316 8h-20zm12.754 38.707c-7.031 0-12.754-5.723-12.754-12.754v-15.246h24v28zm55.246 56h-4v-8h4c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m56 210c-2.211 0-4 1.789-4 4v48c0 2.211 1.789 4 4 4s4-1.789 4-4v-48c0-2.211-1.789-4-4-4z\"></path><path d=\"m238.009 178.998c3.704-3.95 5.991-9.243 5.991-15.072v-9.926c0-11.027-8.973-20-20-20s-20 8.973-20 20v27.06c-11.777 5.355-20 17.205-20 30.964v45.976c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v45.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-15.99-11.1-29.402-25.991-33.025zm-26.009-.998v-24c0-6.617 5.383-12 12-12s12 5.383 12 12v9.926c0 7.762-6.312 14.074-14.074 14.074z\"></path><path d=\"m204 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m244 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m185.41 118.613c.102-.242.203-.488.301-.734 5.809-.832 10.289-5.844 10.289-11.879 0-1.206-.223-2.353-.555-3.452 10.229-11.777 15.466-22.512 15.466-31.899-.001-20.208-15.274-36.649-34.048-36.649-7.633 0-14.91 2.711-20.863 7.707-5.953-4.996-13.23-7.707-20.863-7.707-18.773 0-34.047 16.441-34.047 36.648 0 9.39 5.238 20.125 15.465 31.903-.333 1.098-.555 2.244-.555 3.449 0 6.035 4.48 11.047 10.289 11.879.098.246.199.488.301.73-3.516 4.699-3.141 11.406 1.125 15.672 4.27 4.27 10.98 4.633 15.672 1.129.242.102.488.203.734.301.832 5.809 5.844 10.289 11.879 10.289s11.047-4.48 11.879-10.289c.246-.098.492-.199.734-.301 4.688 3.504 11.398 3.141 15.672-1.129 4.262-4.261 4.641-10.965 1.125-15.668zm-50.273-76.613c6.707 0 13.09 2.82 17.965 7.945 1.516 1.586 4.281 1.586 5.797 0 4.874-5.125 11.257-7.945 17.964-7.945 14.363 0 26.047 12.852 26.047 28.648 0 6.991-4.298 15.714-12.379 25.343-1.433-.939-3.052-1.616-4.82-1.87-.098-.246-.199-.488-.301-.73 3.516-4.699 3.141-11.406-1.125-15.672-4.273-4.27-10.984-4.637-15.672-1.129-.242-.102-.488-.203-.734-.301-.832-5.809-5.844-10.289-11.879-10.289s-11.047 4.48-11.879 10.289c-.246.098-.492.199-.734.301-4.691-3.508-11.402-3.141-15.672 1.129-4.262 4.262-4.641 10.965-1.125 15.668-.102.242-.203.488-.301.734-1.769.253-3.387.931-4.821 1.87-8.079-9.625-12.378-18.35-12.378-25.343 0-15.796 11.683-28.648 26.047-28.648zm47.687 68c-1.77 0-3.328 1.16-3.832 2.855-.488 1.629-1.117 3.16-1.875 4.555-.848 1.562-.562 3.492.695 4.746l.812.812c1.562 1.559 1.562 4.098.004 5.656-1.562 1.566-4.098 1.559-5.66 0l-.82-.82c-1.254-1.254-3.18-1.535-4.73-.691-1.426.773-2.957 1.402-4.555 1.875-1.699.504-2.863 2.062-2.863 3.836v1.176c0 2.207-1.793 4-4 4s-4-1.793-4-4v-1.176c0-1.773-1.164-3.332-2.863-3.836-1.598-.473-3.129-1.102-4.555-1.875-.598-.324-1.254-.48-1.902-.48-1.035 0-2.059.402-2.828 1.172l-.82.82c-1.559 1.559-4.094 1.566-5.66 0-1.559-1.559-1.559-4.098-.008-5.648l.824-.82c1.258-1.254 1.543-3.184.695-4.746-.758-1.395-1.387-2.926-1.875-4.555-.504-1.695-2.062-2.855-3.832-2.855h-1.176c-2.207 0-4-1.793-4-4s1.793-4 4-4h1.176c1.77 0 3.328-1.16 3.832-2.855.488-1.629 1.117-3.16 1.875-4.555.848-1.562.562-3.492-.695-4.746l-.812-.812c-1.562-1.559-1.562-4.098-.004-5.656 1.57-1.562 4.105-1.559 5.66 0l.82.82c1.25 1.25 3.18 1.531 4.73.691 1.426-.773 2.957-1.402 4.555-1.875 1.699-.504 2.863-2.062 2.863-3.836v-1.177c0-2.207 1.793-4 4-4s4 1.793 4 4v1.176c0 1.773 1.164 3.332 2.863 3.836 1.598.473 3.129 1.102 4.555 1.875 1.555.844 3.48.562 4.73-.691l.82-.82c1.562-1.559 4.098-1.566 5.66 0 1.559 1.559 1.559 4.098.008 5.648l-.824.82c-1.258 1.254-1.543 3.184-.695 4.746.758 1.395 1.387 2.926 1.875 4.555.504 1.695 2.062 2.855 3.832 2.855h1.176c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m156 90c-8.824 0-16 7.176-16 16s7.176 16 16 16 16-7.176 16-16-7.176-16-16-16zm0 24c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path></g></svg>							\n												<h5>\n													Emotional Support												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m206.102 400.162c-46.373 0-92.751-17.652-128.056-52.957-34.207-34.208-53.046-79.687-53.046-128.061s18.839-93.853 53.046-128.06c70.615-70.615 185.512-70.605 256.117 0 70.614 70.614 70.614 185.507 0 256.121-35.305 35.305-81.683 52.957-128.061 52.957zm0-346.791c-42.47 0-84.94 16.167-117.271 48.498-64.665 64.666-64.665 169.885 0 234.551 64.666 64.666 169.891 64.661 234.547 0 31.328-31.328 48.578-72.978 48.578-117.276 0-44.297-17.25-85.947-48.578-117.275-32.33-32.331-74.801-48.498-117.276-48.498z\"></path><path d=\"m206.102 357.901c-37.063 0-71.905-14.435-98.109-40.643-54.098-54.1-54.098-142.128 0-196.227 54.1-54.1 142.124-54.09 196.223 0 54.1 54.099 54.1 142.128 0 196.227-26.208 26.208-61.051 40.643-98.114 40.643zm0-262.194c-31.626 0-63.25 12.036-87.324 36.109-48.151 48.156-48.151 126.502 0 174.657 23.323 23.328 54.338 36.174 87.324 36.174s64.001-12.845 87.329-36.174c48.151-48.156 48.151-126.502 0-174.657-24.078-24.073-55.703-36.109-87.329-36.109z\"></path><path d=\"m297.428 421.907c-8.813 0-17.618-3.352-24.326-10.061-2.978-2.978-2.978-7.805 0-10.785 2.98-2.98 7.806-2.98 10.786 0 7.468 7.468 19.619 7.468 27.087 0l77.045-77.05c3.615-3.62 5.606-8.427 5.606-13.54 0-5.115-1.991-9.921-5.606-13.541-2.979-2.98-2.979-7.805 0-10.785 2.98-2.979 7.806-2.979 10.785 0 13.412 13.412 13.412 35.241 0 48.652l-77.045 77.05c-6.709 6.707-15.523 10.06-24.332 10.06z\"></path><path d=\"m402.881 461.874c-12.275 0-23.809-4.783-32.489-13.462l-47.992-47.991c-2.979-2.98-2.979-7.805 0-10.785l54.194-54.193c2.979-2.979 7.805-2.979 10.785 0l47.992 47.991c8.679 8.68 13.461 20.215 13.461 32.49s-4.782 23.809-13.461 32.489c-8.68 8.679-20.216 13.461-32.49 13.461zm-64.303-66.846 42.599 42.599c11.967 11.967 31.442 11.967 43.408 0 11.968-11.968 11.968-31.442 0-43.408l-42.599-42.6z\"></path><path d=\"m467.373 461.874h-355.566c-4.211 0-7.627-3.417-7.627-7.628s3.416-7.627 7.627-7.627h355.566c4.211 0 7.627 3.416 7.627 7.627s-3.416 7.628-7.627 7.628z\"></path><path d=\"m401.258 421.926c-1.951 0-3.904-.744-5.392-2.234l-21.675-21.679c-2.98-2.979-2.98-7.806 0-10.786 2.979-2.979 7.805-2.979 10.785 0l21.675 21.68c2.98 2.979 2.98 7.805 0 10.785-1.491 1.489-3.442 2.234-5.393 2.234z\"></path><path d=\"m206.102 305.102c-.814 0-1.628-.129-2.413-.392-3.814-1.272-41.556-24.446-49.383-62.342-6.668-32.305 9.048-65.739 46.716-99.385 2.89-2.583 7.269-2.583 10.16 0 37.668 33.641 53.384 67.079 46.715 99.38-7.826 37.897-45.569 61.076-49.383 62.347-.783.263-1.598.392-2.412.392zm0-146.07c-27.603 26.133-40.27 51.358-37.674 75.049 3.138 28.626 28.11 47.967 37.674 54.392 9.564-6.426 34.541-25.762 37.679-54.392 2.597-23.691-10.075-48.916-37.679-75.049z\"></path><path d=\"m212.691 305.102c-3.48 0-5.675-.164-6.082-.198-2.652-.224-5.001-1.813-6.192-4.192-.029-.06-.243-.501-.268-.561-1.658-3.541-.373-7.757 2.979-9.768 10.835-6.515 63.212-41.869 30.112-98.402-1.073-1.832-1.331-4.027-.715-6.062.615-2.031 2.045-3.715 3.957-4.648 14.42-7.027 32.256-12.021 53.007-14.842 3.889-.571 7.478 1.927 8.427 5.685 11.51 45.499 7.364 80.353-12.324 103.586-22.525 26.577-58.58 29.402-72.901 29.402zm37.744-113.333c22.007 44.953-.696 78.336-19.848 96.52 13.933-2.384 31.348-8.268 43.364-22.45 15.403-18.178 19.019-46.169 10.775-83.267-12.915 2.146-24.4 5.225-34.291 9.197z\"></path><path d=\"m199.553 305.102c-14.291 0-50.42-2.82-72.944-29.416-19.678-23.233-23.824-58.082-12.314-103.571.948-3.758 4.509-6.256 8.422-5.685 20.756 2.821 38.592 7.816 53.012 14.842 1.912.933 3.342 2.617 3.958 4.648.615 2.035.358 4.23-.715 6.062-33.1 56.533 19.276 91.887 30.111 98.402 3.392 2.036 4.662 6.332 2.925 9.887-1.182 2.413-3.734 4.409-6.411 4.633-.408.035-2.589.198-6.044.198zm-72.07-122.529c-8.243 37.088-4.633 65.079 10.765 83.257 12.007 14.177 29.426 20.066 43.364 22.45-19.147-18.184-41.849-51.562-19.837-96.51-9.892-3.973-21.371-7.052-34.292-9.197z\"></path><path d=\"m205.154 304.547c-4.211 0-7.627-3.417-7.627-7.628v-71.533c0-4.211 3.416-7.627 7.627-7.627s7.628 3.416 7.628 7.627v71.533c-.001 4.211-3.417 7.628-7.628 7.628z\"></path></g></svg>							\n												<h5>\n													Self-Exploration												</h5>\n											<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m295.544 178.256a6.741 6.741 0 0 0 -3.689-3.623 6.718 6.718 0 0 0 -8.727 3.475c-.058.16-.123.319-.193.475a6.715 6.715 0 0 0 3.572 8.482q.238.087.473.192a6.789 6.789 0 0 0 8.569-9zm4.657-15.648a21.3 21.3 0 0 1 -18.927 38.018l-.027-.012a21.345 21.345 0 0 1 -11.856-27.305 7.1 7.1 0 0 1 .358-.879 21.238 21.238 0 0 1 11.277-11.14 21.465 21.465 0 0 1 4.89-1.409 108.471 108.471 0 0 1 110.169-79.395l-7.5-9.84a7.256 7.256 0 0 1 11.533-8.807l18.139 23.785a7.255 7.255 0 0 1 -1.364 10.17l-23.793 18.138a7.256 7.256 0 0 1 -8.8-11.532l9.821-7.488a94.123 94.123 0 0 0 -93.917 67.7zm-136.607 130.062c-1.181-.462-2.53-.937-4.2-1.439-1.749-.526-3.761-1.034-5.893-1.571-2.249-.568-4.622-1.167-6.887-1.817a81.221 81.221 0 0 1 -7.736-2.626 52.681 52.681 0 0 1 -7.96-3.915 57.093 57.093 0 0 1 -5.122-3.558 19.314 19.314 0 0 1 -2.1 3.175 29.979 29.979 0 0 1 -4.78 4.617c-1.583 1.254-3.581 2.64-5.787 4.091-1.069.7-2 1.305-2.835 1.842v15.331a30.06 30.06 0 0 0 7.975 20.595 25.087 25.087 0 0 0 37.345 0 30.056 30.056 0 0 0 7.976-20.595v-14.13zm-3.794 117.75q-.863.314-1.737.606a66.691 66.691 0 0 1 -42.171 0q-.874-.292-1.736-.606 8.1 16.046 22.822 31.483 14.722-15.438 22.822-31.483zm-44.516-66.689-1.446 6.36a26.013 26.013 0 0 1 -8.247 14.073q-.63.554-1.295 1.069a86.352 86.352 0 0 0 2.3 24.838 49.4 49.4 0 0 0 13.842 7.2 53.4 53.4 0 0 0 33.079 0 49.4 49.4 0 0 0 13.842-7.2 86.282 86.282 0 0 0 2.3-24.786q-.7-.539-1.362-1.121a26.01 26.01 0 0 1 -8.247-14.073l-1.446-6.36a39.133 39.133 0 0 1 -43.323 0zm102.131 19.247c21.553 5.007 34.482 13.526 35.172 45.641v.142h.028v79.966a7.273 7.273 0 0 1 -7.272 7.273h-216.795a7.273 7.273 0 0 1 -7.273-7.273v-79.966a7.309 7.309 0 0 1 .049-.842c.911-33.257 15.2-40.822 38.733-45.728.5-7.586 1.773-17.265 3.2-28.09 2.421-18.4 5.3-40.261 5.3-60.319a67.9 67.9 0 0 1 19.627-47.875 66.563 66.563 0 0 1 94.957 0 67.889 67.889 0 0 1 19.627 47.875c0 22.494 5.342 45.587 9.591 63.955 2.279 9.851 4.261 18.419 5.062 25.241zm-46.7-31.379a44.85 44.85 0 0 0 7.42-24.8v-18.92a7.275 7.275 0 0 0 -4.889-6.873c-1.2-.525-2.455-1.065-4.1-1.717-1.832-.726-3.692-1.4-5.606-1.978-2.014-.606-4.2-1.158-6.517-1.742-2.01-.507-4.13-1.042-6.433-1.7-2.252-.647-4.44-1.344-6.372-2.113a37.981 37.981 0 0 1 -5.745-2.837 66.527 66.527 0 0 1 -8.659-6.687c-.68-.593-.82-.722-1.072-.939l.012-.014a14.573 14.573 0 0 0 -4.812-3.1c-6.5-2.195-9.224.041-10.259 6.5a21.51 21.51 0 0 0 -.208 2.607 14.785 14.785 0 0 1 -.37 3.3 3.848 3.848 0 0 1 -.715 1.241 16.145 16.145 0 0 1 -2.507 2.344c-1.423 1.129-3.022 2.244-4.707 3.353-1.127.741-3.346 2.131-5.627 3.557a7.274 7.274 0 0 0 -3.8 6.392v19.327a44.847 44.847 0 0 0 7.42 24.8l-3.479 15.309a11.711 11.711 0 0 1 -3.7 6.345 18.2 18.2 0 0 1 -8.506 3.875c-3.592.726-8.189 1.542-12.649 2.326.575-6.608 1.632-14.641 2.8-23.479 2.5-19 5.467-41.557 5.467-62.194a53.45 53.45 0 0 1 15.423-37.7 52.155 52.155 0 0 1 74.275 0 53.45 53.45 0 0 1 15.423 37.7c0 24.013 5.564 48.064 9.989 67.193 1.675 7.243 3.177 13.738 4.1 19.051l-2.054-.362c-4.821-.846-9.929-1.744-13.842-2.535a18.2 18.2 0 0 1 -8.506-3.875 11.711 11.711 0 0 1 -3.7-6.345l-3.482-15.31zm-41.01 149.856h-45.614a7.289 7.289 0 0 0 -.715-1.2 26.958 26.958 0 0 1 -5.261-16.38q0-9.969 5.972-22.523a7.256 7.256 0 0 0 -13.125-6.193q-7.392 15.54-7.393 28.716a41.569 41.569 0 0 0 3.738 17.583h-31.487v-72.697c0-.137 0-.274-.012-.41.791-27.416 16-30.094 40.333-34.368 3.862-.679 7.947-1.4 13.53-2.518a102.527 102.527 0 0 0 9.229 40.627q10.013 22.326 30.808 43.123v26.24zm14.545-26.241q20.795-20.795 30.808-43.121a102.527 102.527 0 0 0 9.226-40.616c5.55 1.115 9.617 1.83 13.466 2.506 24.453 4.3 39.695 6.976 40.344 34.778h-.024v72.694h-31.422a41.554 41.554 0 0 0 3.738-17.583q0-13.176-7.392-28.716a7.256 7.256 0 1 0 -13.125 6.193q5.971 12.554 5.972 22.523a26.959 26.959 0 0 1 -5.262 16.38 7.359 7.359 0 0 0 -.715 1.2h-45.614zm314.57-424.669a17.825 17.825 0 0 1 12.368 4.889 15.841 15.841 0 0 1 4.992 11.445v162.839a15.841 15.841 0 0 1 -4.992 11.445 17.821 17.821 0 0 1 -12.368 4.889h-92.395a7.234 7.234 0 0 0 -3.9 1.136l-22.385 12.384q-.276.151-.532.323l-36.3 20.086v-26.656a7.273 7.273 0 0 0 -7.273-7.273h-55.544a17.824 17.824 0 0 1 -12.368-4.889 15.844 15.844 0 0 1 -4.991-11.445v-162.839a15.842 15.842 0 0 1 4.991-11.445 17.829 17.829 0 0 1 12.368-4.889zm-218.329-14.545h218.329a32.378 32.378 0 0 1 22.425 8.979 30.272 30.272 0 0 1 9.48 21.9v162.839a30.268 30.268 0 0 1 -9.48 21.9 32.375 32.375 0 0 1 -22.425 8.98h-90.544l-21.149 11.7q-.257.141-.518.259l-47.084 26.051a7.236 7.236 0 0 1 -10.73-6.335h-.037v-31.673h-48.267a32.378 32.378 0 0 1 -22.425-8.98 30.272 30.272 0 0 1 -9.48-21.9v-162.841a30.268 30.268 0 0 1 9.48-21.9 32.378 32.378 0 0 1 22.425-8.979zm53.254 72.778-10.193-10.192 10.193-10.193a7.272 7.272 0 0 0 -10.285-10.284l-10.192 10.191-10.192-10.19a7.272 7.272 0 0 0 -10.284 10.284l10.192 10.192-10.192 10.191a7.272 7.272 0 0 0 10.284 10.284l10.192-10.191 10.192 10.192a7.272 7.272 0 0 0 10.285-10.284zm123.469 89.042-10.192-10.192 10.192-10.193a7.272 7.272 0 0 0 -10.284-10.284l-10.192 10.192-10.192-10.191a7.272 7.272 0 1 0 -10.284 10.284l10.192 10.192-10.192 10.191a7.272 7.272 0 1 0 10.284 10.281l10.192-10.191 10.192 10.191a7.272 7.272 0 0 0 10.284-10.284z\" fill-rule=\"evenodd\"></path></svg>							\n												<h5>\n													Coping Strategies												</h5>\n											<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M248.298,398.776v-96.35c0-5.971-2.694-11.517-7.393-15.216l-59.928-47.132c-2.984-2.348-7.254-2.094-9.939,0.592   l-14.349,14.349c-2.986,2.985-4.637,7.118-4.53,11.338c0.106,4.215,1.961,8.252,5.079,11.069l30.406,27.556l-1.867,1.93   c-1.111,1.149-2.665,1.808-4.265,1.808h-5.366c-4.046,0-7.953-1.201-11.299-3.474l-66.646-45.245   c-1.237-0.838-1.976-2.237-1.976-3.742v-42.516c0-8.724-7.102-15.821-15.832-15.821h-23.54c-4.142,0-7.5,3.358-7.5,7.5v72.637   c0,6.404,3.145,12.405,8.408,16.048l46.124,31.979c3.404,2.359,8.077,1.513,10.437-1.89c2.36-3.404,1.514-8.077-1.89-10.437   l-46.128-31.982c-1.222-0.846-1.951-2.235-1.951-3.718v-65.137h16.039c0.458,0,0.832,0.368,0.832,0.821v42.516   c0,6.486,3.2,12.526,8.556,16.155l66.64,45.241c5.84,3.967,12.661,6.064,19.726,6.064h5.366c5.643,0,11.128-2.326,15.047-6.38   l2.254-2.331c2.749-2.837,4.193-6.572,4.066-10.518c-0.127-3.948-1.811-7.585-4.741-10.242l-30.836-27.946   c-0.039-0.036-0.143-0.129-0.148-0.327c-0.005-0.206,0.101-0.312,0.141-0.352l9.642-9.642l54.693,43.015   c1.061,0.834,1.668,2.084,1.668,3.427v88.844h-60.32v-24.995c0-6.607-3.24-12.792-8.658-16.538l-27.532-19.089   c-3.405-2.36-8.077-1.514-10.437,1.89s-1.514,8.077,1.89,10.437l27.541,19.095c1.375,0.951,2.196,2.522,2.196,4.205v24.995h-3.726   c-4.142,0-7.5,3.358-7.5,7.5v58.66c0,0.033,0.004,0.064,0.005,0.097V504.5c0,4.142,3.358,7.5,7.5,7.5h25.971   c4.142,0,7.5-3.358,7.5-7.5c0-4.142-3.358-7.5-7.5-7.5h-18.471v-47.64h71.535v8.07c0,0.016,0.002,0.032,0.002,0.048V497h-23.519   c-4.142,0-7.5,3.358-7.5,7.5c0,4.142,3.358,7.5,7.5,7.5h31.019c4.142,0,7.5-3.358,7.5-7.5v-62.64c0-0.016-0.002-0.032-0.002-0.048   v-42.92C248.293,398.853,248.298,398.815,248.298,398.776z M233.292,434.359h-71.54V406.27h3.62c0.036,0,0.07,0.005,0.106,0.005   h67.814V434.359z\"></path>	</g></g><g>	<g>		<path d=\"M455.147,197.92h-23.535c-8.728,0-15.828,7.101-15.828,15.828v42.51c0,1.501-0.742,2.9-1.984,3.744l-66.637,45.24   c-3.349,2.273-7.258,3.475-11.304,3.475h-5.362c-1.604,0-3.162-0.66-4.279-1.813l-1.862-1.922l30.408-27.549   c3.125-2.831,4.977-6.871,5.08-11.085c0.104-4.215-1.546-8.342-4.526-11.324l-14.354-14.354c-2.687-2.686-6.956-2.939-9.94-0.592   l-47.179,37.107l-12.747,10.025c-4.695,3.693-7.389,9.238-7.389,15.211v96.35c0,0.02,0.003,0.038,0.003,0.058v42.972   c0,0.02-0.003,0.038-0.003,0.058v62.64c0,4.142,3.357,7.5,7.5,7.5h86.538c4.143,0,7.5-3.358,7.5-7.5v-46.973   c0-0.033,0.005-0.064,0.005-0.097v-58.66c0-4.142-3.357-7.5-7.5-7.5h-3.729v-24.994c0-1.68,0.824-3.254,2.204-4.211l98.021-67.96   c5.26-3.647,8.4-9.646,8.4-16.046V205.42C462.647,201.278,459.29,197.92,455.147,197.92z M350.247,497h-71.538v-39.512   c0-0.02,0.003-0.038,0.003-0.058v-8.07h71.535V497z M350.252,434.36h-71.54v-28.088h67.811c0.013,0,0.026-0.002,0.039-0.002h3.69   V434.36z M447.65,278.059h-0.003c0,1.483-0.728,2.874-1.947,3.719l-98.021,67.961c-5.42,3.759-8.656,9.941-8.656,16.538v24.994   H278.71v-88.848c0-1.343,0.605-2.591,1.662-3.421l12.747-10.025l41.946-32.992l9.646,9.646c0.039,0.04,0.144,0.144,0.139,0.347   s-0.114,0.302-0.155,0.339l-30.83,27.931c-2.928,2.653-4.611,6.289-4.74,10.238c-0.128,3.95,1.314,7.688,4.065,10.527l2.256,2.328   c3.924,4.053,9.41,6.377,15.053,6.377h5.362c7.062,0,13.884-2.097,19.729-6.064l66.638-45.241   c5.359-3.639,8.559-9.677,8.559-16.154v-42.51c0-0.457,0.371-0.828,0.828-0.828h16.035V278.059z\"></path>	</g></g><g>	<g>		<path d=\"M256.002,0c-55.95,0-102.985,41.857-109.407,97.364c-0.476,4.115,2.474,7.836,6.588,8.313   c4.12,0.482,7.836-2.474,8.313-6.588C167.042,51.15,207.671,15,256.002,15c52.466,0,95.15,42.684,95.15,95.15   c0,41.507-26.532,77.917-66.021,90.603c-1.723,0.553-3.187,1.71-4.123,3.258l-25.006,41.333l-25.006-41.333   c-0.937-1.548-2.401-2.705-4.123-3.258c-33.804-10.859-58.561-39.313-64.609-74.259c-0.707-4.082-4.587-6.812-8.669-6.111   c-4.082,0.707-6.817,4.588-6.111,8.669c6.842,39.527,34.351,71.881,72.103,85.076l30,49.587c1.358,2.246,3.792,3.618,6.417,3.618   s5.059-1.372,6.417-3.618l29.999-49.587c44.219-15.453,73.732-56.883,73.732-103.978C366.152,49.413,316.739,0,256.002,0z\"></path>	</g></g><g>	<g>		<path d=\"M315.754,102.65h-10.565c-1.234-8.128-4.447-15.612-9.123-21.955l7.492-7.492c2.929-2.929,2.929-7.678,0-10.606   c-2.93-2.929-7.678-2.929-10.607,0l-7.491,7.491c-6.343-4.676-13.827-7.888-21.955-9.123V50.4c0-4.142-3.357-7.5-7.5-7.5   c-4.142,0-7.5,3.358-7.5,7.5v10.565c-8.128,1.234-15.612,4.447-21.955,9.123l-7.491-7.491c-2.929-2.929-7.678-2.929-10.606,0   c-2.929,2.929-2.929,7.678,0,10.606l7.491,7.491c-4.676,6.343-7.889,13.828-9.123,21.956c0,0-10.569,0-10.569,0   c-4.142,0-7.5,3.358-7.5,7.5c0,4.142,3.358,7.5,7.5,7.5h10.565c1.234,8.128,4.447,15.613,9.123,21.956l-7.491,7.491   c-2.929,2.929-2.929,7.678,0,10.606c1.464,1.464,3.384,2.197,5.303,2.197s3.839-0.732,5.303-2.197l7.491-7.491   c6.343,4.676,13.828,7.889,21.956,9.123V169.9c0,4.142,3.358,7.5,7.5,7.5c4.143,0,7.5-3.358,7.5-7.5v-10.565   c8.128-1.234,15.612-4.447,21.956-9.123l7.491,7.491c1.465,1.464,3.385,2.197,5.304,2.197c1.919,0,3.839-0.732,5.304-2.197   c2.929-2.929,2.929-7.678,0-10.606l-7.491-7.491c4.676-6.343,7.889-13.828,9.123-21.956h10.565c4.143,0,7.5-3.358,7.5-7.5   C323.254,106.008,319.897,102.65,315.754,102.65z M290.751,110.164c-0.007,19.151-15.586,34.731-34.738,34.738   c-0.004,0-0.009-0.001-0.013-0.001c-0.004,0-0.009,0.001-0.013,0.001c-19.151-0.007-34.731-15.586-34.738-34.738   c0-0.004,0.001-0.009,0.001-0.013c0-0.004-0.001-0.008-0.001-0.013c0.009-19.154,15.592-34.735,34.746-34.738   c0.002,0,0.004,0,0.006,0s0.004,0,0.006,0c19.155,0.004,34.737,15.584,34.744,34.738c0,0.004-0.001,0.008-0.001,0.013   C290.75,110.155,290.751,110.16,290.751,110.164z\"></path>	</g></g><g>	<g>		<path d=\"M256.002,85.119c-13.802,0-25.032,11.229-25.032,25.031c0,13.803,11.229,25.032,25.032,25.032   c13.803,0,25.031-11.229,25.031-25.031C281.033,96.348,269.804,85.119,256.002,85.119z M256.002,120.182   c-5.532,0-10.032-4.5-10.032-10.031c0-5.532,4.5-10.032,10.032-10.032c5.531,0,10.031,4.5,10.031,10.032   C266.033,115.682,261.533,120.182,256.002,120.182z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>							\n												<h5>\n													Goal Setting												</h5>\n											<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xodm=\"http://www.corel.com/coreldraw/odm/2003\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_2077007814064\"><g id=\"_200306976\"><path d=\"m256 319.44c-1.59 0-3.12-.63-4.24-1.75-11.13-11.13-22.33-21.98-33.17-32.48-62.94-60.98-117.31-113.65-117.31-179.39 0-44.31 36.05-80.35 80.36-80.35 37.74 0 57.46 18.43 74.36 48.87 16.9-30.44 36.62-48.87 74.35-48.87 44.31 0 80.36 36.04 80.36 80.35 0 65.74-54.36 118.41-117.31 179.39-10.83 10.49-22.03 21.35-33.16 32.48-1.12 1.12-2.65 1.75-4.24 1.75zm-74.36-281.97c-37.69 0-68.35 30.66-68.35 68.35 0 60.66 52.67 111.69 113.65 170.77 9.5 9.2 19.27 18.67 29.06 28.39 9.78-9.72 19.56-19.19 29.06-28.39 60.98-59.08 113.65-110.11 113.65-170.77 0-37.69-30.66-68.35-68.35-68.35-31.58 0-49.63 13.72-68.99 52.45-1.02 2.03-3.1 3.31-5.37 3.31s-4.35-1.28-5.37-3.31c-19.36-38.73-37.41-52.45-68.99-52.45z\"></path></g><g><g id=\"_200307000\"><path d=\"m268.35 249.13h-24.7c-3.32 0-6-2.68-6-6v-11.56c-2.07-.72-4.09-1.56-6.06-2.51l-8.18 8.18c-1.13 1.12-2.65 1.75-4.25 1.75-1.59 0-3.11-.63-4.24-1.75l-17.47-17.47c-2.34-2.34-2.34-6.14 0-8.49l8.18-8.18c-.95-1.97-1.79-3.99-2.51-6.06h-11.57c-3.31 0-6-2.68-6-6v-24.7c0-3.32 2.69-6 6-6h11.57c.72-2.07 1.56-4.09 2.51-6.06l-8.18-8.18c-1.13-1.13-1.76-2.65-1.76-4.24 0-1.6.63-3.12 1.76-4.25l17.47-17.47c2.34-2.34 6.14-2.34 8.49 0l8.18 8.18c1.96-.95 3.99-1.79 6.05-2.51v-11.56c0-3.32 2.69-6 6-6h24.71c3.31 0 6 2.68 6 6v11.56c2.07.72 4.09 1.56 6.06 2.51l8.18-8.18c1.12-1.12 2.65-1.76 4.24-1.76s3.12.64 4.24 1.76l17.48 17.47c1.12 1.13 1.75 2.65 1.75 4.25 0 1.59-.63 3.11-1.75 4.24l-8.19 8.18c.96 1.97 1.8 3.99 2.52 6.06h11.56c3.32 0 6 2.68 6 6v24.7c0 3.32-2.68 6-6 6h-11.56c-.72 2.07-1.56 4.09-2.52 6.06l8.19 8.18c1.12 1.13 1.75 2.65 1.75 4.24 0 1.6-.63 3.12-1.75 4.25l-17.47 17.47c-2.35 2.34-6.15 2.34-8.49 0l-8.18-8.18c-1.97.95-3.99 1.79-6.06 2.51v11.57c0 3.31-2.69 5.99-6 5.99zm-18.7-12h12.7v-10.02c0-2.74 1.86-5.14 4.52-5.82 4.06-1.03 7.95-2.64 11.56-4.79 2.36-1.4 5.37-1.02 7.31.92l7.09 7.09 8.99-8.99-7.09-7.09c-1.94-1.94-2.32-4.95-.92-7.31 2.15-3.6 3.76-7.49 4.79-11.56.68-2.66 3.07-4.52 5.82-4.52h10.02v-12.7h-10.02c-2.75 0-5.14-1.87-5.82-4.52-1.03-4.07-2.64-7.95-4.79-11.56-1.4-2.36-1.03-5.37.92-7.31l7.09-7.1-8.99-8.98-7.09 7.09c-1.94 1.94-4.95 2.32-7.31.92-3.61-2.15-7.5-3.77-11.56-4.8-2.66-.67-4.52-3.07-4.52-5.81v-10.03h-12.7v10.03c0 2.74-1.87 5.14-4.53 5.81-4.05 1.04-7.94 2.65-11.55 4.8-2.36 1.4-5.37 1.02-7.31-.92l-7.1-7.09-8.98 8.99 7.09 7.09c1.94 1.94 2.32 4.95.92 7.31-2.15 3.61-3.76 7.5-4.8 11.55-.67 2.66-3.07 4.53-5.81 4.53h-10.02v12.7h10.02c2.74 0 5.14 1.86 5.81 4.52 1.04 4.06 2.65 7.95 4.8 11.56 1.4 2.36 1.02 5.37-.92 7.31l-7.09 7.09 8.98 8.99 7.1-7.09c1.94-1.94 4.95-2.32 7.31-.92 3.61 2.15 7.5 3.76 11.56 4.79 2.66.68 4.52 3.08 4.52 5.82z\"></path></g><g id=\"_200306760\"><path d=\"m256 215.48c-20.29 0-36.8-16.5-36.8-36.79s16.51-36.8 36.8-36.8 36.79 16.51 36.79 36.8-16.5 36.79-36.79 36.79zm0-61.59c-13.67 0-24.8 11.13-24.8 24.8s11.13 24.79 24.8 24.79 24.79-11.12 24.79-24.79-11.12-24.8-24.79-24.8z\"></path></g></g><g id=\"_200306784\"><path d=\"m461.9 340.14c-.4 0-.8-.04-1.21-.12-2.77-.57-4.77-3.01-4.79-5.84-.01-.8-.54-16.35-18.14-25.35-4.77 6.05-14.98 15.83-31.26 15.83-7.09 0-14.53-1.91-22.17-5.68-1.97 2.49-4.39 6.45-4.71 11.19-.17 2.67-2.1 4.89-4.71 5.46-2.62.57-5.29-.67-6.56-3.03-.73-1.35-17.54-33.58 6.24-66.87.25-.34.54-.67.85-.95.53-.48 13.04-11.64 29.73-11.64 8.33 0 16.16 2.73 23.32 8.11 6.78.84 29.41 4.94 40.34 22.87 8.21 13.48 7.74 31.11-1.42 52.39-.96 2.24-3.15 3.63-5.51 3.63zm-26.24-44.82c.73 0 1.45.13 2.16.41 12.4 4.82 19.68 12.11 23.97 19.04 1.81-9.72.76-17.87-3.18-24.36-9.39-15.48-32.65-17.38-32.88-17.39-1.23-.09-2.4-.56-3.35-1.33-5.36-4.35-11.14-6.55-17.2-6.55-10.52 0-19.21 6.52-21.25 8.17-10.03 14.4-10.85 28.57-9.39 38.73 2.4-3.14 4.55-4.96 4.74-5.12 1.93-1.61 4.66-1.85 6.84-.59 7.27 4.2 14.13 6.33 20.38 6.33 15.81 0 23.56-13.64 23.88-14.22 1.09-1.97 3.15-3.12 5.28-3.12z\"></path></g><g id=\"_200307264\"><path d=\"m419.46 411.58c-.16 0-.32 0-.48 0-10.3-.15-20.06-5.17-28.23-14.52-7.44-8.5-13.2-20.37-16.78-34.51-9.81-1.95-15.33-9.01-16.53-15.9-1.66-9.54 3.98-18.57 14.03-22.48 3.08-1.2 6.56.33 7.76 3.42s-.33 6.56-3.41 7.77c-5.64 2.19-7.06 6.34-6.56 9.23.53 3.02 3.36 6.31 9.74 6.48 2.77.08 5.12 2.03 5.71 4.73 5.7 26.37 19.22 43.55 34.45 43.78h.29c14.2 0 26.75-15.15 32.81-39.65.62-2.5 2.75-4.32 5.31-4.54 5.81-.5 8.33-3.74 8.74-6.61.43-2.97-1.08-6.91-6.58-9.05-3.09-1.2-4.62-4.68-3.42-7.76 1.2-3.09 4.68-4.62 7.77-3.42 9.78 3.8 15.45 12.62 14.11 21.93-1.15 8.02-6.99 14.03-15.29 16.15-7.91 27.89-24.31 44.95-43.44 44.95z\"></path></g><g id=\"_200306808\"><path d=\"m332.55 486.53c-1.59 0-3.11-.63-4.24-1.75-1.12-1.13-1.76-2.65-1.76-4.25 0-44.88 21.25-52.28 38.32-58.24 13.67-4.77 23.55-8.21 24.07-29.7.08-3.31 2.86-5.89 6.15-5.85 3.31.08 5.93 2.83 5.85 6.15-.73 29.78-17.41 35.6-32.12 40.73-15.3 5.34-28.64 9.99-30.13 40.91h161.17c-1.49-30.92-14.83-35.57-30.13-40.91-14.73-5.13-31.42-10.96-32.12-40.8-.08-3.31 2.54-6.06 5.85-6.14 3.31-.11 6.06 2.54 6.14 5.86.51 21.53 10.4 24.98 24.08 29.75 17.07 5.96 38.32 13.36 38.32 58.24 0 3.31-2.69 6-6 6z\"></path></g><g id=\"_200306616\"><path d=\"m419.27 443.04c-15.8 0-30.68-6.12-41.9-17.25-2.36-2.33-2.38-6.13-.04-8.48 2.33-2.35 6.13-2.37 8.48-.04 8.96 8.88 20.85 13.77 33.46 13.77 12.62 0 24.5-4.89 33.46-13.77 2.36-2.33 6.16-2.31 8.49.04s2.31 6.15-.04 8.48c-11.22 11.13-26.11 17.25-41.91 17.25z\"></path></g><g id=\"_200307672\"><path d=\"m374.04 486.53c-3.32 0-6-2.68-6-6v-19.82c0-3.31 2.68-6 6-6 3.31 0 6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307888\"><path d=\"m464.51 486.53c-3.31 0-6-2.68-6-6v-19.82c0-3.31 2.69-6 6-6s6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307744\"><path d=\"m135.35 340.14c-.4 0-.8-.04-1.21-.12-2.77-.57-4.77-3.01-4.79-5.84-.01-.8-.54-16.35-18.14-25.35-4.77 6.05-14.98 15.83-31.26 15.83-7.09 0-14.53-1.91-22.17-5.68-1.97 2.49-4.39 6.45-4.7 11.19-.18 2.67-2.11 4.89-4.72 5.46-2.62.57-5.29-.67-6.56-3.03-.72-1.35-17.54-33.58 6.24-66.87.25-.34.54-.67.86-.95.52-.48 13.03-11.64 29.73-11.64 8.32 0 16.16 2.73 23.31 8.11 6.78.84 29.41 4.94 40.34 22.87 8.22 13.48 7.74 31.11-1.42 52.39-.96 2.24-3.15 3.63-5.51 3.63zm-26.25-44.82c.72 0 1.46.13 2.17.41 12.4 4.82 19.69 12.1 23.97 19.04 1.81-9.72.76-17.87-3.18-24.36-9.39-15.48-32.65-17.37-32.88-17.39-1.22-.09-2.4-.56-3.35-1.33-5.36-4.35-11.14-6.55-17.2-6.55-10.52 0-19.21 6.52-21.24 8.17-10.04 14.4-10.85 28.57-9.4 38.73 2.4-3.14 4.55-4.96 4.74-5.12 1.93-1.61 4.67-1.85 6.84-.59 7.27 4.2 14.13 6.33 20.38 6.33 16.01 0 23.79-14.05 23.86-14.2 1.08-1.98 3.14-3.14 5.29-3.14z\"></path></g><g id=\"_200307960\"><path d=\"m92.91 411.58c-.16 0-.32 0-.48 0-10.3-.15-20.06-5.17-28.23-14.52-7.44-8.5-13.2-20.37-16.79-34.51-9.8-1.95-15.32-9.01-16.52-15.9-1.66-9.54 3.98-18.57 14.03-22.48 3.08-1.2 6.56.33 7.76 3.42s-.33 6.56-3.41 7.77c-5.64 2.19-7.06 6.34-6.56 9.23.53 3.02 3.36 6.31 9.74 6.48 2.77.08 5.12 2.03 5.71 4.73 5.7 26.37 19.22 43.55 34.45 43.78h.29c14.2 0 26.75-15.15 32.81-39.65.62-2.5 2.75-4.32 5.31-4.54 5.81-.5 8.33-3.74 8.74-6.61.43-2.97-1.08-6.91-6.58-9.05-3.09-1.2-4.62-4.68-3.42-7.76 1.2-3.09 4.68-4.62 7.77-3.42 9.78 3.8 15.45 12.62 14.11 21.93-1.16 8.02-6.99 14.03-15.3 16.15-7.9 27.89-24.3 44.95-43.43 44.95z\"></path></g><g id=\"_200307408\"><path d=\"m6 486.53c-1.59 0-3.11-.63-4.24-1.75-1.12-1.13-1.76-2.65-1.76-4.25 0-44.88 21.25-52.28 38.32-58.24 13.67-4.77 23.55-8.21 24.08-29.7.08-3.31 2.82-5.89 6.14-5.85 3.31.08 5.93 2.83 5.85 6.15-.73 29.78-17.41 35.6-32.12 40.73-15.3 5.34-28.64 9.99-30.13 40.91h161.17c-1.5-30.92-14.83-35.57-30.13-40.91-14.73-5.13-31.42-10.96-32.12-40.8-.08-3.31 2.54-6.06 5.85-6.14 3.27-.11 6.06 2.54 6.14 5.86.51 21.53 10.4 24.98 24.08 29.75 17.07 5.96 38.32 13.36 38.32 58.24 0 3.31-2.69 6-6 6h-173.45z\"></path></g><g id=\"_200307648\"><path d=\"m92.73 443.04c-15.81 0-30.69-6.12-41.91-17.25-2.36-2.33-2.37-6.13-.04-8.48s6.13-2.37 8.48-.04c8.97 8.88 20.85 13.77 33.47 13.77 12.61 0 24.49-4.89 33.45-13.77 2.36-2.33 6.16-2.31 8.49.04s2.31 6.15-.04 8.48c-11.22 11.13-26.11 17.25-41.9 17.25z\"></path></g><g id=\"_200307720\"><path d=\"m47.49 486.53c-3.32 0-6-2.68-6-6v-19.82c0-3.31 2.68-6 6-6 3.31 0 6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307456\"><path d=\"m137.96 486.53c-3.31 0-6-2.68-6-6v-19.82c0-3.31 2.69-6 6-6s6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307840\"><path d=\"m94.44 269.46c-3.31 0-6-2.68-6-6v-23.34c0-8.01 6.52-14.53 14.53-14.53h70.38c3.31 0 6 2.69 6 6 0 3.32-2.69 6-6 6h-70.38c-1.37 0-2.53 1.16-2.53 2.53v23.34c0 3.32-2.68 6-6 6zm323.12-1.73c-3.32 0-6-2.69-6-6v-21.61c0-1.37-1.16-2.53-2.53-2.53h-70.38c-3.31 0-6-2.68-6-6 0-3.31 2.69-6 6-6h70.37c8.02 0 14.54 6.52 14.54 14.53v21.61c0 3.31-2.69 6-6 6z\"></path></g></g></g></svg>							\n												<h5>\n													Relationship Improvement												</h5>\n											<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m434.61 333.03-21.34-36.58c6.76-18.2 7.07-35.07.96-51.47-5.64-15.15-16.96-29.98-34.59-45.33-11.13-9.69-23.22-17.82-35.9-24.21.12-3.43-1.13-6.87-3.68-9.41l-11.45-11.45c-.24-.24-.28-.47-.12-.78 1.77-3.49 3.28-7.13 4.5-10.84.11-.32.3-.46.64-.46h16.19c6.99 0 12.67-5.68 12.67-12.67v-22.44c0-6.99-5.68-12.67-12.67-12.67h-16.19c-.34 0-.53-.14-.64-.46-1.22-3.71-2.73-7.35-4.5-10.84-.15-.3-.12-.53.12-.77l11.45-11.45c2.39-2.39 3.71-5.57 3.71-8.96s-1.32-6.57-3.71-8.96l-15.87-15.87c-2.39-2.39-5.57-3.71-8.96-3.71s-6.57 1.32-8.96 3.71l-11.45 11.45c-.24.24-.47.28-.77.12-3.48-1.77-7.13-3.28-10.84-4.5-.32-.11-.46-.3-.46-.64v-16.17c0-6.99-5.68-12.67-12.67-12.67h-22.44c-6.99 0-12.67 5.68-12.67 12.67v16.19c0 .34-.14.53-.46.64-3.7 1.22-7.35 2.73-10.84 4.5-.3.15-.54.12-.77-.12l-11.45-11.45c-2.39-2.39-5.57-3.71-8.96-3.71s-6.57 1.32-8.96 3.71l-15.87 15.87c-2.39 2.39-3.71 5.57-3.71 8.96s1.32 6.57 3.71 8.96l11.45 11.45c.24.24.28.47.12.77-1.77 3.49-3.28 7.13-4.5 10.84-.11.32-.3.46-.64.46h-16.19c-6.99 0-12.67 5.68-12.67 12.67v10.02c-.5 1.37-.76 2.83-.76 4.3v16.19c0 .34-.14.53-.46.64-3.7 1.22-7.35 2.73-10.84 4.5-.3.15-.54.12-.78-.12l-11.45-11.45c-2.39-2.39-5.57-3.71-8.96-3.71s-6.57 1.32-8.96 3.71l-15.87 15.87c-2.39 2.39-3.71 5.57-3.71 8.96s1.32 6.57 3.71 8.96l11.45 11.45c.24.24.28.47.12.77-1.77 3.49-3.28 7.13-4.49 10.84-.11.32-.3.46-.64.46h-16.16c-6.99 0-12.67 5.68-12.67 12.67v22.44c0 6.99 5.68 12.67 12.67 12.67h16.19c.34 0 .53.14.63.46 1.22 3.7 2.73 7.35 4.5 10.84.15.3.12.53-.12.77l-11.45 11.45c-2.39 2.39-3.71 5.57-3.71 8.96s1.32 6.57 3.71 8.96l15.87 15.87c2.39 2.39 5.57 3.71 8.96 3.71s6.57-1.32 8.96-3.71l11.45-11.45c.24-.24.47-.28.78-.12 2.63 1.33 5.35 2.52 8.12 3.55 3.63 25.86 18.43 52.67 31.88 77.01 3.47 6.29 6.76 12.23 9.84 18.11 12.69 35.72 7.66 78.5-12.56 106.56l-6.85 9.51h173.63v-44.26c38.01-.13 59.59-5.99 67.67-18.29 6.96-10.6 1.74-22.31-1.38-29.3-.44-.98-.98-2.19-1.34-3.11 3.35-4.7 4.47-10.39 3.12-16.07.14-.2.3-.41.43-.59 2.26-3.05 6.46-8.74 3.06-18.47-.43-1.24-.63-2.03-.72-2.5.71-.41 1.88-.97 2.87-1.44 1.82-.86 4.08-1.94 6.69-3.46 4.46-2.6 7.64-6.79 8.96-11.8s.59-10.29-2.01-14.74zm-267.36-225.64c0-.36.31-.67.67-.67h16.19c5.49 0 10.32-3.5 12.04-8.71 1.03-3.13 2.31-6.21 3.8-9.16 2.48-4.9 1.54-10.8-2.34-14.68l-11.45-11.45c-.13-.13-.19-.29-.19-.47 0-.19.06-.35.19-.47l15.87-15.87c.25-.25.69-.25.95 0l11.45 11.45c3.88 3.88 9.78 4.82 14.68 2.34 2.95-1.49 6.03-2.77 9.16-3.8 5.21-1.71 8.72-6.55 8.72-12.04v-16.19c0-.36.31-.67.67-.67h22.44c.36 0 .67.31.67.67v16.19c0 5.49 3.5 10.32 8.71 12.04 3.13 1.03 6.21 2.31 9.16 3.8 4.9 2.48 10.8 1.54 14.68-2.34l11.45-11.45c.25-.25.69-.25.95 0l15.87 15.87c.13.13.19.29.19.47 0 .19-.06.35-.19.47l-11.45 11.45c-3.88 3.88-4.83 9.78-2.34 14.68 1.49 2.95 2.77 6.03 3.8 9.16 1.71 5.21 6.55 8.71 12.04 8.71h16.19c.36 0 .67.31.67.67v22.44c0 .36-.31.67-.67.67h-16.19c-5.49 0-10.32 3.5-12.04 8.71-1.03 3.13-2.31 6.21-3.8 9.16-2.48 4.9-1.54 10.8 2.34 14.68l4.07 4.07c-6.1-2.13-12.28-3.88-18.52-5.21-5.2-1.11-10.41-1.91-15.6-2.44 12.29-9.41 20.24-24.22 20.24-40.86 0-28.37-23.08-51.45-51.45-51.45s-51.45 23.08-51.45 51.45c0 20.1 11.59 37.53 28.43 45.99-1.46.45-2.91.93-4.35 1.43-13.15 4.6-25.02 11.14-35.4 19.37l-9.95-9.95c-.13-.13-.19-.28-.19-.47s.06-.35.19-.47l11.45-11.45c3.88-3.88 4.82-9.78 2.34-14.68-1.49-2.95-2.77-6.03-3.8-9.16-1.71-5.21-6.55-8.72-12.04-8.72h-16.19c-.36 0-.67-.31-.67-.67zm91.61 50.67c-21.75 0-39.45-17.7-39.45-39.45s17.7-39.45 39.45-39.45 39.45 17.7 39.45 39.45-17.7 39.45-39.45 39.45zm-81.2 25.88 9.4 9.4c-14.24 13.88-24.92 31.39-31.29 51.61-10.4-7.3-16.85-19.33-16.85-32.3 0-20.29 15.4-37.05 35.13-39.21-.06.51-.1 1.02-.1 1.54 0 3.39 1.32 6.57 3.71 8.96zm-43.73 89.97-11.45 11.45c-.25.25-.69.25-.94 0l-15.87-15.87c-.16-.16-.19-.34-.19-.47 0-.19.06-.35.19-.47l11.45-11.45c3.88-3.88 4.83-9.78 2.34-14.68-1.49-2.95-2.77-6.03-3.8-9.16-1.71-5.21-6.55-8.72-12.04-8.72h-16.19c-.36 0-.67-.31-.67-.67v-22.44c0-.36.31-.67.67-.67h16.19c5.49 0 10.32-3.5 12.04-8.71 1.03-3.13 2.31-6.21 3.8-9.16 2.48-4.9 1.54-10.8-2.34-14.68l-11.45-11.45c-.16-.16-.19-.34-.19-.47 0-.19.06-.35.19-.47l15.87-15.87c.25-.25.69-.25.95 0l11.45 11.45c3.88 3.88 9.78 4.82 14.68 2.34 2.95-1.49 6.03-2.77 9.16-3.8 3.75-1.23 6.61-4.09 7.92-7.63.72.13 1.47.21 2.23.21h16.19c.34 0 .53.14.63.46 1.22 3.7 2.73 7.35 4.5 10.84.15.3.12.53-.12.77l-6.78 6.78c-1.31-.1-2.64-.16-3.95-.16-28.37 0-51.45 23.08-51.45 51.45 0 18.39 9.91 35.35 25.61 44.49-.35 1.61-.69 3.23-.99 4.86-.64 3.46-.96 6.96-1.05 10.48-.63-.3-1.27-.6-1.89-.91-4.92-2.5-10.82-1.55-14.7 2.33zm291.06 70.74c-.5 1.91-1.71 3.5-3.4 4.49-2.17 1.27-4.1 2.18-5.8 2.99-6.98 3.32-12.43 7.02-8.33 18.75 1.31 3.74.35 5.03-1.38 7.37-1.5 2.02-4 5.41-2.62 9.89.88 2.86.29 5.54-1.71 7.76-3.67 4.08-1.39 9.2.82 14.14 3.1 6.95 5.42 13.09 2.31 17.82-3.31 5.04-15.96 13.42-63.57 12.85l-6.07-.07v44.36h-138.97c17.34-30.83 20.69-72.96 7.92-108.51l-.14-.39-.19-.37c-3.21-6.12-6.59-12.24-10.17-18.72-17.49-31.65-35.57-64.37-30.34-92.85 7.68-41.83 33.96-73.47 72.1-86.8 44.14-15.44 96.37-3.43 136.3 31.34 33.22 28.92 41.99 54.65 29.31 86.02l-1.1 2.73 24.28 41.62c.99 1.69 1.25 3.67.75 5.58zm-145.92-155.19c-51.35 0-93.14 41.78-93.14 93.14 0 51.35 41.78 93.13 93.14 93.13s93.14-41.78 93.14-93.13c0-51.36-41.78-93.14-93.14-93.14zm0 174.27c-44.74 0-81.14-36.4-81.14-81.13s36.4-81.14 81.14-81.14 81.14 36.4 81.14 81.14-36.4 81.13-81.14 81.13zm29.28-94.9c-3.51-13.57-12.31-26.17-25.63-36.38-2.15-1.65-5.15-1.65-7.3 0-13.32 10.22-22.12 22.81-25.63 36.38-7.81-2.14-16.51-2.65-25.56-1.45-2.69.35-4.81 2.47-5.16 5.16-2.5 18.97 2.38 35.68 13.74 47.04 9.42 9.42 22.51 14.38 37.52 14.38 2.85 0 5.77-.19 8.74-.55 2.98.36 5.89.55 8.74.55 15.01 0 28.1-4.96 37.52-14.38 11.36-11.36 16.24-28.07 13.74-47.04-.35-2.69-2.47-4.81-5.16-5.16-9.05-1.19-17.75-.68-25.56 1.45zm-29.28-23.87c12.29 10.71 19.01 23.83 19.01 37.34s-6.71 26.63-19.01 37.34c-12.29-10.71-19.01-23.83-19.01-37.34s6.72-26.63 19.01-37.34zm-48.55 33.87c6.31-.35 12.26.35 17.57 2.02-.01.48-.02.96-.02 1.45 0 14.08 5.57 27.65 15.92 39.27-9.08-1.12-16.89-4.67-22.68-10.47-7.77-7.75-11.52-19.08-10.79-32.27zm86.33 32.27c-5.8 5.8-13.61 9.34-22.68 10.47 10.35-11.63 15.91-25.19 15.91-39.27 0-.48-.01-.96-.02-1.45 5.31-1.67 11.25-2.36 17.57-2.02.73 13.19-3.03 24.52-10.78 32.27z\"></path></svg>							\n												<h5>\n													Skill Development												</h5>\n											<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m273.006 83.567v168.425h87.5a4 4 0 1 1 0 8h-87.5v168.433h87.5a4 4 0 0 1 0 8h-91.5a4 4 0 0 1 -4-4v-172.431h-23.979a4 4 0 1 1 0-8h23.973v-172.428a4 4 0 0 1 4-4h91.5a4 4 0 0 1 0 8zm170 415.36a66.5 66.5 0 1 0 -66.5-66.5 66.569 66.569 0 0 0 66.5 66.5zm0-352.86a66.5 66.5 0 1 0 -66.5-66.5 66.569 66.569 0 0 0 66.5 66.5zm0 176.427a66.5 66.5 0 1 0 -66.498-66.494 66.569 66.569 0 0 0 66.5 66.494zm-344.212-195.217-6.473 100.7a4.046 4.046 0 0 0 .55 2.3l17.454 29.364a3.994 3.994 0 0 0 6.88 0l17.454-29.364a3.983 3.983 0 0 0 .55-2.3l-6.473-100.7 60.793 15.639c16.032 4.116 26.821 18.062 27.5 35.53v140.818a19.6 19.6 0 0 1 -6.9 15.283 37.861 37.861 0 0 1 -11.274 6.887 15.2 15.2 0 0 1 -12.961-.608v-142.018a4 4 0 1 0 -8 0v291.546a13.657 13.657 0 0 1 -13.646 13.639h-32.839a13.657 13.657 0 0 1 -13.646-13.639v-130.33a4 4 0 1 0 -8 0v130.33a13.657 13.657 0 0 1 -13.646 13.639h-32.831a13.651 13.651 0 0 1 -13.639-13.639v-291.546a4 4 0 0 0 -8 0v142.018a15.314 15.314 0 0 1 -12.967.608 37.924 37.924 0 0 1 -11.28-6.887 19.616 19.616 0 0 1 -6.895-15.283v-140.818c.672-17.468 11.46-31.414 27.492-35.53l60.793-15.639zm-96.287 50.948v141.039a27.649 27.649 0 0 0 9.61 21.284 45.823 45.823 0 0 0 13.638 8.338 23.478 23.478 0 0 0 15.89.6v140.868a21.667 21.667 0 0 0 21.641 21.646h32.836a21.632 21.632 0 0 0 17.647-9.131 21.608 21.608 0 0 0 17.64 9.131h32.836a21.673 21.673 0 0 0 21.647-21.641v-140.88a22.827 22.827 0 0 0 7.016 1.114 24.352 24.352 0 0 0 8.867-1.707 45.84 45.84 0 0 0 13.639-8.338 27.648 27.648 0 0 0 9.609-21.284v-141.039c-.786-21.127-13.932-38.031-33.493-43.06l-61.836-15.911c22.691-13.039 31.486-42.089 31.807-67.909.193-15.46-4.622-28.557-13.924-37.887a47.161 47.161 0 0 0 -33.301-13.458h-.943a47.221 47.221 0 0 0 -33.379 13.46c-9.3 9.33-14.118 22.427-13.925 37.887.322 25.82 9.124 54.87 31.815 67.909l-61.836 15.909c-19.562 5.029-32.715 21.933-33.5 43.06zm444.493-61.479a4 4 0 1 1 -8 0v-33.179h-33.164a4 4 0 0 1 0-8h33.172v-33.174a4 4 0 0 1 8 0v33.172h33.172a4 4 0 0 1 0 8h-33.18v33.179zm0 102.081v33.165h33.172a4 4 0 1 1 0 8h-33.172v33.171a4 4 0 1 1 -8 0v-33.169h-33.164a4 4 0 0 1 0-8h33.172v-33.167a4 4 0 1 1 8 0zm0 176.419v33.179h33.172a4 4 0 0 1 0 8h-33.172v33.175a4 4 0 0 1 -8 0v-33.173h-33.164a4 4 0 0 1 0-8h33.172v-33.181a4 4 0 1 1 8 0z\" fill-rule=\"evenodd\"></path></svg>							\n												<h5>\n													Tailored Approaches												</h5>\n											<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.</p>										\n		Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 14:29:17', '2026-06-17 14:29:17', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=711', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(712, 1, '2026-06-17 14:29:18', '2026-06-17 14:29:18', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"\" />																<h2>Psychiatric Evaluation</h2>		<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual\'s mental health by exploring factors affecting various aspects of life and well-being.</p><p>It considers details such as current symptoms, medical and psychiatric history, lifestyle, relationships, spirituality, and stress management.</p>			<h2>Medication &amp; Nutritional Management</h2>		<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p><p>Nutritional management focuses on the role of diet and nutrition in mental health.</p><p>Combining medication and nutritional management provides a holistic approach to mental health care. This integrated strategy aims to:</p>													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />													<ul style=\"margin-left: 18px;\"><li>Enhance the effectiveness of medications through optimal nutrition.</li><li>Reduce side effects of medications by addressing nutritional deficiencies.</li><li>Empower individuals to take an active role in their mental health through lifestyle and dietary changes.</li></ul>*Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked.													<img width=\"1000\" height=\"666\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"\" />																<h2>Psychotherapy</h2>		<ul style=\"margin-left: 18px;\">\n 	<li>Individual therapy</li>\n 	<li>Couples/marriage therapy</li>\n 	<li>Family therapy</li>\n 	<li>Child/teen therapy</li>\n 	<li>Online therapy</li>\n 	<li>COMMON SPECIALTIES &amp; approaches</li>\n 	<li>Anxiety therapy</li>\n 	<li>Cognitive behavioral therapy (CBT)</li>\n 	<li>Depression counseling</li>\n 	<li>Dialectical behavior therapy (DBT)</li>\n 	<li>Grief &amp; loss counseling</li>\n 	<li>Relational therapy</li>\n</ul>			<h3>Therapy can be highly beneficial for mental health for several reasons:</h3>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 64 64.1999969\" width=\"512\"><path d=\"m51.2529297 42.0226555c.6357422-.6357422.9863281-1.4804688.9863281-2.3808594 0-.8994141-.3500977-1.7441406-.9863281-2.3808594-1.3125-1.3125-3.4492188-1.3125-4.7617188 0l-9.3178711 9.3173828c-.7426758.7441406-1.1518555 1.7314453-1.1518555 2.7822266v11.6396484c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-5.109375l11.5913086-11.5917969c.1875-.1875.2929688-.4414062.2929688-.7070312v-11.5488281c0-2.0097656-1.6347656-3.6445312-3.6445312-3.6445312s-3.6450195 1.6347656-3.6450195 3.6445312v8.6582031l-4.2260742 4.2255859c-.1459961.1455078-.3828125.1435547-.527832 0-.1455078-.1455078-.1455078-.3818359 0-.5273438zm-3.7910156 4.3183594c.9243164.9248047 2.4306641.9267578 3.355957 0l4.519043-4.5185547c.1875-.1875.2929688-.4414062.2929688-.7070312v-9.0722656c0-.9072266.737793-1.6445312 1.6450195-1.6445312.9067383 0 1.6445312.7373047 1.6445312 1.6445312v11.1347656l-11.5913086 11.5917968c-.1875.1875-.2929688.4414062-.2929688.7070312v4.5234375h-9.0136719v-10.6396484c0-.5166016.2011719-1.0029297.5664062-1.3681641l9.3173828-9.3173828c.5332031-.5332031 1.4008789-.5332031 1.9331055 0 .2583008.2587891.4008789.6015625.4008789.9667969s-.1420898.7089844-.4003906.9667969l-2.3769531 2.3769531c-.9252929.9248047-.9252929 2.4306641.0000001 3.3554688z\"></path><path d=\"m6.7250977 28.398632c-2.0097656 0-3.6445312 1.6347656-3.6445312 3.6445312v11.5488281c0 .265625.1054688.5195312.2929688.7070312l11.5913086 11.5917969v5.109375c0 .5527344.4477539 1 1 1h11.0136719c.5522461 0 1-.4472656 1-1v-11.6396483c0-1.0507812-.4091797-2.0380859-1.1523438-2.7822266l-9.3173828-9.3173828c-1.3125-1.3125-3.4487305-1.3125-4.762207 0-.6357422.6367188-.9858398 1.4814453-.9858398 2.3808594 0 .9003906.3505859 1.7451172.9863281 2.3808594l2.3769531 2.3769531c.1455078.1455078.1455078.3818359 0 .5273438s-.3823242.1435547-.527832 0l-4.2260742-4.2255859v-8.6582031c-.0000002-2.0097657-1.6352541-3.6445314-3.6450197-3.6445314zm6.4570312 17.9423829c.925293.9267578 2.4316406.9257812 3.355957 0 .925293-.9248047.925293-2.4306641 0-3.3554688l-2.3769531-2.3769531c-.2583008-.2578125-.4003906-.6015625-.4003906-.9667969s.1425781-.7080078.4003906-.9667969c.5332031-.5332031 1.4003906-.5332031 1.9335938 0l9.3168945 9.3173828c.3657227.3652344.5668945.8515625.5668945 1.3681641v10.6396484h-9.0136719v-4.5234375c0-.265625-.1054688-.5195312-.2929688-.7070312l-11.5913085-11.5917969v-11.1347656c0-.9072266.737793-1.6445312 1.6445312-1.6445312.9072266 0 1.6450195.7373047 1.6450195 1.6445312v9.0722656c0 .265625.1054688.5195312.2929688.7070312z\"></path><path d=\"m32 2.0998046c-10.0986328 0-18.3144531 8.2158203-18.3144531 18.3144531s8.2158203 18.3144525 18.3144531 18.3144525 18.3144531-8.2158203 18.3144531-18.3144531-8.2158203-18.3144525-18.3144531-18.3144525zm0 2.0000003c7.614502 0 14.0088501 5.2510376 15.798584 12.3173819-3.1233521-2.2542105-8.8903809-3.70996-15.798584-3.70996s-12.6752319 1.4557495-15.798584 3.70996c1.7897339-7.0663443 8.184082-12.3173819 15.798584-12.3173819zm16.3144531 16.3144521c0 2.6992188-6.7001953 5.7070312-16.3144531 5.7070312s-16.3144531-3.0078125-16.3144531-5.7070312 6.7001953-5.7070302 16.3144531-5.7070302 16.3144531 3.0078115 16.3144531 5.7070302zm-16.3144531 16.3144532c-7.614502 0-14.0088501-5.2510376-15.798584-12.3173828 3.1233521 2.2542114 8.8903809 3.7099609 15.798584 3.7099609s12.6752319-1.4557495 15.798584-3.7099609c-1.7897339 7.0663452-8.184082 12.3173828-15.798584 12.3173828z\"></path></svg>							\n												<h5>\n													Safe Space												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"friendship-work\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><circle cx=\"72\" cy=\"102\" r=\"4\"></circle><circle cx=\"64\" cy=\"50\" r=\"4\"></circle><path d=\"m228 98h4v4c0 2.211 1.789 4 4 4s4-1.789 4-4v-4h4c2.211 0 4-1.789 4-4s-1.789-4-4-4h-4v-4c0-2.211-1.789-4-4-4s-4 1.789-4 4v4h-4c-2.211 0-4 1.789-4 4s1.789 4 4 4z\"></path><path d=\"m132 218h-16v-5.977c0-13.759-8.223-25.608-20-30.964v-35.059c0-.031-.017-.057-.018-.088 4.839-3.653 8.018-9.396 8.018-15.912 0-2.211-1.789-4-4-4h-30.707c-7.328 0-13.293 5.965-13.293 13.293v25.953c0 5.361 2.096 10.206 5.444 13.892-14.614 3.818-25.444 17.092-25.444 32.885v49.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-49.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v9.977c0 2.211 1.789 4 4 4h8v8h-20v-17.582c0-2.211-1.789-4-4-4s-4 1.789-4 4v21.582 24c0 2.211 1.789 4 4 4s4-1.789 4-4v-20h32c6.617 0 12-5.383 12-12s-5.383-12-12-12zm-68-78.707c0-2.918 2.375-5.293 5.293-5.293h26.023c-1.652 4.656-6.102 8-11.316 8h-20zm12.754 38.707c-7.031 0-12.754-5.723-12.754-12.754v-15.246h24v28zm55.246 56h-4v-8h4c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m56 210c-2.211 0-4 1.789-4 4v48c0 2.211 1.789 4 4 4s4-1.789 4-4v-48c0-2.211-1.789-4-4-4z\"></path><path d=\"m238.009 178.998c3.704-3.95 5.991-9.243 5.991-15.072v-9.926c0-11.027-8.973-20-20-20s-20 8.973-20 20v27.06c-11.777 5.355-20 17.205-20 30.964v45.976c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-14.347 11.676-26.023 26.023-26.023h11.953c14.348 0 26.024 11.676 26.024 26.023v45.977c0 2.211 1.789 4 4 4s4-1.789 4-4v-45.977c0-15.99-11.1-29.402-25.991-33.025zm-26.009-.998v-24c0-6.617 5.383-12 12-12s12 5.383 12 12v9.926c0 7.762-6.312 14.074-14.074 14.074z\"></path><path d=\"m204 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m244 214c-2.211 0-4 1.789-4 4v40c0 2.211 1.789 4 4 4s4-1.789 4-4v-40c0-2.211-1.789-4-4-4z\"></path><path d=\"m185.41 118.613c.102-.242.203-.488.301-.734 5.809-.832 10.289-5.844 10.289-11.879 0-1.206-.223-2.353-.555-3.452 10.229-11.777 15.466-22.512 15.466-31.899-.001-20.208-15.274-36.649-34.048-36.649-7.633 0-14.91 2.711-20.863 7.707-5.953-4.996-13.23-7.707-20.863-7.707-18.773 0-34.047 16.441-34.047 36.648 0 9.39 5.238 20.125 15.465 31.903-.333 1.098-.555 2.244-.555 3.449 0 6.035 4.48 11.047 10.289 11.879.098.246.199.488.301.73-3.516 4.699-3.141 11.406 1.125 15.672 4.27 4.27 10.98 4.633 15.672 1.129.242.102.488.203.734.301.832 5.809 5.844 10.289 11.879 10.289s11.047-4.48 11.879-10.289c.246-.098.492-.199.734-.301 4.688 3.504 11.398 3.141 15.672-1.129 4.262-4.261 4.641-10.965 1.125-15.668zm-50.273-76.613c6.707 0 13.09 2.82 17.965 7.945 1.516 1.586 4.281 1.586 5.797 0 4.874-5.125 11.257-7.945 17.964-7.945 14.363 0 26.047 12.852 26.047 28.648 0 6.991-4.298 15.714-12.379 25.343-1.433-.939-3.052-1.616-4.82-1.87-.098-.246-.199-.488-.301-.73 3.516-4.699 3.141-11.406-1.125-15.672-4.273-4.27-10.984-4.637-15.672-1.129-.242-.102-.488-.203-.734-.301-.832-5.809-5.844-10.289-11.879-10.289s-11.047 4.48-11.879 10.289c-.246.098-.492.199-.734.301-4.691-3.508-11.402-3.141-15.672 1.129-4.262 4.262-4.641 10.965-1.125 15.668-.102.242-.203.488-.301.734-1.769.253-3.387.931-4.821 1.87-8.079-9.625-12.378-18.35-12.378-25.343 0-15.796 11.683-28.648 26.047-28.648zm47.687 68c-1.77 0-3.328 1.16-3.832 2.855-.488 1.629-1.117 3.16-1.875 4.555-.848 1.562-.562 3.492.695 4.746l.812.812c1.562 1.559 1.562 4.098.004 5.656-1.562 1.566-4.098 1.559-5.66 0l-.82-.82c-1.254-1.254-3.18-1.535-4.73-.691-1.426.773-2.957 1.402-4.555 1.875-1.699.504-2.863 2.062-2.863 3.836v1.176c0 2.207-1.793 4-4 4s-4-1.793-4-4v-1.176c0-1.773-1.164-3.332-2.863-3.836-1.598-.473-3.129-1.102-4.555-1.875-.598-.324-1.254-.48-1.902-.48-1.035 0-2.059.402-2.828 1.172l-.82.82c-1.559 1.559-4.094 1.566-5.66 0-1.559-1.559-1.559-4.098-.008-5.648l.824-.82c1.258-1.254 1.543-3.184.695-4.746-.758-1.395-1.387-2.926-1.875-4.555-.504-1.695-2.062-2.855-3.832-2.855h-1.176c-2.207 0-4-1.793-4-4s1.793-4 4-4h1.176c1.77 0 3.328-1.16 3.832-2.855.488-1.629 1.117-3.16 1.875-4.555.848-1.562.562-3.492-.695-4.746l-.812-.812c-1.562-1.559-1.562-4.098-.004-5.656 1.57-1.562 4.105-1.559 5.66 0l.82.82c1.25 1.25 3.18 1.531 4.73.691 1.426-.773 2.957-1.402 4.555-1.875 1.699-.504 2.863-2.062 2.863-3.836v-1.177c0-2.207 1.793-4 4-4s4 1.793 4 4v1.176c0 1.773 1.164 3.332 2.863 3.836 1.598.473 3.129 1.102 4.555 1.875 1.555.844 3.48.562 4.73-.691l.82-.82c1.562-1.559 4.098-1.566 5.66 0 1.559 1.559 1.559 4.098.008 5.648l-.824.82c-1.258 1.254-1.543 3.184-.695 4.746.758 1.395 1.387 2.926 1.875 4.555.504 1.695 2.062 2.855 3.832 2.855h1.176c2.207 0 4 1.793 4 4s-1.793 4-4 4z\"></path><path d=\"m156 90c-8.824 0-16 7.176-16 16s7.176 16 16 16 16-7.176 16-16-7.176-16-16-16zm0 24c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path></g></svg>							\n												<h5>\n													Emotional Support												</h5>\n											<p>Therapy provides a confidential environment where individuals can express their thoughts and feelings without judgment.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m206.102 400.162c-46.373 0-92.751-17.652-128.056-52.957-34.207-34.208-53.046-79.687-53.046-128.061s18.839-93.853 53.046-128.06c70.615-70.615 185.512-70.605 256.117 0 70.614 70.614 70.614 185.507 0 256.121-35.305 35.305-81.683 52.957-128.061 52.957zm0-346.791c-42.47 0-84.94 16.167-117.271 48.498-64.665 64.666-64.665 169.885 0 234.551 64.666 64.666 169.891 64.661 234.547 0 31.328-31.328 48.578-72.978 48.578-117.276 0-44.297-17.25-85.947-48.578-117.275-32.33-32.331-74.801-48.498-117.276-48.498z\"></path><path d=\"m206.102 357.901c-37.063 0-71.905-14.435-98.109-40.643-54.098-54.1-54.098-142.128 0-196.227 54.1-54.1 142.124-54.09 196.223 0 54.1 54.099 54.1 142.128 0 196.227-26.208 26.208-61.051 40.643-98.114 40.643zm0-262.194c-31.626 0-63.25 12.036-87.324 36.109-48.151 48.156-48.151 126.502 0 174.657 23.323 23.328 54.338 36.174 87.324 36.174s64.001-12.845 87.329-36.174c48.151-48.156 48.151-126.502 0-174.657-24.078-24.073-55.703-36.109-87.329-36.109z\"></path><path d=\"m297.428 421.907c-8.813 0-17.618-3.352-24.326-10.061-2.978-2.978-2.978-7.805 0-10.785 2.98-2.98 7.806-2.98 10.786 0 7.468 7.468 19.619 7.468 27.087 0l77.045-77.05c3.615-3.62 5.606-8.427 5.606-13.54 0-5.115-1.991-9.921-5.606-13.541-2.979-2.98-2.979-7.805 0-10.785 2.98-2.979 7.806-2.979 10.785 0 13.412 13.412 13.412 35.241 0 48.652l-77.045 77.05c-6.709 6.707-15.523 10.06-24.332 10.06z\"></path><path d=\"m402.881 461.874c-12.275 0-23.809-4.783-32.489-13.462l-47.992-47.991c-2.979-2.98-2.979-7.805 0-10.785l54.194-54.193c2.979-2.979 7.805-2.979 10.785 0l47.992 47.991c8.679 8.68 13.461 20.215 13.461 32.49s-4.782 23.809-13.461 32.489c-8.68 8.679-20.216 13.461-32.49 13.461zm-64.303-66.846 42.599 42.599c11.967 11.967 31.442 11.967 43.408 0 11.968-11.968 11.968-31.442 0-43.408l-42.599-42.6z\"></path><path d=\"m467.373 461.874h-355.566c-4.211 0-7.627-3.417-7.627-7.628s3.416-7.627 7.627-7.627h355.566c4.211 0 7.627 3.416 7.627 7.627s-3.416 7.628-7.627 7.628z\"></path><path d=\"m401.258 421.926c-1.951 0-3.904-.744-5.392-2.234l-21.675-21.679c-2.98-2.979-2.98-7.806 0-10.786 2.979-2.979 7.805-2.979 10.785 0l21.675 21.68c2.98 2.979 2.98 7.805 0 10.785-1.491 1.489-3.442 2.234-5.393 2.234z\"></path><path d=\"m206.102 305.102c-.814 0-1.628-.129-2.413-.392-3.814-1.272-41.556-24.446-49.383-62.342-6.668-32.305 9.048-65.739 46.716-99.385 2.89-2.583 7.269-2.583 10.16 0 37.668 33.641 53.384 67.079 46.715 99.38-7.826 37.897-45.569 61.076-49.383 62.347-.783.263-1.598.392-2.412.392zm0-146.07c-27.603 26.133-40.27 51.358-37.674 75.049 3.138 28.626 28.11 47.967 37.674 54.392 9.564-6.426 34.541-25.762 37.679-54.392 2.597-23.691-10.075-48.916-37.679-75.049z\"></path><path d=\"m212.691 305.102c-3.48 0-5.675-.164-6.082-.198-2.652-.224-5.001-1.813-6.192-4.192-.029-.06-.243-.501-.268-.561-1.658-3.541-.373-7.757 2.979-9.768 10.835-6.515 63.212-41.869 30.112-98.402-1.073-1.832-1.331-4.027-.715-6.062.615-2.031 2.045-3.715 3.957-4.648 14.42-7.027 32.256-12.021 53.007-14.842 3.889-.571 7.478 1.927 8.427 5.685 11.51 45.499 7.364 80.353-12.324 103.586-22.525 26.577-58.58 29.402-72.901 29.402zm37.744-113.333c22.007 44.953-.696 78.336-19.848 96.52 13.933-2.384 31.348-8.268 43.364-22.45 15.403-18.178 19.019-46.169 10.775-83.267-12.915 2.146-24.4 5.225-34.291 9.197z\"></path><path d=\"m199.553 305.102c-14.291 0-50.42-2.82-72.944-29.416-19.678-23.233-23.824-58.082-12.314-103.571.948-3.758 4.509-6.256 8.422-5.685 20.756 2.821 38.592 7.816 53.012 14.842 1.912.933 3.342 2.617 3.958 4.648.615 2.035.358 4.23-.715 6.062-33.1 56.533 19.276 91.887 30.111 98.402 3.392 2.036 4.662 6.332 2.925 9.887-1.182 2.413-3.734 4.409-6.411 4.633-.408.035-2.589.198-6.044.198zm-72.07-122.529c-8.243 37.088-4.633 65.079 10.765 83.257 12.007 14.177 29.426 20.066 43.364 22.45-19.147-18.184-41.849-51.562-19.837-96.51-9.892-3.973-21.371-7.052-34.292-9.197z\"></path><path d=\"m205.154 304.547c-4.211 0-7.627-3.417-7.627-7.628v-71.533c0-4.211 3.416-7.627 7.627-7.627s7.628 3.416 7.628 7.627v71.533c-.001 4.211-3.417 7.628-7.628 7.628z\"></path></g></svg>							\n												<h5>\n													Self-Exploration												</h5>\n											<p>Therapy encourages self-reflection and insight, helping individuals understand their emotions, behaviors, and patterns.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m295.544 178.256a6.741 6.741 0 0 0 -3.689-3.623 6.718 6.718 0 0 0 -8.727 3.475c-.058.16-.123.319-.193.475a6.715 6.715 0 0 0 3.572 8.482q.238.087.473.192a6.789 6.789 0 0 0 8.569-9zm4.657-15.648a21.3 21.3 0 0 1 -18.927 38.018l-.027-.012a21.345 21.345 0 0 1 -11.856-27.305 7.1 7.1 0 0 1 .358-.879 21.238 21.238 0 0 1 11.277-11.14 21.465 21.465 0 0 1 4.89-1.409 108.471 108.471 0 0 1 110.169-79.395l-7.5-9.84a7.256 7.256 0 0 1 11.533-8.807l18.139 23.785a7.255 7.255 0 0 1 -1.364 10.17l-23.793 18.138a7.256 7.256 0 0 1 -8.8-11.532l9.821-7.488a94.123 94.123 0 0 0 -93.917 67.7zm-136.607 130.062c-1.181-.462-2.53-.937-4.2-1.439-1.749-.526-3.761-1.034-5.893-1.571-2.249-.568-4.622-1.167-6.887-1.817a81.221 81.221 0 0 1 -7.736-2.626 52.681 52.681 0 0 1 -7.96-3.915 57.093 57.093 0 0 1 -5.122-3.558 19.314 19.314 0 0 1 -2.1 3.175 29.979 29.979 0 0 1 -4.78 4.617c-1.583 1.254-3.581 2.64-5.787 4.091-1.069.7-2 1.305-2.835 1.842v15.331a30.06 30.06 0 0 0 7.975 20.595 25.087 25.087 0 0 0 37.345 0 30.056 30.056 0 0 0 7.976-20.595v-14.13zm-3.794 117.75q-.863.314-1.737.606a66.691 66.691 0 0 1 -42.171 0q-.874-.292-1.736-.606 8.1 16.046 22.822 31.483 14.722-15.438 22.822-31.483zm-44.516-66.689-1.446 6.36a26.013 26.013 0 0 1 -8.247 14.073q-.63.554-1.295 1.069a86.352 86.352 0 0 0 2.3 24.838 49.4 49.4 0 0 0 13.842 7.2 53.4 53.4 0 0 0 33.079 0 49.4 49.4 0 0 0 13.842-7.2 86.282 86.282 0 0 0 2.3-24.786q-.7-.539-1.362-1.121a26.01 26.01 0 0 1 -8.247-14.073l-1.446-6.36a39.133 39.133 0 0 1 -43.323 0zm102.131 19.247c21.553 5.007 34.482 13.526 35.172 45.641v.142h.028v79.966a7.273 7.273 0 0 1 -7.272 7.273h-216.795a7.273 7.273 0 0 1 -7.273-7.273v-79.966a7.309 7.309 0 0 1 .049-.842c.911-33.257 15.2-40.822 38.733-45.728.5-7.586 1.773-17.265 3.2-28.09 2.421-18.4 5.3-40.261 5.3-60.319a67.9 67.9 0 0 1 19.627-47.875 66.563 66.563 0 0 1 94.957 0 67.889 67.889 0 0 1 19.627 47.875c0 22.494 5.342 45.587 9.591 63.955 2.279 9.851 4.261 18.419 5.062 25.241zm-46.7-31.379a44.85 44.85 0 0 0 7.42-24.8v-18.92a7.275 7.275 0 0 0 -4.889-6.873c-1.2-.525-2.455-1.065-4.1-1.717-1.832-.726-3.692-1.4-5.606-1.978-2.014-.606-4.2-1.158-6.517-1.742-2.01-.507-4.13-1.042-6.433-1.7-2.252-.647-4.44-1.344-6.372-2.113a37.981 37.981 0 0 1 -5.745-2.837 66.527 66.527 0 0 1 -8.659-6.687c-.68-.593-.82-.722-1.072-.939l.012-.014a14.573 14.573 0 0 0 -4.812-3.1c-6.5-2.195-9.224.041-10.259 6.5a21.51 21.51 0 0 0 -.208 2.607 14.785 14.785 0 0 1 -.37 3.3 3.848 3.848 0 0 1 -.715 1.241 16.145 16.145 0 0 1 -2.507 2.344c-1.423 1.129-3.022 2.244-4.707 3.353-1.127.741-3.346 2.131-5.627 3.557a7.274 7.274 0 0 0 -3.8 6.392v19.327a44.847 44.847 0 0 0 7.42 24.8l-3.479 15.309a11.711 11.711 0 0 1 -3.7 6.345 18.2 18.2 0 0 1 -8.506 3.875c-3.592.726-8.189 1.542-12.649 2.326.575-6.608 1.632-14.641 2.8-23.479 2.5-19 5.467-41.557 5.467-62.194a53.45 53.45 0 0 1 15.423-37.7 52.155 52.155 0 0 1 74.275 0 53.45 53.45 0 0 1 15.423 37.7c0 24.013 5.564 48.064 9.989 67.193 1.675 7.243 3.177 13.738 4.1 19.051l-2.054-.362c-4.821-.846-9.929-1.744-13.842-2.535a18.2 18.2 0 0 1 -8.506-3.875 11.711 11.711 0 0 1 -3.7-6.345l-3.482-15.31zm-41.01 149.856h-45.614a7.289 7.289 0 0 0 -.715-1.2 26.958 26.958 0 0 1 -5.261-16.38q0-9.969 5.972-22.523a7.256 7.256 0 0 0 -13.125-6.193q-7.392 15.54-7.393 28.716a41.569 41.569 0 0 0 3.738 17.583h-31.487v-72.697c0-.137 0-.274-.012-.41.791-27.416 16-30.094 40.333-34.368 3.862-.679 7.947-1.4 13.53-2.518a102.527 102.527 0 0 0 9.229 40.627q10.013 22.326 30.808 43.123v26.24zm14.545-26.241q20.795-20.795 30.808-43.121a102.527 102.527 0 0 0 9.226-40.616c5.55 1.115 9.617 1.83 13.466 2.506 24.453 4.3 39.695 6.976 40.344 34.778h-.024v72.694h-31.422a41.554 41.554 0 0 0 3.738-17.583q0-13.176-7.392-28.716a7.256 7.256 0 1 0 -13.125 6.193q5.971 12.554 5.972 22.523a26.959 26.959 0 0 1 -5.262 16.38 7.359 7.359 0 0 0 -.715 1.2h-45.614zm314.57-424.669a17.825 17.825 0 0 1 12.368 4.889 15.841 15.841 0 0 1 4.992 11.445v162.839a15.841 15.841 0 0 1 -4.992 11.445 17.821 17.821 0 0 1 -12.368 4.889h-92.395a7.234 7.234 0 0 0 -3.9 1.136l-22.385 12.384q-.276.151-.532.323l-36.3 20.086v-26.656a7.273 7.273 0 0 0 -7.273-7.273h-55.544a17.824 17.824 0 0 1 -12.368-4.889 15.844 15.844 0 0 1 -4.991-11.445v-162.839a15.842 15.842 0 0 1 4.991-11.445 17.829 17.829 0 0 1 12.368-4.889zm-218.329-14.545h218.329a32.378 32.378 0 0 1 22.425 8.979 30.272 30.272 0 0 1 9.48 21.9v162.839a30.268 30.268 0 0 1 -9.48 21.9 32.375 32.375 0 0 1 -22.425 8.98h-90.544l-21.149 11.7q-.257.141-.518.259l-47.084 26.051a7.236 7.236 0 0 1 -10.73-6.335h-.037v-31.673h-48.267a32.378 32.378 0 0 1 -22.425-8.98 30.272 30.272 0 0 1 -9.48-21.9v-162.841a30.268 30.268 0 0 1 9.48-21.9 32.378 32.378 0 0 1 22.425-8.979zm53.254 72.778-10.193-10.192 10.193-10.193a7.272 7.272 0 0 0 -10.285-10.284l-10.192 10.191-10.192-10.19a7.272 7.272 0 0 0 -10.284 10.284l10.192 10.192-10.192 10.191a7.272 7.272 0 0 0 10.284 10.284l10.192-10.191 10.192 10.192a7.272 7.272 0 0 0 10.285-10.284zm123.469 89.042-10.192-10.192 10.192-10.193a7.272 7.272 0 0 0 -10.284-10.284l-10.192 10.192-10.192-10.191a7.272 7.272 0 1 0 -10.284 10.284l10.192 10.192-10.192 10.191a7.272 7.272 0 1 0 10.284 10.281l10.192-10.191 10.192 10.191a7.272 7.272 0 0 0 10.284-10.284z\" fill-rule=\"evenodd\"></path></svg>							\n												<h5>\n													Coping Strategies												</h5>\n											<p>Therapists can teach practical tools and techniques to manage stress, anxiety, depression, and other mental health issues.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M248.298,398.776v-96.35c0-5.971-2.694-11.517-7.393-15.216l-59.928-47.132c-2.984-2.348-7.254-2.094-9.939,0.592   l-14.349,14.349c-2.986,2.985-4.637,7.118-4.53,11.338c0.106,4.215,1.961,8.252,5.079,11.069l30.406,27.556l-1.867,1.93   c-1.111,1.149-2.665,1.808-4.265,1.808h-5.366c-4.046,0-7.953-1.201-11.299-3.474l-66.646-45.245   c-1.237-0.838-1.976-2.237-1.976-3.742v-42.516c0-8.724-7.102-15.821-15.832-15.821h-23.54c-4.142,0-7.5,3.358-7.5,7.5v72.637   c0,6.404,3.145,12.405,8.408,16.048l46.124,31.979c3.404,2.359,8.077,1.513,10.437-1.89c2.36-3.404,1.514-8.077-1.89-10.437   l-46.128-31.982c-1.222-0.846-1.951-2.235-1.951-3.718v-65.137h16.039c0.458,0,0.832,0.368,0.832,0.821v42.516   c0,6.486,3.2,12.526,8.556,16.155l66.64,45.241c5.84,3.967,12.661,6.064,19.726,6.064h5.366c5.643,0,11.128-2.326,15.047-6.38   l2.254-2.331c2.749-2.837,4.193-6.572,4.066-10.518c-0.127-3.948-1.811-7.585-4.741-10.242l-30.836-27.946   c-0.039-0.036-0.143-0.129-0.148-0.327c-0.005-0.206,0.101-0.312,0.141-0.352l9.642-9.642l54.693,43.015   c1.061,0.834,1.668,2.084,1.668,3.427v88.844h-60.32v-24.995c0-6.607-3.24-12.792-8.658-16.538l-27.532-19.089   c-3.405-2.36-8.077-1.514-10.437,1.89s-1.514,8.077,1.89,10.437l27.541,19.095c1.375,0.951,2.196,2.522,2.196,4.205v24.995h-3.726   c-4.142,0-7.5,3.358-7.5,7.5v58.66c0,0.033,0.004,0.064,0.005,0.097V504.5c0,4.142,3.358,7.5,7.5,7.5h25.971   c4.142,0,7.5-3.358,7.5-7.5c0-4.142-3.358-7.5-7.5-7.5h-18.471v-47.64h71.535v8.07c0,0.016,0.002,0.032,0.002,0.048V497h-23.519   c-4.142,0-7.5,3.358-7.5,7.5c0,4.142,3.358,7.5,7.5,7.5h31.019c4.142,0,7.5-3.358,7.5-7.5v-62.64c0-0.016-0.002-0.032-0.002-0.048   v-42.92C248.293,398.853,248.298,398.815,248.298,398.776z M233.292,434.359h-71.54V406.27h3.62c0.036,0,0.07,0.005,0.106,0.005   h67.814V434.359z\"></path>	</g></g><g>	<g>		<path d=\"M455.147,197.92h-23.535c-8.728,0-15.828,7.101-15.828,15.828v42.51c0,1.501-0.742,2.9-1.984,3.744l-66.637,45.24   c-3.349,2.273-7.258,3.475-11.304,3.475h-5.362c-1.604,0-3.162-0.66-4.279-1.813l-1.862-1.922l30.408-27.549   c3.125-2.831,4.977-6.871,5.08-11.085c0.104-4.215-1.546-8.342-4.526-11.324l-14.354-14.354c-2.687-2.686-6.956-2.939-9.94-0.592   l-47.179,37.107l-12.747,10.025c-4.695,3.693-7.389,9.238-7.389,15.211v96.35c0,0.02,0.003,0.038,0.003,0.058v42.972   c0,0.02-0.003,0.038-0.003,0.058v62.64c0,4.142,3.357,7.5,7.5,7.5h86.538c4.143,0,7.5-3.358,7.5-7.5v-46.973   c0-0.033,0.005-0.064,0.005-0.097v-58.66c0-4.142-3.357-7.5-7.5-7.5h-3.729v-24.994c0-1.68,0.824-3.254,2.204-4.211l98.021-67.96   c5.26-3.647,8.4-9.646,8.4-16.046V205.42C462.647,201.278,459.29,197.92,455.147,197.92z M350.247,497h-71.538v-39.512   c0-0.02,0.003-0.038,0.003-0.058v-8.07h71.535V497z M350.252,434.36h-71.54v-28.088h67.811c0.013,0,0.026-0.002,0.039-0.002h3.69   V434.36z M447.65,278.059h-0.003c0,1.483-0.728,2.874-1.947,3.719l-98.021,67.961c-5.42,3.759-8.656,9.941-8.656,16.538v24.994   H278.71v-88.848c0-1.343,0.605-2.591,1.662-3.421l12.747-10.025l41.946-32.992l9.646,9.646c0.039,0.04,0.144,0.144,0.139,0.347   s-0.114,0.302-0.155,0.339l-30.83,27.931c-2.928,2.653-4.611,6.289-4.74,10.238c-0.128,3.95,1.314,7.688,4.065,10.527l2.256,2.328   c3.924,4.053,9.41,6.377,15.053,6.377h5.362c7.062,0,13.884-2.097,19.729-6.064l66.638-45.241   c5.359-3.639,8.559-9.677,8.559-16.154v-42.51c0-0.457,0.371-0.828,0.828-0.828h16.035V278.059z\"></path>	</g></g><g>	<g>		<path d=\"M256.002,0c-55.95,0-102.985,41.857-109.407,97.364c-0.476,4.115,2.474,7.836,6.588,8.313   c4.12,0.482,7.836-2.474,8.313-6.588C167.042,51.15,207.671,15,256.002,15c52.466,0,95.15,42.684,95.15,95.15   c0,41.507-26.532,77.917-66.021,90.603c-1.723,0.553-3.187,1.71-4.123,3.258l-25.006,41.333l-25.006-41.333   c-0.937-1.548-2.401-2.705-4.123-3.258c-33.804-10.859-58.561-39.313-64.609-74.259c-0.707-4.082-4.587-6.812-8.669-6.111   c-4.082,0.707-6.817,4.588-6.111,8.669c6.842,39.527,34.351,71.881,72.103,85.076l30,49.587c1.358,2.246,3.792,3.618,6.417,3.618   s5.059-1.372,6.417-3.618l29.999-49.587c44.219-15.453,73.732-56.883,73.732-103.978C366.152,49.413,316.739,0,256.002,0z\"></path>	</g></g><g>	<g>		<path d=\"M315.754,102.65h-10.565c-1.234-8.128-4.447-15.612-9.123-21.955l7.492-7.492c2.929-2.929,2.929-7.678,0-10.606   c-2.93-2.929-7.678-2.929-10.607,0l-7.491,7.491c-6.343-4.676-13.827-7.888-21.955-9.123V50.4c0-4.142-3.357-7.5-7.5-7.5   c-4.142,0-7.5,3.358-7.5,7.5v10.565c-8.128,1.234-15.612,4.447-21.955,9.123l-7.491-7.491c-2.929-2.929-7.678-2.929-10.606,0   c-2.929,2.929-2.929,7.678,0,10.606l7.491,7.491c-4.676,6.343-7.889,13.828-9.123,21.956c0,0-10.569,0-10.569,0   c-4.142,0-7.5,3.358-7.5,7.5c0,4.142,3.358,7.5,7.5,7.5h10.565c1.234,8.128,4.447,15.613,9.123,21.956l-7.491,7.491   c-2.929,2.929-2.929,7.678,0,10.606c1.464,1.464,3.384,2.197,5.303,2.197s3.839-0.732,5.303-2.197l7.491-7.491   c6.343,4.676,13.828,7.889,21.956,9.123V169.9c0,4.142,3.358,7.5,7.5,7.5c4.143,0,7.5-3.358,7.5-7.5v-10.565   c8.128-1.234,15.612-4.447,21.956-9.123l7.491,7.491c1.465,1.464,3.385,2.197,5.304,2.197c1.919,0,3.839-0.732,5.304-2.197   c2.929-2.929,2.929-7.678,0-10.606l-7.491-7.491c4.676-6.343,7.889-13.828,9.123-21.956h10.565c4.143,0,7.5-3.358,7.5-7.5   C323.254,106.008,319.897,102.65,315.754,102.65z M290.751,110.164c-0.007,19.151-15.586,34.731-34.738,34.738   c-0.004,0-0.009-0.001-0.013-0.001c-0.004,0-0.009,0.001-0.013,0.001c-19.151-0.007-34.731-15.586-34.738-34.738   c0-0.004,0.001-0.009,0.001-0.013c0-0.004-0.001-0.008-0.001-0.013c0.009-19.154,15.592-34.735,34.746-34.738   c0.002,0,0.004,0,0.006,0s0.004,0,0.006,0c19.155,0.004,34.737,15.584,34.744,34.738c0,0.004-0.001,0.008-0.001,0.013   C290.75,110.155,290.751,110.16,290.751,110.164z\"></path>	</g></g><g>	<g>		<path d=\"M256.002,85.119c-13.802,0-25.032,11.229-25.032,25.031c0,13.803,11.229,25.032,25.032,25.032   c13.803,0,25.031-11.229,25.031-25.031C281.033,96.348,269.804,85.119,256.002,85.119z M256.002,120.182   c-5.532,0-10.032-4.5-10.032-10.031c0-5.532,4.5-10.032,10.032-10.032c5.531,0,10.031,4.5,10.031,10.032   C266.033,115.682,261.533,120.182,256.002,120.182z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>							\n												<h5>\n													Goal Setting												</h5>\n											<p>Therapy can help individuals set and work toward personal goals, fostering a sense of direction and purpose.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xodm=\"http://www.corel.com/coreldraw/odm/2003\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" image-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" text-rendering=\"geometricPrecision\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"Layer_x0020_1\"><g id=\"_2077007814064\"><g id=\"_200306976\"><path d=\"m256 319.44c-1.59 0-3.12-.63-4.24-1.75-11.13-11.13-22.33-21.98-33.17-32.48-62.94-60.98-117.31-113.65-117.31-179.39 0-44.31 36.05-80.35 80.36-80.35 37.74 0 57.46 18.43 74.36 48.87 16.9-30.44 36.62-48.87 74.35-48.87 44.31 0 80.36 36.04 80.36 80.35 0 65.74-54.36 118.41-117.31 179.39-10.83 10.49-22.03 21.35-33.16 32.48-1.12 1.12-2.65 1.75-4.24 1.75zm-74.36-281.97c-37.69 0-68.35 30.66-68.35 68.35 0 60.66 52.67 111.69 113.65 170.77 9.5 9.2 19.27 18.67 29.06 28.39 9.78-9.72 19.56-19.19 29.06-28.39 60.98-59.08 113.65-110.11 113.65-170.77 0-37.69-30.66-68.35-68.35-68.35-31.58 0-49.63 13.72-68.99 52.45-1.02 2.03-3.1 3.31-5.37 3.31s-4.35-1.28-5.37-3.31c-19.36-38.73-37.41-52.45-68.99-52.45z\"></path></g><g><g id=\"_200307000\"><path d=\"m268.35 249.13h-24.7c-3.32 0-6-2.68-6-6v-11.56c-2.07-.72-4.09-1.56-6.06-2.51l-8.18 8.18c-1.13 1.12-2.65 1.75-4.25 1.75-1.59 0-3.11-.63-4.24-1.75l-17.47-17.47c-2.34-2.34-2.34-6.14 0-8.49l8.18-8.18c-.95-1.97-1.79-3.99-2.51-6.06h-11.57c-3.31 0-6-2.68-6-6v-24.7c0-3.32 2.69-6 6-6h11.57c.72-2.07 1.56-4.09 2.51-6.06l-8.18-8.18c-1.13-1.13-1.76-2.65-1.76-4.24 0-1.6.63-3.12 1.76-4.25l17.47-17.47c2.34-2.34 6.14-2.34 8.49 0l8.18 8.18c1.96-.95 3.99-1.79 6.05-2.51v-11.56c0-3.32 2.69-6 6-6h24.71c3.31 0 6 2.68 6 6v11.56c2.07.72 4.09 1.56 6.06 2.51l8.18-8.18c1.12-1.12 2.65-1.76 4.24-1.76s3.12.64 4.24 1.76l17.48 17.47c1.12 1.13 1.75 2.65 1.75 4.25 0 1.59-.63 3.11-1.75 4.24l-8.19 8.18c.96 1.97 1.8 3.99 2.52 6.06h11.56c3.32 0 6 2.68 6 6v24.7c0 3.32-2.68 6-6 6h-11.56c-.72 2.07-1.56 4.09-2.52 6.06l8.19 8.18c1.12 1.13 1.75 2.65 1.75 4.24 0 1.6-.63 3.12-1.75 4.25l-17.47 17.47c-2.35 2.34-6.15 2.34-8.49 0l-8.18-8.18c-1.97.95-3.99 1.79-6.06 2.51v11.57c0 3.31-2.69 5.99-6 5.99zm-18.7-12h12.7v-10.02c0-2.74 1.86-5.14 4.52-5.82 4.06-1.03 7.95-2.64 11.56-4.79 2.36-1.4 5.37-1.02 7.31.92l7.09 7.09 8.99-8.99-7.09-7.09c-1.94-1.94-2.32-4.95-.92-7.31 2.15-3.6 3.76-7.49 4.79-11.56.68-2.66 3.07-4.52 5.82-4.52h10.02v-12.7h-10.02c-2.75 0-5.14-1.87-5.82-4.52-1.03-4.07-2.64-7.95-4.79-11.56-1.4-2.36-1.03-5.37.92-7.31l7.09-7.1-8.99-8.98-7.09 7.09c-1.94 1.94-4.95 2.32-7.31.92-3.61-2.15-7.5-3.77-11.56-4.8-2.66-.67-4.52-3.07-4.52-5.81v-10.03h-12.7v10.03c0 2.74-1.87 5.14-4.53 5.81-4.05 1.04-7.94 2.65-11.55 4.8-2.36 1.4-5.37 1.02-7.31-.92l-7.1-7.09-8.98 8.99 7.09 7.09c1.94 1.94 2.32 4.95.92 7.31-2.15 3.61-3.76 7.5-4.8 11.55-.67 2.66-3.07 4.53-5.81 4.53h-10.02v12.7h10.02c2.74 0 5.14 1.86 5.81 4.52 1.04 4.06 2.65 7.95 4.8 11.56 1.4 2.36 1.02 5.37-.92 7.31l-7.09 7.09 8.98 8.99 7.1-7.09c1.94-1.94 4.95-2.32 7.31-.92 3.61 2.15 7.5 3.76 11.56 4.79 2.66.68 4.52 3.08 4.52 5.82z\"></path></g><g id=\"_200306760\"><path d=\"m256 215.48c-20.29 0-36.8-16.5-36.8-36.79s16.51-36.8 36.8-36.8 36.79 16.51 36.79 36.8-16.5 36.79-36.79 36.79zm0-61.59c-13.67 0-24.8 11.13-24.8 24.8s11.13 24.79 24.8 24.79 24.79-11.12 24.79-24.79-11.12-24.8-24.79-24.8z\"></path></g></g><g id=\"_200306784\"><path d=\"m461.9 340.14c-.4 0-.8-.04-1.21-.12-2.77-.57-4.77-3.01-4.79-5.84-.01-.8-.54-16.35-18.14-25.35-4.77 6.05-14.98 15.83-31.26 15.83-7.09 0-14.53-1.91-22.17-5.68-1.97 2.49-4.39 6.45-4.71 11.19-.17 2.67-2.1 4.89-4.71 5.46-2.62.57-5.29-.67-6.56-3.03-.73-1.35-17.54-33.58 6.24-66.87.25-.34.54-.67.85-.95.53-.48 13.04-11.64 29.73-11.64 8.33 0 16.16 2.73 23.32 8.11 6.78.84 29.41 4.94 40.34 22.87 8.21 13.48 7.74 31.11-1.42 52.39-.96 2.24-3.15 3.63-5.51 3.63zm-26.24-44.82c.73 0 1.45.13 2.16.41 12.4 4.82 19.68 12.11 23.97 19.04 1.81-9.72.76-17.87-3.18-24.36-9.39-15.48-32.65-17.38-32.88-17.39-1.23-.09-2.4-.56-3.35-1.33-5.36-4.35-11.14-6.55-17.2-6.55-10.52 0-19.21 6.52-21.25 8.17-10.03 14.4-10.85 28.57-9.39 38.73 2.4-3.14 4.55-4.96 4.74-5.12 1.93-1.61 4.66-1.85 6.84-.59 7.27 4.2 14.13 6.33 20.38 6.33 15.81 0 23.56-13.64 23.88-14.22 1.09-1.97 3.15-3.12 5.28-3.12z\"></path></g><g id=\"_200307264\"><path d=\"m419.46 411.58c-.16 0-.32 0-.48 0-10.3-.15-20.06-5.17-28.23-14.52-7.44-8.5-13.2-20.37-16.78-34.51-9.81-1.95-15.33-9.01-16.53-15.9-1.66-9.54 3.98-18.57 14.03-22.48 3.08-1.2 6.56.33 7.76 3.42s-.33 6.56-3.41 7.77c-5.64 2.19-7.06 6.34-6.56 9.23.53 3.02 3.36 6.31 9.74 6.48 2.77.08 5.12 2.03 5.71 4.73 5.7 26.37 19.22 43.55 34.45 43.78h.29c14.2 0 26.75-15.15 32.81-39.65.62-2.5 2.75-4.32 5.31-4.54 5.81-.5 8.33-3.74 8.74-6.61.43-2.97-1.08-6.91-6.58-9.05-3.09-1.2-4.62-4.68-3.42-7.76 1.2-3.09 4.68-4.62 7.77-3.42 9.78 3.8 15.45 12.62 14.11 21.93-1.15 8.02-6.99 14.03-15.29 16.15-7.91 27.89-24.31 44.95-43.44 44.95z\"></path></g><g id=\"_200306808\"><path d=\"m332.55 486.53c-1.59 0-3.11-.63-4.24-1.75-1.12-1.13-1.76-2.65-1.76-4.25 0-44.88 21.25-52.28 38.32-58.24 13.67-4.77 23.55-8.21 24.07-29.7.08-3.31 2.86-5.89 6.15-5.85 3.31.08 5.93 2.83 5.85 6.15-.73 29.78-17.41 35.6-32.12 40.73-15.3 5.34-28.64 9.99-30.13 40.91h161.17c-1.49-30.92-14.83-35.57-30.13-40.91-14.73-5.13-31.42-10.96-32.12-40.8-.08-3.31 2.54-6.06 5.85-6.14 3.31-.11 6.06 2.54 6.14 5.86.51 21.53 10.4 24.98 24.08 29.75 17.07 5.96 38.32 13.36 38.32 58.24 0 3.31-2.69 6-6 6z\"></path></g><g id=\"_200306616\"><path d=\"m419.27 443.04c-15.8 0-30.68-6.12-41.9-17.25-2.36-2.33-2.38-6.13-.04-8.48 2.33-2.35 6.13-2.37 8.48-.04 8.96 8.88 20.85 13.77 33.46 13.77 12.62 0 24.5-4.89 33.46-13.77 2.36-2.33 6.16-2.31 8.49.04s2.31 6.15-.04 8.48c-11.22 11.13-26.11 17.25-41.91 17.25z\"></path></g><g id=\"_200307672\"><path d=\"m374.04 486.53c-3.32 0-6-2.68-6-6v-19.82c0-3.31 2.68-6 6-6 3.31 0 6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307888\"><path d=\"m464.51 486.53c-3.31 0-6-2.68-6-6v-19.82c0-3.31 2.69-6 6-6s6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307744\"><path d=\"m135.35 340.14c-.4 0-.8-.04-1.21-.12-2.77-.57-4.77-3.01-4.79-5.84-.01-.8-.54-16.35-18.14-25.35-4.77 6.05-14.98 15.83-31.26 15.83-7.09 0-14.53-1.91-22.17-5.68-1.97 2.49-4.39 6.45-4.7 11.19-.18 2.67-2.11 4.89-4.72 5.46-2.62.57-5.29-.67-6.56-3.03-.72-1.35-17.54-33.58 6.24-66.87.25-.34.54-.67.86-.95.52-.48 13.03-11.64 29.73-11.64 8.32 0 16.16 2.73 23.31 8.11 6.78.84 29.41 4.94 40.34 22.87 8.22 13.48 7.74 31.11-1.42 52.39-.96 2.24-3.15 3.63-5.51 3.63zm-26.25-44.82c.72 0 1.46.13 2.17.41 12.4 4.82 19.69 12.1 23.97 19.04 1.81-9.72.76-17.87-3.18-24.36-9.39-15.48-32.65-17.37-32.88-17.39-1.22-.09-2.4-.56-3.35-1.33-5.36-4.35-11.14-6.55-17.2-6.55-10.52 0-19.21 6.52-21.24 8.17-10.04 14.4-10.85 28.57-9.4 38.73 2.4-3.14 4.55-4.96 4.74-5.12 1.93-1.61 4.67-1.85 6.84-.59 7.27 4.2 14.13 6.33 20.38 6.33 16.01 0 23.79-14.05 23.86-14.2 1.08-1.98 3.14-3.14 5.29-3.14z\"></path></g><g id=\"_200307960\"><path d=\"m92.91 411.58c-.16 0-.32 0-.48 0-10.3-.15-20.06-5.17-28.23-14.52-7.44-8.5-13.2-20.37-16.79-34.51-9.8-1.95-15.32-9.01-16.52-15.9-1.66-9.54 3.98-18.57 14.03-22.48 3.08-1.2 6.56.33 7.76 3.42s-.33 6.56-3.41 7.77c-5.64 2.19-7.06 6.34-6.56 9.23.53 3.02 3.36 6.31 9.74 6.48 2.77.08 5.12 2.03 5.71 4.73 5.7 26.37 19.22 43.55 34.45 43.78h.29c14.2 0 26.75-15.15 32.81-39.65.62-2.5 2.75-4.32 5.31-4.54 5.81-.5 8.33-3.74 8.74-6.61.43-2.97-1.08-6.91-6.58-9.05-3.09-1.2-4.62-4.68-3.42-7.76 1.2-3.09 4.68-4.62 7.77-3.42 9.78 3.8 15.45 12.62 14.11 21.93-1.16 8.02-6.99 14.03-15.3 16.15-7.9 27.89-24.3 44.95-43.43 44.95z\"></path></g><g id=\"_200307408\"><path d=\"m6 486.53c-1.59 0-3.11-.63-4.24-1.75-1.12-1.13-1.76-2.65-1.76-4.25 0-44.88 21.25-52.28 38.32-58.24 13.67-4.77 23.55-8.21 24.08-29.7.08-3.31 2.82-5.89 6.14-5.85 3.31.08 5.93 2.83 5.85 6.15-.73 29.78-17.41 35.6-32.12 40.73-15.3 5.34-28.64 9.99-30.13 40.91h161.17c-1.5-30.92-14.83-35.57-30.13-40.91-14.73-5.13-31.42-10.96-32.12-40.8-.08-3.31 2.54-6.06 5.85-6.14 3.27-.11 6.06 2.54 6.14 5.86.51 21.53 10.4 24.98 24.08 29.75 17.07 5.96 38.32 13.36 38.32 58.24 0 3.31-2.69 6-6 6h-173.45z\"></path></g><g id=\"_200307648\"><path d=\"m92.73 443.04c-15.81 0-30.69-6.12-41.91-17.25-2.36-2.33-2.37-6.13-.04-8.48s6.13-2.37 8.48-.04c8.97 8.88 20.85 13.77 33.47 13.77 12.61 0 24.49-4.89 33.45-13.77 2.36-2.33 6.16-2.31 8.49.04s2.31 6.15-.04 8.48c-11.22 11.13-26.11 17.25-41.9 17.25z\"></path></g><g id=\"_200307720\"><path d=\"m47.49 486.53c-3.32 0-6-2.68-6-6v-19.82c0-3.31 2.68-6 6-6 3.31 0 6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307456\"><path d=\"m137.96 486.53c-3.31 0-6-2.68-6-6v-19.82c0-3.31 2.69-6 6-6s6 2.69 6 6v19.82c0 3.32-2.69 6-6 6z\"></path></g><g id=\"_200307840\"><path d=\"m94.44 269.46c-3.31 0-6-2.68-6-6v-23.34c0-8.01 6.52-14.53 14.53-14.53h70.38c3.31 0 6 2.69 6 6 0 3.32-2.69 6-6 6h-70.38c-1.37 0-2.53 1.16-2.53 2.53v23.34c0 3.32-2.68 6-6 6zm323.12-1.73c-3.32 0-6-2.69-6-6v-21.61c0-1.37-1.16-2.53-2.53-2.53h-70.38c-3.31 0-6-2.68-6-6 0-3.31 2.69-6 6-6h70.37c8.02 0 14.54 6.52 14.54 14.53v21.61c0 3.31-2.69 6-6 6z\"></path></g></g></g></svg>							\n												<h5>\n													Relationship Improvement												</h5>\n											<p>Through therapy, individuals can learn to communicate better, resolve conflicts, and strengthen relationships.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m434.61 333.03-21.34-36.58c6.76-18.2 7.07-35.07.96-51.47-5.64-15.15-16.96-29.98-34.59-45.33-11.13-9.69-23.22-17.82-35.9-24.21.12-3.43-1.13-6.87-3.68-9.41l-11.45-11.45c-.24-.24-.28-.47-.12-.78 1.77-3.49 3.28-7.13 4.5-10.84.11-.32.3-.46.64-.46h16.19c6.99 0 12.67-5.68 12.67-12.67v-22.44c0-6.99-5.68-12.67-12.67-12.67h-16.19c-.34 0-.53-.14-.64-.46-1.22-3.71-2.73-7.35-4.5-10.84-.15-.3-.12-.53.12-.77l11.45-11.45c2.39-2.39 3.71-5.57 3.71-8.96s-1.32-6.57-3.71-8.96l-15.87-15.87c-2.39-2.39-5.57-3.71-8.96-3.71s-6.57 1.32-8.96 3.71l-11.45 11.45c-.24.24-.47.28-.77.12-3.48-1.77-7.13-3.28-10.84-4.5-.32-.11-.46-.3-.46-.64v-16.17c0-6.99-5.68-12.67-12.67-12.67h-22.44c-6.99 0-12.67 5.68-12.67 12.67v16.19c0 .34-.14.53-.46.64-3.7 1.22-7.35 2.73-10.84 4.5-.3.15-.54.12-.77-.12l-11.45-11.45c-2.39-2.39-5.57-3.71-8.96-3.71s-6.57 1.32-8.96 3.71l-15.87 15.87c-2.39 2.39-3.71 5.57-3.71 8.96s1.32 6.57 3.71 8.96l11.45 11.45c.24.24.28.47.12.77-1.77 3.49-3.28 7.13-4.5 10.84-.11.32-.3.46-.64.46h-16.19c-6.99 0-12.67 5.68-12.67 12.67v10.02c-.5 1.37-.76 2.83-.76 4.3v16.19c0 .34-.14.53-.46.64-3.7 1.22-7.35 2.73-10.84 4.5-.3.15-.54.12-.78-.12l-11.45-11.45c-2.39-2.39-5.57-3.71-8.96-3.71s-6.57 1.32-8.96 3.71l-15.87 15.87c-2.39 2.39-3.71 5.57-3.71 8.96s1.32 6.57 3.71 8.96l11.45 11.45c.24.24.28.47.12.77-1.77 3.49-3.28 7.13-4.49 10.84-.11.32-.3.46-.64.46h-16.16c-6.99 0-12.67 5.68-12.67 12.67v22.44c0 6.99 5.68 12.67 12.67 12.67h16.19c.34 0 .53.14.63.46 1.22 3.7 2.73 7.35 4.5 10.84.15.3.12.53-.12.77l-11.45 11.45c-2.39 2.39-3.71 5.57-3.71 8.96s1.32 6.57 3.71 8.96l15.87 15.87c2.39 2.39 5.57 3.71 8.96 3.71s6.57-1.32 8.96-3.71l11.45-11.45c.24-.24.47-.28.78-.12 2.63 1.33 5.35 2.52 8.12 3.55 3.63 25.86 18.43 52.67 31.88 77.01 3.47 6.29 6.76 12.23 9.84 18.11 12.69 35.72 7.66 78.5-12.56 106.56l-6.85 9.51h173.63v-44.26c38.01-.13 59.59-5.99 67.67-18.29 6.96-10.6 1.74-22.31-1.38-29.3-.44-.98-.98-2.19-1.34-3.11 3.35-4.7 4.47-10.39 3.12-16.07.14-.2.3-.41.43-.59 2.26-3.05 6.46-8.74 3.06-18.47-.43-1.24-.63-2.03-.72-2.5.71-.41 1.88-.97 2.87-1.44 1.82-.86 4.08-1.94 6.69-3.46 4.46-2.6 7.64-6.79 8.96-11.8s.59-10.29-2.01-14.74zm-267.36-225.64c0-.36.31-.67.67-.67h16.19c5.49 0 10.32-3.5 12.04-8.71 1.03-3.13 2.31-6.21 3.8-9.16 2.48-4.9 1.54-10.8-2.34-14.68l-11.45-11.45c-.13-.13-.19-.29-.19-.47 0-.19.06-.35.19-.47l15.87-15.87c.25-.25.69-.25.95 0l11.45 11.45c3.88 3.88 9.78 4.82 14.68 2.34 2.95-1.49 6.03-2.77 9.16-3.8 5.21-1.71 8.72-6.55 8.72-12.04v-16.19c0-.36.31-.67.67-.67h22.44c.36 0 .67.31.67.67v16.19c0 5.49 3.5 10.32 8.71 12.04 3.13 1.03 6.21 2.31 9.16 3.8 4.9 2.48 10.8 1.54 14.68-2.34l11.45-11.45c.25-.25.69-.25.95 0l15.87 15.87c.13.13.19.29.19.47 0 .19-.06.35-.19.47l-11.45 11.45c-3.88 3.88-4.83 9.78-2.34 14.68 1.49 2.95 2.77 6.03 3.8 9.16 1.71 5.21 6.55 8.71 12.04 8.71h16.19c.36 0 .67.31.67.67v22.44c0 .36-.31.67-.67.67h-16.19c-5.49 0-10.32 3.5-12.04 8.71-1.03 3.13-2.31 6.21-3.8 9.16-2.48 4.9-1.54 10.8 2.34 14.68l4.07 4.07c-6.1-2.13-12.28-3.88-18.52-5.21-5.2-1.11-10.41-1.91-15.6-2.44 12.29-9.41 20.24-24.22 20.24-40.86 0-28.37-23.08-51.45-51.45-51.45s-51.45 23.08-51.45 51.45c0 20.1 11.59 37.53 28.43 45.99-1.46.45-2.91.93-4.35 1.43-13.15 4.6-25.02 11.14-35.4 19.37l-9.95-9.95c-.13-.13-.19-.28-.19-.47s.06-.35.19-.47l11.45-11.45c3.88-3.88 4.82-9.78 2.34-14.68-1.49-2.95-2.77-6.03-3.8-9.16-1.71-5.21-6.55-8.72-12.04-8.72h-16.19c-.36 0-.67-.31-.67-.67zm91.61 50.67c-21.75 0-39.45-17.7-39.45-39.45s17.7-39.45 39.45-39.45 39.45 17.7 39.45 39.45-17.7 39.45-39.45 39.45zm-81.2 25.88 9.4 9.4c-14.24 13.88-24.92 31.39-31.29 51.61-10.4-7.3-16.85-19.33-16.85-32.3 0-20.29 15.4-37.05 35.13-39.21-.06.51-.1 1.02-.1 1.54 0 3.39 1.32 6.57 3.71 8.96zm-43.73 89.97-11.45 11.45c-.25.25-.69.25-.94 0l-15.87-15.87c-.16-.16-.19-.34-.19-.47 0-.19.06-.35.19-.47l11.45-11.45c3.88-3.88 4.83-9.78 2.34-14.68-1.49-2.95-2.77-6.03-3.8-9.16-1.71-5.21-6.55-8.72-12.04-8.72h-16.19c-.36 0-.67-.31-.67-.67v-22.44c0-.36.31-.67.67-.67h16.19c5.49 0 10.32-3.5 12.04-8.71 1.03-3.13 2.31-6.21 3.8-9.16 2.48-4.9 1.54-10.8-2.34-14.68l-11.45-11.45c-.16-.16-.19-.34-.19-.47 0-.19.06-.35.19-.47l15.87-15.87c.25-.25.69-.25.95 0l11.45 11.45c3.88 3.88 9.78 4.82 14.68 2.34 2.95-1.49 6.03-2.77 9.16-3.8 3.75-1.23 6.61-4.09 7.92-7.63.72.13 1.47.21 2.23.21h16.19c.34 0 .53.14.63.46 1.22 3.7 2.73 7.35 4.5 10.84.15.3.12.53-.12.77l-6.78 6.78c-1.31-.1-2.64-.16-3.95-.16-28.37 0-51.45 23.08-51.45 51.45 0 18.39 9.91 35.35 25.61 44.49-.35 1.61-.69 3.23-.99 4.86-.64 3.46-.96 6.96-1.05 10.48-.63-.3-1.27-.6-1.89-.91-4.92-2.5-10.82-1.55-14.7 2.33zm291.06 70.74c-.5 1.91-1.71 3.5-3.4 4.49-2.17 1.27-4.1 2.18-5.8 2.99-6.98 3.32-12.43 7.02-8.33 18.75 1.31 3.74.35 5.03-1.38 7.37-1.5 2.02-4 5.41-2.62 9.89.88 2.86.29 5.54-1.71 7.76-3.67 4.08-1.39 9.2.82 14.14 3.1 6.95 5.42 13.09 2.31 17.82-3.31 5.04-15.96 13.42-63.57 12.85l-6.07-.07v44.36h-138.97c17.34-30.83 20.69-72.96 7.92-108.51l-.14-.39-.19-.37c-3.21-6.12-6.59-12.24-10.17-18.72-17.49-31.65-35.57-64.37-30.34-92.85 7.68-41.83 33.96-73.47 72.1-86.8 44.14-15.44 96.37-3.43 136.3 31.34 33.22 28.92 41.99 54.65 29.31 86.02l-1.1 2.73 24.28 41.62c.99 1.69 1.25 3.67.75 5.58zm-145.92-155.19c-51.35 0-93.14 41.78-93.14 93.14 0 51.35 41.78 93.13 93.14 93.13s93.14-41.78 93.14-93.13c0-51.36-41.78-93.14-93.14-93.14zm0 174.27c-44.74 0-81.14-36.4-81.14-81.13s36.4-81.14 81.14-81.14 81.14 36.4 81.14 81.14-36.4 81.13-81.14 81.13zm29.28-94.9c-3.51-13.57-12.31-26.17-25.63-36.38-2.15-1.65-5.15-1.65-7.3 0-13.32 10.22-22.12 22.81-25.63 36.38-7.81-2.14-16.51-2.65-25.56-1.45-2.69.35-4.81 2.47-5.16 5.16-2.5 18.97 2.38 35.68 13.74 47.04 9.42 9.42 22.51 14.38 37.52 14.38 2.85 0 5.77-.19 8.74-.55 2.98.36 5.89.55 8.74.55 15.01 0 28.1-4.96 37.52-14.38 11.36-11.36 16.24-28.07 13.74-47.04-.35-2.69-2.47-4.81-5.16-5.16-9.05-1.19-17.75-.68-25.56 1.45zm-29.28-23.87c12.29 10.71 19.01 23.83 19.01 37.34s-6.71 26.63-19.01 37.34c-12.29-10.71-19.01-23.83-19.01-37.34s6.72-26.63 19.01-37.34zm-48.55 33.87c6.31-.35 12.26.35 17.57 2.02-.01.48-.02.96-.02 1.45 0 14.08 5.57 27.65 15.92 39.27-9.08-1.12-16.89-4.67-22.68-10.47-7.77-7.75-11.52-19.08-10.79-32.27zm86.33 32.27c-5.8 5.8-13.61 9.34-22.68 10.47 10.35-11.63 15.91-25.19 15.91-39.27 0-.48-.01-.96-.02-1.45 5.31-1.67 11.25-2.36 17.57-2.02.73 13.19-3.03 24.52-10.78 32.27z\"></path></svg>							\n												<h5>\n													Skill Development												</h5>\n											<p>Therapy can enhance problem-solving skills, emotional regulation, and resilience, equipping individuals to handle future challenges.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m273.006 83.567v168.425h87.5a4 4 0 1 1 0 8h-87.5v168.433h87.5a4 4 0 0 1 0 8h-91.5a4 4 0 0 1 -4-4v-172.431h-23.979a4 4 0 1 1 0-8h23.973v-172.428a4 4 0 0 1 4-4h91.5a4 4 0 0 1 0 8zm170 415.36a66.5 66.5 0 1 0 -66.5-66.5 66.569 66.569 0 0 0 66.5 66.5zm0-352.86a66.5 66.5 0 1 0 -66.5-66.5 66.569 66.569 0 0 0 66.5 66.5zm0 176.427a66.5 66.5 0 1 0 -66.498-66.494 66.569 66.569 0 0 0 66.5 66.494zm-344.212-195.217-6.473 100.7a4.046 4.046 0 0 0 .55 2.3l17.454 29.364a3.994 3.994 0 0 0 6.88 0l17.454-29.364a3.983 3.983 0 0 0 .55-2.3l-6.473-100.7 60.793 15.639c16.032 4.116 26.821 18.062 27.5 35.53v140.818a19.6 19.6 0 0 1 -6.9 15.283 37.861 37.861 0 0 1 -11.274 6.887 15.2 15.2 0 0 1 -12.961-.608v-142.018a4 4 0 1 0 -8 0v291.546a13.657 13.657 0 0 1 -13.646 13.639h-32.839a13.657 13.657 0 0 1 -13.646-13.639v-130.33a4 4 0 1 0 -8 0v130.33a13.657 13.657 0 0 1 -13.646 13.639h-32.831a13.651 13.651 0 0 1 -13.639-13.639v-291.546a4 4 0 0 0 -8 0v142.018a15.314 15.314 0 0 1 -12.967.608 37.924 37.924 0 0 1 -11.28-6.887 19.616 19.616 0 0 1 -6.895-15.283v-140.818c.672-17.468 11.46-31.414 27.492-35.53l60.793-15.639zm-96.287 50.948v141.039a27.649 27.649 0 0 0 9.61 21.284 45.823 45.823 0 0 0 13.638 8.338 23.478 23.478 0 0 0 15.89.6v140.868a21.667 21.667 0 0 0 21.641 21.646h32.836a21.632 21.632 0 0 0 17.647-9.131 21.608 21.608 0 0 0 17.64 9.131h32.836a21.673 21.673 0 0 0 21.647-21.641v-140.88a22.827 22.827 0 0 0 7.016 1.114 24.352 24.352 0 0 0 8.867-1.707 45.84 45.84 0 0 0 13.639-8.338 27.648 27.648 0 0 0 9.609-21.284v-141.039c-.786-21.127-13.932-38.031-33.493-43.06l-61.836-15.911c22.691-13.039 31.486-42.089 31.807-67.909.193-15.46-4.622-28.557-13.924-37.887a47.161 47.161 0 0 0 -33.301-13.458h-.943a47.221 47.221 0 0 0 -33.379 13.46c-9.3 9.33-14.118 22.427-13.925 37.887.322 25.82 9.124 54.87 31.815 67.909l-61.836 15.909c-19.562 5.029-32.715 21.933-33.5 43.06zm444.493-61.479a4 4 0 1 1 -8 0v-33.179h-33.164a4 4 0 0 1 0-8h33.172v-33.174a4 4 0 0 1 8 0v33.172h33.172a4 4 0 0 1 0 8h-33.18v33.179zm0 102.081v33.165h33.172a4 4 0 1 1 0 8h-33.172v33.171a4 4 0 1 1 -8 0v-33.169h-33.164a4 4 0 0 1 0-8h33.172v-33.167a4 4 0 1 1 8 0zm0 176.419v33.179h33.172a4 4 0 0 1 0 8h-33.172v33.175a4 4 0 0 1 -8 0v-33.173h-33.164a4 4 0 0 1 0-8h33.172v-33.181a4 4 0 1 1 8 0z\" fill-rule=\"evenodd\"></path></svg>							\n												<h5>\n													Tailored Approaches												</h5>\n											<p>Different therapeutic modalities (like cognitive-behavioral therapy, mindfulness, etc.) can be adapted to meet individual needs, making therapy effective for various issues.</p>										\n		Overall, therapy promotes mental well-being, personal growth, and a deeper understanding of oneself, contributing to a healthier, more balanced life.', 'Services', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-06-17 14:29:18', '2026-06-17 14:29:18', '', 14, 'https://mrarif.me/optimalmentalwellness/?p=712', 0, 'revision', '', 0),
(713, 1, '2026-06-17 14:31:00', '2026-06-17 14:31:00', '<ul>\n							<li>\n											<a href=\"mailto:info@optimalmentalwellness.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@optimalmentalwellness.org\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:9049017913\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										904-901-7913\n											</a>\n									</li>\n						</ul>\n																	<img width=\"878\" height=\"420\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Optimal-Mental-Health-And-Wellness-logo-a.png\" alt=\"\" />																					<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book Now\n					</a>\n									<h2>Blog</h2>', 'Header', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2026-06-17 14:31:00', '2026-06-17 14:31:00', '', 48, 'https://mrarif.me/optimalmentalwellness/?p=713', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-06-17 14:34:00', '2026-06-17 14:34:00', '<ul>\n							<li>\n											<a href=\"mailto:info@optimalmentalwellness.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@optimalmentalwellness.org\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:9049017913\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										904-901-7913\n											</a>\n									</li>\n						</ul>\n																	<img width=\"878\" height=\"420\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Optimal-Mental-Health-And-Wellness-logo-a.png\" alt=\"\" />																					<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book Now\n					</a>\n									<h2>Blog</h2>', 'Header', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2026-06-17 14:34:00', '2026-06-17 14:34:00', '', 48, 'https://mrarif.me/optimalmentalwellness/?p=714', 0, 'revision', '', 0),
(715, 1, '2026-06-17 14:39:29', '2026-06-17 14:39:29', '', 'contact bd a', '', 'inherit', 'closed', 'closed', '', 'contact-bd-a', '', '', '2026-06-17 14:39:29', '2026-06-17 14:39:29', '', 10, 'https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/contact-bd-a.jpg', 0, 'attachment', 'image/jpeg', 0),
(719, 1, '2026-06-17 14:41:32', '2026-06-17 14:41:32', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 14:41:32', '2026-06-17 14:41:32', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=719', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(717, 1, '2026-06-17 14:41:31', '2026-06-17 14:41:31', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 14:41:31', '2026-06-17 14:41:31', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=717', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(718, 1, '2026-06-17 14:41:31', '2026-06-17 14:41:31', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 14:41:31', '2026-06-17 14:41:31', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=718', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(720, 1, '2026-06-17 14:41:39', '2026-06-17 14:41:39', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 14:41:39', '2026-06-17 14:41:39', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=720', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(721, 1, '2026-06-17 14:41:39', '2026-06-17 14:41:39', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 14:41:39', '2026-06-17 14:41:39', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=721', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(722, 1, '2026-06-17 14:41:40', '2026-06-17 14:41:40', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 14:41:40', '2026-06-17 14:41:40', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=722', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(723, 1, '2026-06-17 14:42:02', '2026-06-17 14:42:02', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 14:42:02', '2026-06-17 14:42:02', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=723', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(724, 1, '2026-06-17 14:42:03', '2026-06-17 14:42:03', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 14:42:03', '2026-06-17 14:42:03', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=724', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-06-17 14:42:03', '2026-06-17 14:42:03', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 14:42:03', '2026-06-17 14:42:03', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=725', 0, 'revision', '', 0),
(726, 1, '2026-06-17 14:45:08', '2026-06-17 14:45:08', '', 'bg contact a', '', 'inherit', 'closed', 'closed', '', 'bg-contact-a', '', '', '2026-06-17 14:45:08', '2026-06-17 14:45:08', '', 10, 'https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/bg-contact-a.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(727, 1, '2026-06-17 14:45:26', '2026-06-17 14:45:26', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 14:45:26', '2026-06-17 14:45:26', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=727', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(728, 1, '2026-06-17 14:45:26', '2026-06-17 14:45:26', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 14:45:26', '2026-06-17 14:45:26', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=728', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(729, 1, '2026-06-17 14:45:27', '2026-06-17 14:45:27', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-06-17 14:45:27', '2026-06-17 14:45:27', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=729', 0, 'revision', '', 0),
(730, 1, '2026-06-21 06:36:37', '2026-06-21 06:36:37', 'Self-care is not a one-size-fits-all approach but a deeply personal journey that evolves with your needs, lifestyle, and emotional well-being. Building a sustainable self-care routine involves understanding your stressors, prioritizing rest, and creating healthy boundaries in daily life. When practiced consistently, self-care strengthens emotional resilience and supports long-term mental wellness.\n\nDeveloping self-care mastery also requires awareness of your mental and physical limits. Simple habits like maintaining sleep hygiene, eating balanced meals, engaging in physical activity, and practicing mindfulness can significantly improve emotional stability. Over time, these small actions create a strong foundation for mental clarity and stress management.\n\nIt is also important to disconnect from negative influences such as excessive screen time or toxic environments. True self-care is not just relaxation—it is intentional living that supports your overall mental, emotional, and physical balance.', 'Embarking on a Journey Cultivating Your Personal Path to Self-Care Mastery', '', 'inherit', 'closed', 'closed', '', '368-autosave-v1', '', '', '2026-06-21 06:36:37', '2026-06-21 06:36:37', '', 368, 'https://mrarif.me/optimalmentalwellness/?p=730', 0, 'revision', '', 0),
(746, 1, '2026-07-21 14:39:23', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2026-07-21 14:39:23', '0000-00-00 00:00:00', '', 0, 'https://mrarif.me/optimalmentalwellness/?p=746', 0, 'post', '', 0),
(732, 1, '2026-07-13 16:19:21', '2026-07-13 16:19:21', '<ul>\n							<li>\n											<a href=\"mailto:info@optimalmentalwellness.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@optimalmentalwellness.org\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:8772967846\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										877 296 7846\n											</a>\n									</li>\n						</ul>\n																	<img width=\"878\" height=\"420\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Optimal-Mental-Health-And-Wellness-logo-a.png\" alt=\"\" />																					<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book Now\n					</a>\n									<h2>Blog</h2>', 'Header', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2026-07-13 16:19:21', '2026-07-13 16:19:21', '', 48, 'https://mrarif.me/optimalmentalwellness/?p=732', 0, 'revision', '', 0),
(734, 1, '2026-07-13 16:26:48', '2026-07-13 16:26:48', '<h6>About Us</h6>							\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=30.246008,-81.533169&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=5011%20Gate%20Pkwy%20Bldg%20100%2C%20Suite%20100%20Collier%20Building%2C%20Parking%20lot%20Jacksonville%2C%20FL%2032256%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										5011 Gate Parkway Bldg 100 Suite 100  Jacksonville, FL 32256 United States\n											</a>\n									</li>\n								<li>\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										2590 Welton Street suite 200 Denver,Colorado  80205\n									</li>\n								<li>\n											<a href=\"tel:8772967846\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										877 296 7846\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:4702222746\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 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										470 222-2746\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@optimalmentalwellness.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@optimalmentalwellness.org\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.instagram.com/optimal_mentalhealth?igsh=Y3Z3NjFjYnQ0cXdo\" 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							<h6>Opening Hours</h6>							\n					Monday				\n							9:30 AM						\n						-\n							4:30 PM						\n					Tuesday				\n							9:30 AM						\n						-\n							4:30 PM						\n					Wednesday				\n							9:30 AM						\n						-\n							4:30 PM						\n					Thursday				\n							9:30 AM						\n						-\n							4:30 PM						\n					Friday				\n							9:30 AM						\n						-\n							4:30 PM						\n					Saturday				\n					Closed				\n					Sunday				\n					Closed				\n					© [copyright]. All Rights Reserved. Website Developed by <a target=\"_blank\" rel=\"noopener\">Devrivo</a>', 'Footer', '', 'inherit', 'closed', 'closed', '', '414-revision-v1', '', '', '2026-07-13 16:26:48', '2026-07-13 16:26:48', '', 414, 'https://mrarif.me/optimalmentalwellness/?p=734', 0, 'revision', '', 0),
(733, 1, '2026-07-13 16:20:16', '2026-07-13 16:20:16', '<h6>About Us</h6>							\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=30.246008,-81.533169&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=5011%20Gate%20Pkwy%20Bldg%20100%2C%20Suite%20100%20Collier%20Building%2C%20Parking%20lot%20Jacksonville%2C%20FL%2032256%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										5011 Gate Parkway Bldg 100 Suite 100  Jacksonville, FL 32256 United States\n											</a>\n									</li>\n								<li>\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										2590 Welton Street suite 200 Denver,Colorado  80205\n									</li>\n								<li>\n											<a href=\"tel:8772967846\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										877 296 7846\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:4702222746\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 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										470 222-2746\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@optimalmentalwellness.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@optimalmentalwellness.org\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.instagram.com/optimal_mentalhealth?igsh=Y3Z3NjFjYnQ0cXdo\" 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							<h6>Opening Hours</h6>							\n					Monday				\n							5:30 AM						\n						-\n							8:30 PM						\n					Tuesday				\n							5:30 AM						\n						-\n							8:30 PM						\n					Wednesday				\n							5:30 AM						\n						-\n							8:30 PM						\n					Thursday				\n							5:30 AM						\n						-\n							8:30 PM						\n					Friday				\n							5:30 AM						\n						-\n							8:00 PM						\n					Saturday				\n							8:00 AM						\n						-\n							1:00 PM						\n					Sunday				\n							8:00 AM						\n						-\n							1:00 PM						\n					© [copyright]. All Rights Reserved. Website Developed by <a target=\"_blank\" rel=\"noopener\">Devrivo</a>', 'Footer', '', 'inherit', 'closed', 'closed', '', '414-revision-v1', '', '', '2026-07-13 16:20:16', '2026-07-13 16:20:16', '', 414, 'https://mrarif.me/optimalmentalwellness/?p=733', 0, 'revision', '', 0),
(735, 1, '2026-07-13 16:29:52', '2026-07-13 16:29:52', '<ul>\n							<li>\n											<a href=\"mailto:info@optimalmentalwellness.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@optimalmentalwellness.org\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:8772967846\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										877 296 7846\n											</a>\n									</li>\n						</ul>\n																	<img width=\"878\" height=\"420\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Optimal-Mental-Health-And-Wellness-logo-a.png\" alt=\"\" />																					<a href=\"https://clinikehr.com/book/optimal-mental-health-and-wellness-group\">\n									Book Now\n					</a>\n									<h2>Blog</h2>', 'Header', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2026-07-13 16:29:52', '2026-07-13 16:29:52', '', 48, 'https://mrarif.me/optimalmentalwellness/?p=735', 0, 'revision', '', 0),
(736, 1, '2026-07-13 16:30:21', '2026-07-13 16:30:21', '<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						05:30 AM - 08:30 PM					\n							Sat - Sun						\n						09:00 AM - 05:00 PM					\n										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-07-13 16:30:21', '2026-07-13 16:30:21', '', 20, 'https://mrarif.me/optimalmentalwellness/?p=736', 0, 'revision', '', 0),
(737, 1, '2026-07-13 16:30:21', '2026-07-13 16:30:21', '<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						05:30 AM - 08:30 PM					\n							Sat - Sun						\n						09:00 AM - 05:00 PM					\n										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-07-13 16:30:21', '2026-07-13 16:30:21', '', 20, 'https://mrarif.me/optimalmentalwellness/?p=737', 0, 'revision', '', 0),
(738, 1, '2026-07-13 16:30:22', '2026-07-13 16:30:22', '<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						09:30 AM - 04:30 PM					\n							Sat - Sun						\n										<a href=\"https://clinikehr.com/book/optimal-mental-health-and-wellness-group\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-07-13 16:30:22', '2026-07-13 16:30:22', '', 20, 'https://mrarif.me/optimalmentalwellness/?p=738', 0, 'revision', '', 0),
(739, 1, '2026-07-13 16:30:34', '2026-07-13 16:30:34', '<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						09:30 AM - 04:30 PM					\n							Sat - Sun						\n										<a href=\"https://clinikehr.com/book/optimal-mental-health-and-wellness-group\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-07-13 16:30:34', '2026-07-13 16:30:34', '', 20, 'https://mrarif.me/optimalmentalwellness/?p=739', 0, 'revision', '', 0),
(740, 1, '2026-07-13 16:30:34', '2026-07-13 16:30:34', '<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						09:30 AM - 04:30 PM					\n							Sat - Sun						\n										<a href=\"https://clinikehr.com/book/optimal-mental-health-and-wellness-group\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-07-13 16:30:34', '2026-07-13 16:30:34', '', 20, 'https://mrarif.me/optimalmentalwellness/?p=740', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(741, 1, '2026-07-13 16:30:34', '2026-07-13 16:30:34', '<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						09:30 AM - 04:30 PM					\n							Sat - Sun						\n										<a href=\"https://clinikehr.com/book/optimal-mental-health-and-wellness-group\" target=\"_blank\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-07-13 16:30:34', '2026-07-13 16:30:34', '', 20, 'https://mrarif.me/optimalmentalwellness/?p=741', 0, 'revision', '', 0),
(742, 1, '2026-07-13 16:30:40', '2026-07-13 16:30:40', '<ul>\n							<li>\n											<a href=\"mailto:info@optimalmentalwellness.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@optimalmentalwellness.org\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:8772967846\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										877 296 7846\n											</a>\n									</li>\n						</ul>\n																	<img width=\"878\" height=\"420\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Optimal-Mental-Health-And-Wellness-logo-a.png\" alt=\"\" />																					<a href=\"https://clinikehr.com/book/optimal-mental-health-and-wellness-group\" target=\"_blank\">\n									Book Now\n					</a>\n									<h2>Blog</h2>', 'Header', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2026-07-13 16:30:40', '2026-07-13 16:30:40', '', 48, 'https://mrarif.me/optimalmentalwellness/?p=742', 0, 'revision', '', 0),
(743, 1, '2026-07-13 16:32:08', '2026-07-13 16:32:08', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 16:32:08', '2026-07-13 16:32:08', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=743', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `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-13 16:32:08', '2026-07-13 16:32:08', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://mrarif.me/optimalmentalwellness/book-appointment/\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 16:32:08', '2026-07-13 16:32:08', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=744', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(745, 1, '2026-07-13 16:32:09', '2026-07-13 16:32:09', 'Welcome to 				\n							<h1>Optimal Mental Health And Wellness</h1>					<h5>Restoring Balance, Building Resilience</h5>										<a href=\"https://clinikehr.com/book/optimal-mental-health-and-wellness-group\" target=\"_blank\">\n									Book and Appointment\n					</a>\n																			<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Wellness-opti.jpg\" alt=\"\" />															\n								<h2>\n						About 					\n						Us					\n								</h2>\n								<h2>\n						Optimal Mental Health 					\n						And Wellness					\n								</h2>\n							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Object\" viewBox=\"0 0 64 64\"><circle cx=\"32\" cy=\"32\" r=\"20.625\"></circle></svg>						\n										About Us\n									</li>\n						</ul>\n				We strive to provide our patients with the highest quality of care while utilizing the most comprehensive and evidence-based models of psychiatric health and wellness. Our individualized patient-centered approach, along with our integrated focus, enables us to help individuals and families achieve their desired mental health outcomes.\n													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/453006.jpg\" alt=\"\" />													\n​We are experts in mental health across the lifespan, but specialize in mental health for children, adolescents and women, including reproductive/perinatal mental health using individualized treatment plans, psychotherapy and education, nutrition, lifestyle and medication management when necessary.			<h2>Our Services </h2>				\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Psychiatric-Evaluation-aa.jpg\" alt=\"Psychiatric Evaluation aa\">\n												<h5>\n													Psychiatric Evaluation												</h5>\n											<p>A psychiatric evaluation is a comprehensive assessment that aims to understand an individual&#8217;s mental health by exploring factors</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Medication-Nutritional-d.jpg\" alt=\"Medication &amp; Nutritional d\">\n												<h5>\n													Medication &amp; Nutritional Management												</h5>\n											<p>Medication management involves the use of psychiatric medications to help manage symptoms of mental health disorders.</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n																<img src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/psychotherapy-a.webp\" alt=\"psychotherapy a\">\n												<h5>\n													Psychotherapy												</h5>\n											<p>Individual therapy. Couples/marriage therapy.<br />Family therapy. Child/teen therapy. Online<br />therapy. COMMON SPECIALTIES &amp; approaches</p>										\n											<a href=\"https://mrarif.me/optimalmentalwellness/services/\">\n														Learn More													\n																																			</a>\n					<h2>Some nutritional lab tests may not be covered by your insurance. We will work with you to see which lab tests you would like to have checked</h2>										<a href=\"https://mrarif.me/optimalmentalwellness/contact-us/\">\n									Contact Us\n					</a>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Capa_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><g><path d=\"m178.391 247.337h19.525c48.4 0 88.224-37.423 92.052-84.854h17.373c-3.868 56.992-51.469 102.18-109.425 102.18h-11.112c-4.143 0-7.5 3.357-7.5 7.5v26.104c0 4.143 3.357 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-18.604h3.612c68.748 0 124.679-55.931 124.679-124.68 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.515c0-15.275-12.428-27.703-27.703-27.703h-8.662v-8.663c-.001-9.706-7.897-17.602-17.602-17.602h-14.143c-9.705 0-17.602 7.896-17.602 17.602v32.325c0 9.705 7.896 17.602 17.602 17.602h14.143c9.705 0 17.602-7.896 17.602-17.602v-8.662h8.662c7.005 0 12.703 5.698 12.703 12.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 42.653-34.7 77.354-77.354 77.354h-19.525c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.499 7.5 7.499zm76.675-197.41c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325c0-1.435 1.167-2.602 2.602-2.602h14.143c1.435 0 2.602 1.167 2.602 2.602z\"></path><path d=\"m493.312 106.496c0-37.557-30.554-68.11-68.109-68.11-6.733 0-13.39.982-19.783 2.92-3.964 1.201-6.204 5.389-5.003 9.353 1.201 3.965 5.391 6.204 9.353 5.003 4.982-1.51 10.176-2.275 15.434-2.275 29.284 0 53.109 23.825 53.109 53.11 0 29.284-23.825 53.109-53.109 53.109s-53.109-23.825-53.109-53.109c0-12.434 4.384-24.524 12.345-34.045 2.657-3.177 2.234-7.907-.943-10.564-3.177-2.658-7.908-2.236-10.564.943-10.213 12.214-15.837 27.721-15.837 43.666 0 35.02 26.571 63.941 60.609 67.688v287.89c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-123.24c0-27.529-22.397-49.927-49.927-49.927s-49.927 22.397-49.927 49.927v123.24c0 19.259-15.668 34.927-34.927 34.927s-34.927-15.668-34.927-34.927v-94.526h8.662c4.143 0 7.5-3.357 7.5-7.5v-26.689c0-4.143-3.357-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v19.189h-17.325v-80.384c0-4.143-3.357-7.5-7.5-7.5h-11.111c-57.956 0-105.557-45.188-109.425-102.18h17.373c3.828 47.431 43.651 84.854 92.052 84.854 4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5c-42.653 0-77.354-34.7-77.354-77.354 0-4.143-3.357-7.5-7.5-7.5h-8.663v-93.517c0-7.005 5.698-12.703 12.703-12.703h8.663v8.662c0 9.705 7.896 17.602 17.602 17.602h14.142c9.705 0 17.602-7.896 17.602-17.602v-32.325c-.002-9.706-7.899-17.602-17.604-17.602h-14.142c-9.705 0-17.602 7.896-17.602 17.602v8.663h-8.663c-15.275 0-27.703 12.428-27.703 27.703v93.516h-8.662c-4.143 0-7.5 3.357-7.5 7.5 0 68.749 55.931 124.68 124.679 124.68h3.611v80.384c0 4.143 3.357 7.5 7.5 7.5h8.663v94.526c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-123.24c0-19.259 15.668-34.927 34.927-34.927s34.927 15.668 34.927 34.927v123.24c0 27.529 22.397 49.927 49.927 49.927s49.927-22.397 49.927-49.927v-287.89c34.038-3.747 60.609-32.668 60.609-67.688zm-407.095-88.894c0-1.435 1.167-2.602 2.602-2.602h14.142c1.435 0 2.602 1.167 2.602 2.602v32.325c0 1.435-1.167 2.602-2.602 2.602h-14.143c-1.435 0-2.602-1.167-2.602-2.602v-32.325z\"></path><path d=\"m452.905 106.496c0-15.275-12.428-27.703-27.703-27.703s-27.703 12.428-27.703 27.703 12.428 27.703 27.703 27.703 27.703-12.428 27.703-27.703zm-40.406 0c0-7.005 5.698-12.703 12.703-12.703s12.703 5.698 12.703 12.703-5.698 12.703-12.703 12.703-12.703-5.698-12.703-12.703z\"></path></g></g></svg>						\n								<h5>\n									Connect With Mental Health								</h5>\n							Call or text 988 to connect with mental health professionals. Veterans can press 1 after dialing 988 to connect with the Veterans Crisis Lifeline.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512pt\" viewBox=\"0 -30 512.00144 512\" width=\"512pt\"><path d=\"m485.183594 174.921875c.3125-.652344.550781-1.335937.714844-2.042969 5.515624-23.796875-5.699219-39.777344-15.359376-47.347656-2.191406-17.847656-19.015624-29.265625-32.785156-34.777344-1.402344-16.8125-7.785156-30.464844-19.03125-40.65625-18.40625-16.675781-44.777344-18.925781-57.671875-18.925781-.132812 0-.261719 0-.394531 0-12.5625-21.472656-41.308594-22.464844-58.070312-19.351563-9.832032-3.359374-19.746094-6.03125-29.5-7.957031-5.433594-1.070312-10.71875 2.460938-11.792969 7.902344-1.074219 5.4375 2.464843 10.71875 7.90625 11.792969 9.683593 1.914062 19.566406 4.644531 29.359375 8.117187 1.816406.648438 3.777344.753907 5.652344.3125.335937-.078125 33.464843-7.609375 40.730468 12.839844 1.542969 4.332031 5.847656 7.058594 10.425782 6.628906.316406-.03125 31.933593-2.808593 49.933593 13.574219 6.332031 5.765625 10.242188 13.203125 11.839844 22.566406-13.542969.648438-34.667969 5.40625-45.664063 27.179688-2.5 4.949218-.519531 10.984375 4.429688 13.488281 1.453125.730469 3 1.078125 4.519531 1.078125 3.667969 0 7.203125-2.015625 8.96875-5.511719 9.257813-18.320312 32.261719-16.480469 36.4375-15.980469 3.710938 1.21875 25.722657 9.066407 24.835938 22.519532-.261719 3.984375 1.863281 7.746094 5.414062 9.578125.035157.015625 3.597657 2.019531 6.6875 6.226562 4.058594 5.523438 5.390625 12.308594 3.976563 20.191407l-.675782.898437c-15.582031 1.710937-39.015624 11.515625-42.214843 40.5-.605469 5.511719 3.367187 10.472656 8.878906 11.082031.375.039063.746094.058594 1.113281.058594 5.050782 0 9.398438-3.800781 9.964844-8.9375 2.027344-18.367188 17.800781-22.019531 24.601562-22.738281 43.988282 32.265625 12.9375 107.511719 10.882813 112.335937-10.890625 20.820313-24.558594 31.472656-41.691406 32.445313-7.34375-6.136719-26.570313-19.78125-60.171875-27.832031-5.394532-1.292969-10.8125 2.03125-12.105469 7.421874-1.289063 5.394532 2.03125 10.8125 7.425781 12.101563 28.710938 6.878906 45.101563 18.179687 51.148438 23.039063-.078125 2.753906-.441406 5.476562-1.109375 8.121093-7.140625 28.367188-45.535157 43.246094-85.589844 33.160157-6.628906-1.671876-13.050781-3.972657-19.085937-6.84375-2.96875-1.414063-6.441407-1.28125-9.296876.351562-2.851562 1.628906-4.726562 4.558594-5.015624 7.832031-1.148438 12.996094-.589844 25.515625 1.652343 37.351563l-26.359375 4.382812c-1.125-3.992187-2.253906-8.660156-3.476562-13.734375-5.890625-24.394531-14.398438-59.585937-39.414063-88.460937 20.824219-5.070313 40.859375-8.417969 59.742188-9.96875 5.527343-.453125 9.640625-5.300782 9.183593-10.824219-.453124-5.527344-5.304687-9.632813-10.824218-9.183594-24.957032 2.046875-51.714844 7.039063-79.542969 14.832031-25.511719 3.453126-43.378906 2.070313-45.378906 1.894532-43.515625-6.539063-55.667969-32.832032-52.839844-53.390625.453125-3.292969-.753906-6.597657-3.222656-8.824219s-5.875-3.085938-9.105469-2.296875l-7.277344 1.78125c-12.691406-.628906-44.414062-5.542969-58.691406-22.167969-6.203125-7.226562-8.578125-15.953125-7.253906-26.679687.507812-4.140625-1.59375-8.164063-5.28125-10.105469-.042969-.023438-4.316406-2.597656-5.367188-7.132812-1.25-5.402344 2.375-11.871094 5.636719-16.34375 1.972656-2.707032 2.464844-6.222657 1.3125-9.367188-.078125-.210938-7.480469-21.566406.972656-39.292969 4.703125-9.863281 13.71875-17.136719 26.800781-21.613281 3.789063-1.296875 6.4375-4.652344 6.75-8.644531.011719-.128907 1.289063-12.859375 10.5625-19.773438 6.40625-4.773437 15.648438-5.996093 27.464844-3.632812 2.679688.53125 5.457032-.042969 7.699219-1.601563s3.753906-3.960937 4.183594-6.660156c.035156-.21875 4.53125-21.109375 43.699219-21.851562 5.941406 8.113281 19.050781 29.429687 9.324218 48.527343-2.515625 4.941407-.546875 10.988281 4.390625 13.503907 1.460938.742187 3.015625 1.09375 4.546875 1.09375 3.65625 0 7.183594-2.003907 8.957032-5.484376 3.617187-7.105468 5.28125-14.230468 5.625-21.109374 5.417968-2.304688 13.855468-4.78125 20.589843-2.777344 4.378907 1.296875 7.746094 4.476562 10.296875 9.710937 1.738282 3.570313 5.3125 5.644531 9.035156 5.644531 1.472657 0 2.972657-.328124 4.390626-1.019531 4.984374-2.425781 7.054687-8.4375 4.625-13.421875-5.011719-10.28125-12.835938-17.253906-22.632813-20.164062-10.433594-3.097656-21.050781-1.121094-28.90625 1.527344-2.621094-8.960938-6.742187-16.746094-10.367187-22.476563 4.726562-2.058594 11.109374-4.457031 18.96875-6.523437 5.363281-1.40625 8.570312-6.898438 7.160156-12.257813-1.410156-5.367187-6.902344-8.566406-12.261719-7.160156-15.867187 4.167969-26.738281 9.589843-31.558594 12.28125-40.660156.007812-56.378906 17.769531-62.296875 29.269531-14.011718-1.324219-25.8125 1.578125-35.171875 8.660156-10.910156 8.253906-15.378906 20.132813-17.175781 27.46875-15.425781 6.460938-26.453125 16.480469-32.824219 29.839844-9.246093 19.394531-5.683593 40.261719-3.242187 49.710938-6.140625 9.910156-8.199219 19.46875-6.113282 28.46875 1.765626 7.632812 6.128907 12.941406 9.804688 16.230468-.464844 13.90625 3.699219 26.074219 12.421875 36.234375 21.625 25.175781 64.726563 28.695313 73.238281 29.148438 2.191406 27.996093 23.503906 55.621093 70.457032 62.570312.148437.023438.300781.042969.453124.058594.417969.042969 5.617188.550781 14.402344.550781 7.976563 0 18.921875-.421875 31.925782-2 27.695312 26.179688 36.285156 61.707032 42.609374 87.914063 2.304688 9.539062 4.292969 17.78125 6.886719 24.132812 1.558594 3.820313 5.265625 6.242188 9.289063 6.242188.546875 0 1.097656-.042969 1.652344-.136719l45.425781-7.558594c2.828125-.472656 5.320312-2.128906 6.847656-4.554687s1.945313-5.390625 1.144531-8.144531c-2.476562-8.542969-3.820312-17.640626-4.019531-27.179688 2.945313.984375 5.941406 1.855469 8.96875 2.617188 24.082031 6.0625 48.601563 4.746093 69.046875-3.710938 21.476562-8.882812 36.007812-24.515625 40.917969-44.015625.675781-2.695313 1.148437-5.4375 1.429687-8.207031 17.136719-2.382813 37.765625-12.582032 53.582032-43.046875.09375-.179688.179687-.359375.261718-.542969.433594-.972656 10.664063-24.199219 13.65625-52.523438 3.695313-35.003906-5.273437-62.601562-26.007812-80.523437zm0 0\"></path><path d=\"m233.519531 145.421875c.105469.582031 2.714844 14.417969 12.3125 27.996094 2.289063 3.238281 5.09375 6.621093 8.484375 9.863281-1.804687 10.3125-17.578125 15.957031-17.949218 16.085938-5.234376 1.785156-8.039063 7.46875-6.273438 12.710937 1.414062 4.191406 5.320312 6.835937 9.511719 6.835937 1.066406 0 2.148437-.171874 3.210937-.53125 9.28125-3.128906 22.765625-10.921874 28.730469-23.445312 7.804687 3.523438 17.214844 5.804688 28.515625 5.804688.71875 0 1.449219-.011719 2.183594-.027344 5.542968-.144532 9.921875-4.75 9.777344-10.292969-.136719-5.457031-4.601563-9.785156-10.03125-9.785156-.085938 0-.171876.003906-.257813.003906-40.28125 1.011719-48.132813-37.109375-48.472656-38.859375-1.011719-5.433594-6.230469-9.035156-11.671875-8.035156-5.453125.992187-9.066406 6.222656-8.070313 11.675781zm0 0\"></path><path d=\"m355.914062 233.570312c17.429688-30.457031 10.546876-54.007812 1.707032-68.402343-9.339844-15.199219-22.796875-23.207031-23.363282-23.539063-4.769531-2.796875-10.875-1.203125-13.695312 3.546875-2.820312 4.753907-1.246094 10.902344 3.492188 13.746094.101562.058594 10.175781 6.183594 16.800781 17.324219 8.363281 14.0625 7.5625 29.992187-2.371094 47.351562-2.753906 4.8125-1.082031 10.945313 3.730469 13.699219 1.570312.902344 3.285156 1.328125 4.972656 1.328125 3.488281 0 6.871094-1.8125 8.726562-5.054688zm0 0\"></path><path d=\"m462.316406 257.035156c4.511719-3.222656 5.558594-9.492187 2.335938-14.003906s-9.492188-5.558594-14.003906-2.335938c-9.789063 6.992188-18.695313 9.621094-26.472657 7.808594-11.71875-2.722656-18.375-14.753906-18.53125-15.035156-2.578125-4.878906-8.613281-6.761719-13.515625-4.207031-4.917968 2.566406-6.824218 8.628906-4.257812 13.542969.394531.753906 9.09375 17.078124 26.464844 23.640624-3.109376 12.28125-5.089844 33.953126 13.058593 49.128907 1.878907 1.570312 4.160157 2.339843 6.433594 2.339843 2.871094 0 5.71875-1.226562 7.707031-3.597656 3.554688-4.253906 2.992188-10.585937-1.261718-14.144531-11.078126-9.265625-7.964844-24.46875-5.78125-31.351563 9.066406-1.109374 18.378906-5.039062 27.824218-11.785156zm0 0\"></path><path d=\"m166.761719 192.5625c-.695313-5.5-5.71875-9.386719-11.222657-8.695312-5.5.695312-9.394531 5.722656-8.695312 11.222656 1.742188 13.738281-9.035156 23.738281-15.417969 28.375-16.066406-7.953125-34.058593-4.921875-34.953125-4.765625-5.441406.960937-9.0625 6.140625-8.125 11.585937.9375 5.445313 6.125 9.105469 11.574219 8.195313.171875-.03125 17.117187-2.746094 27.257813 6.042969 5.789062 5.019531 8.589843 13.414062 8.320312 24.949218-.128906 5.542969 4.261719 10.140625 9.804688 10.269532.078124.003906.15625.003906.238281.003906 5.433593 0 9.902343-4.339844 10.03125-9.804688.316406-13.5-2.558594-24.609375-8.554688-33.171875 9.839844-8.167969 22.429688-23.011719 19.742188-44.207031zm0 0\"></path><path d=\"m72.355469 139.933594c-1.089844 2.609375-2.746094 4.945312-4.835938 7.070312-5.445312 5.550782-12.28125 7.613282-12.539062 7.691406-5.3125 1.472657-8.449219 6.957032-7.011719 12.289063 1.207031 4.476563 5.261719 7.425781 9.683594 7.425781.867187 0 1.746094-.113281 2.625-.351562.632812-.171875 13.242187-3.691406 22.980468-14.519532 6.703126 4.976563 14.578126 7.574219 23.207032 7.574219 2.402344 0 4.859375-.199219 7.367187-.605469 11.375-1.832031 19.894531-7.195312 20.828125-7.800781 4.652344-3.015625 5.980469-9.230469 2.964844-13.882812-3.015625-4.652344-9.230469-5.980469-13.886719-2.964844-.054687.035156-5.898437 3.664063-13.097656 4.828125-7.234375 1.167969-12.945313-.480469-17.652344-5.152344 2.273438-8.652344 2-18.292968-.855469-28.804687-1.449218-5.351563-6.960937-8.511719-12.316406-7.058594-5.351562 1.453125-8.511718 6.964844-7.058594 12.316406 2.304688 8.5 2.242188 15.609375-.214843 21.507813-.0625.144531-.125.289062-.1875.4375zm0 0\"></path><path d=\"m307.292969 54.535156c-16.957031-10.058594-36.445313-4.863281-37.265625-4.636718-5.34375 1.472656-8.484375 7-7.011719 12.34375 1.46875 5.34375 7.003906 8.480468 12.34375 7.015624.117187-.035156 12.148437-3.117187 21.6875 2.542969 5.675781 3.367188 9.59375 9.511719 11.652344 18.257813 1.089843 4.625 5.210937 7.742187 9.765625 7.742187.761718 0 1.53125-.089843 2.304687-.269531 5.398438-1.269531 8.746094-6.675781 7.472657-12.070312-3.355469-14.261719-10.402344-24.667969-20.949219-30.925782zm0 0\"></path><path d=\"m270.925781 243.816406c-7.152343 12.289063-17.488281 18.871094-30.714843 19.5625-10.625.550782-19.382813-2.875-19.597657-2.964844-5.117187-2.09375-10.960937.34375-13.074219 5.453126-2.121093 5.125.3125 10.996093 5.433594 13.113281 1.179688.488281 11.367188 4.539062 24.851563 4.539062.828125 0 1.671875-.015625 2.527343-.050781 14.332032-.542969 34.285157-6.113281 47.929688-29.554688 2.789062-4.789062 1.164062-10.9375-3.628906-13.726562-4.789063-2.789062-10.9375-1.164062-13.726563 3.628906zm0 0\"></path><path d=\"m343.617188 302.695312c-2.371094-3.535156-6.808594-5.230468-10.949219-4.113281-4.003907 1.074219-6.96875 4.585938-7.390625 8.707031-.425782 4.164063 1.921875 8.277344 5.699218 10.054688 3.683594 1.730469 8.175782 1.054688 11.148438-1.742188 3.554688-3.339843 4.195312-8.867187 1.492188-12.90625zm0 0\"></path><path d=\"m222.1875 13.855469c1.59375 3.859375 5.582031 6.390625 9.75 6.191406 4.082031-.199219 7.707031-2.9375 9.019531-6.804687 1.332031-3.910157.0625-8.355469-3.128906-10.980469-3.371094-2.773438-8.308594-3.023438-11.9375-.59375-3.925781 2.628906-5.511719 7.808593-3.703125 12.1875zm0 0\"></path></svg>						\n								<h5>\n									Georgia Crisis &amp; Access Line								</h5>\n							Call (800) 715-4225 to access 24/7 services, including mobile crisis response. Callers in immediate danger will be connected to local 911.						\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g><path d=\"m53.31 33.231v-5.131c0-5.868-2.329-11.331-6.535-15.36-.087-.088-.739-.756-.832-.833-3.912-3.228-8.864-5.006-13.943-5.006s-10.031 1.778-13.943 5.006c-4.127 3.403-7.367 9.606-7.367 16.193v5.13c-2.7.749-4.69 3.222-4.69 6.157v2.016c0 3.525 2.868 6.394 6.393 6.394h5.091c1.218 0 2.209-.991 2.209-2.21v-10.384c0-1.219-.991-2.21-2.209-2.21h-1.164v-4.893c0-3.747 1.335-7.331 3.743-10.154.058.003.114.019.172.019.792 0 1.564-.278 2.175-.783 2.69-2.22 6.096-3.442 9.59-3.442s6.9 1.222 9.591 3.442c.612.504 1.384.781 2.175.781.055 0 .107-.015.162-.018 2.415 2.825 3.752 6.406 3.752 10.154v4.893h-1.164c-1.218 0-2.209.991-2.209 2.21v10.383c0 1.219.991 2.21 2.209 2.21h1.796v.646c0 2.154-1.752 3.906-3.906 3.906h-8.309c-.441-1.58-1.878-2.75-3.597-2.75h-2.469c-2.068 0-3.75 1.683-3.75 3.75s1.682 3.75 3.75 3.75h2.469c1.719 0 3.156-1.17 3.597-2.75h8.309c3.257 0 5.906-2.649 5.906-5.906v-.646h1.294c3.525 0 6.393-2.868 6.393-6.394v-2.016c.001-2.933-1.989-5.406-4.689-6.154zm-20.81 21.868h-2.469c-.965 0-1.75-.785-1.75-1.75s.785-1.75 1.75-1.75h2.469c.965 0 1.75.785 1.75 1.75s-.785 1.75-1.75 1.75zm-24.5-13.697v-2.016c0-2.423 1.971-4.394 4.393-4.394h1.294v10.803h-1.294c-2.422.001-4.393-1.97-4.393-4.393zm9.693-6.199v10.383c0 .116-.094.21-.209.21h-1.796v-10.803h1.796c.116 0 .209.094.209.21zm-3.373-7.103v4.893h-1.63v-4.893c0-4.471 1.583-8.782 4.406-12.235.128.303.285.595.501.856.148.179.316.335.492.478-2.432 3.099-3.769 6.919-3.769 10.901zm17.68-16.36c-3.958 0-7.816 1.385-10.864 3.899-.587.485-1.515.394-1.997-.192-.242-.292-.355-.661-.319-1.039s.217-.718.509-.959c3.555-2.934 8.055-4.549 12.67-4.549s9.115 1.615 12.67 4.549c.292.241.473.582.509.959s-.077.746-.318 1.039c-.481.584-1.41.676-1.998.191-3.046-2.513-6.904-3.898-10.862-3.898zm13.906 5.465c.179-.144.349-.302.498-.484.22-.267.381-.567.51-.878 2.842 3.439 4.396 7.71 4.396 12.257v4.893h-1.63v-4.893c0-3.972-1.33-7.78-3.774-10.895zm.61 28.591c-.116 0-.209-.094-.209-.21v-10.383c0-.116.094-.21.209-.21h1.796v10.803zm9.484-4.394c0 2.423-1.971 4.394-4.393 4.394h-1.294v-10.803h1.294c2.422 0 4.393 1.971 4.393 4.394z\"></path><path d=\"m32 19.63c-1.616 0-2.931 1.315-2.931 2.931s1.315 2.931 2.931 2.931 2.931-1.314 2.931-2.931-1.315-2.931-2.931-2.931zm0 3.862c-.514 0-.931-.417-.931-.931s.417-.931.931-.931.931.417.931.931c0 .513-.417.931-.931.931z\"></path><path d=\"m32 26.639c-1.539 0-2.791 1.252-2.791 2.791v10.18c0 1.539 1.252 2.791 2.791 2.791s2.791-1.252 2.791-2.791v-10.18c0-1.539-1.252-2.791-2.791-2.791zm.791 12.971c0 .437-.355.791-.791.791s-.791-.354-.791-.791v-10.18c0-.436.355-.791.791-.791s.791.355.791.791z\"></path></g></svg>						\n								<h5>\n									NAMI HelpLine								</h5>\n							Call (800) 950-NAMI (6264) or text &#8220;HelpLine&#8221; to 62640 to connect with a specialist for support, information, and resources.						\n															<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/uploads/2026/06/Connect-With-Mental-Health-ag.jpg\" alt=\"\" />																<h2>Find Support</h2>		Here is a list of important mental health phone numbers and websites that can be valuable resources for seeking help:		\n												<h5>\n													Emergency and Crisis Hotlines												</h5>\n											<p>National Suicide Prevention Lifeline (USA)</p><p>Phone: <a href=\"tel:18002738255\">1-800-273-TALK (1-800-273-8255)</a></p>										\n											<a href=\"https://988lifeline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Crisis Text Line (USA)												</h5>\n											<p>Text HOME to <a href=\"tel:741741\">741741</a></p>										\n											<a href=\"https://www.crisistextline.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													SAMHSA’s National Helpline												</h5>\n											<p>Substance Abuse and Mental Health Services Administration</p><p>Phone: <a href=\"tel:18006624357\">1-800-662-HELP (1-800-662-4357)</a></p>										\n											<a href=\"https://samhsa.gov/find-help/national-helpline\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Veterans Crisis Line (USA)												</h5>\n											<p>Phone: <a href=\"tel:18002738255\">1-800-273-8255 (Press 1)</a></p><p>Text: <a href=\"sms:838255\">838255</a></p>										\n											<a href=\"https://www.veteranscrisisline.net/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													General Mental Health Resources												</h5>\n											<p>Phone: <a href=\"tel:18009506264\">1-800-950-NAMI (1-800-950-6264)</a></p>										\n											<a href=\"https://www.nami.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Mental Health America (MHA)												</h5>\n											<p>Phone: <a href=\"tel:18009696642\">1-800-969-6642</a></p>										\n											<a href=\"https://mhanational.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Anxiety and Depression Association of America (ADAA)												</h5>\n											<a href=\"https://adaa.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													Specialized Support:												</h5>\n											<p>Trevor Project (LGBTQ Youth)</p><p>Phone: <a href=\"tel:18664887386\">1-866-488-7386</a></p><p>Text: <a href=\"sms:678678\">Text START to 678678</a></p>										\n											<a href=\"https://www.thetrevorproject.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n												<h5>\n													RAINN												</h5>\n											<p>Rape, Abuse &amp; Incest National Network</p><p>Phone: <a href=\"tel:18006564673\">1-800-656-HOPE (1-800-656-4673)</a></p>										\n											<a href=\"https://www.rainn.org/\" target=\"_blank\">\n														Click Here 													\n																																			</a>\n					<h2>Latest Thoughts on Mental Wellness &amp; Care</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-07-13 16:32:09', '2026-07-13 16:32:09', '', 10, 'https://mrarif.me/optimalmentalwellness/?p=745', 0, 'revision', '', 0);

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

--
-- Table structure for table `wpom_post_smtp_logmeta`
--

CREATE TABLE `wpom_post_smtp_logmeta` (
  `id` bigint(20) NOT NULL,
  `log_id` bigint(20) NOT NULL,
  `meta_key` longtext DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

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

--
-- Table structure for table `wpom_post_smtp_logs`
--

CREATE TABLE `wpom_post_smtp_logs` (
  `id` bigint(20) NOT NULL,
  `solution` longtext DEFAULT NULL,
  `success` longtext DEFAULT NULL,
  `from_header` longtext DEFAULT NULL,
  `to_header` longtext DEFAULT NULL,
  `cc_header` longtext DEFAULT NULL,
  `bcc_header` longtext DEFAULT NULL,
  `reply_to_header` longtext DEFAULT NULL,
  `transport_uri` longtext DEFAULT NULL,
  `original_to` longtext DEFAULT NULL,
  `original_subject` longtext DEFAULT NULL,
  `original_message` longtext DEFAULT NULL,
  `original_headers` longtext DEFAULT NULL,
  `session_transcript` longtext DEFAULT NULL,
  `time` bigint(20) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpom_post_smtp_logs`
--

INSERT INTO `wpom_post_smtp_logs` (`id`, `solution`, `success`, `from_header`, `to_header`, `cc_header`, `bcc_header`, `reply_to_header`, `transport_uri`, `original_to`, `original_subject`, `original_message`, `original_headers`, `session_transcript`, `time`) VALUES
(1, 'All good, mail sent.', '1', 'Optimal Mental Health And Wellness <noreply@mrarif.me>', 'arifwebsols@gmail.com', '', '', '', 'smtp:tls:login://mail.mrarif.me:587', 'arifwebsols@gmail.com', 'Postman SMTP Test (mrarif.me)', 'Content-Type: text/plain; charset = \"UTF-8\"\r\nContent-Transfer-Encoding: 8bit\r\n\r\nHello!\r\n\r\nSent by Postman 3.9.4 - https://wordpress.org/plugins/post-smtp/\r\n\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Transfer-Encoding: quoted-printable\r\n\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\r\n</head>\r\n<body class=\"wporg-notification\">\r\n	<div style=\"style=\" width: 600px; margin: 0 auto;\">\r\n\n		<link href=\"https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap\" rel=\"stylesheet\">\n		<table style=\"width: 600px;margin:50px auto;color:#7D98B2;font-size:12px;padding:30px 0;\">\n        <thead>\n            <tr>\n                <th>\n                    <a href=\"https://postmansmtp.com/\"><img style=\"width: 160px;\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/plugins/post-smtp/assets//images/logos/postman-logo-email.png\"/></a>\n                </th>\n            </tr>\n           \n        </thead>\n        <tbody> \n            <tr>\n                <td style=\"padding: 0 20px;\">Hey there 👋,</td>\n            </tr>\n            <tr>\n               <td style=\"padding: 0 20px;\"><h3 style=\"color:#214A72;font-size:16px;font-weight:600;display: inline-block;margin:0; font-size: 20px;\">Congrats! Your test email was sent successfully</h3></td>\n            </tr>\n            <tr>\n                <td style=\"padding:0 20px;line-height: 20px;\">Thank you for using Post SMTP. Our mission is to enhance you email deliverability.</td>\n            </tr>\n            <tr>\n                <td>\n					<a href=\"https://postmansmtp.com/post-smtp-mobile-app/\" target=\"_blank\">\n						<img style=\" margin: 20px 0; width:100%\" src=\"https://mrarif.me/optimalmentalwellness/wp-content/plugins/post-smtp/assets//images/logos/post-man-banner.png\"/>\n					</a>\n				</td>\n            </tr>\n            <tr>\n                <td style=\"padding:0 20px;font-size: 12px;text-align: center;\">\n                    This email was sent from your website <a href=\"https://mrarif.me/optimalmentalwellness\" target=\"_blank\"><strong>Optimal Mental Health And Wellness</strong></a> to test your email functionality.\n                </td>\n            </tr>\n        </tbod\r\n</body>\r\n</html>', 'MIME-Version: 1.0\r\nContent-Type: multipart/alternative; charset=UTF-8', 'smtp:tls:login://mail.mrarif.me:587\n\n220-business75.web-hosting.com ESMTP Exim 4.99.4 #2 Wed, 17 Jun 2026 08:10:55 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO mrarif.me\r\n250-business75.web-hosting.com Hello mrarif.me [162.0.232.74]\r\n250-SIZE 52428800\r\n250-LIMITS MAILMAX=1000 RCPTMAX=100\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-PIPECONNECT\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO mrarif.me\r\n250-business75.web-hosting.com Hello mrarif.me [162.0.232.74]\r\n250-SIZE 52428800\r\n250-LIMITS MAILMAX=1000 RCPTMAX=100\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-PIPECONNECT\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm9yZXBseUBtcmFyaWYubWU=\r\n334 UGFzc3dvcmQ6\r\nM0trNz9XTWhLaH4=\r\n235 Authentication succeeded\r\nMAIL FROM:<noreply@mrarif.me>\r\n250 OK\r\nRCPT TO:<arifwebsols@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 3.9.4 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nMIME-Version: 1.0\r\nContent-Type: multipart/alternative;\r\n boundary=\"=_3a62f937416ea1cb6309d9027556dc86\"\r\nFrom: Optimal Mental Health And Wellness <noreply@mrarif.me>\r\nTo: arifwebsols@gmail.com\r\nMessage-Id: <a3a5cdac9d310f29d380273e384c83bf@mrarif.me>\r\nSubject: Postman SMTP Test (mrarif.me)\r\nDate: Wed, 17 Jun 2026 12:10:55 +0000\r\n\r\n--=_3a62f937416ea1cb6309d9027556dc86\r\nContent-Type: text/plain; charset=UTF-8\r\nContent-Transfer-Encoding: quoted-printable\r\n\r\nHello!=0D=0DSent by Postman 3.9.4 - https://wordpress.org/plugins/post-s=\r\nmtp/=0D=0D\r\n\r\n--=_3a62f937416ea1cb6309d9027556dc86\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Transfer-Encoding: quoted-printable\r\n\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://w=\r\nww.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">=0D<html xmlns=3D\"http:=\r\n//www.w3.org/1999/xhtml\">=0D<head>=0D<meta http-equiv=3D\"Content-Type\" c=\r\nontent=3D\"text/html; charset=3Dutf-8\" />=0D</head>=0D<body class=3D\"wpor=\r\ng-notification\">=0D=09<div style=3D\"style=3D\" width: 600px; margin: 0 au=\r\nto;\">=0D=09=09<link href=3D\"https://fonts.googleapis.com/css2?family=3DP=\r\noppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1=\r\n,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=3Dswap\" rel=\r\n=3D\"stylesheet\">=09=09<table style=3D\"width: 600px;margin:50px auto;colo=\r\nr:#7D98B2;font-size:12px;padding:30px 0;\">        <thead>            <tr=\r\n>                <th>                    <a href=3D\"https://postmansmtp.=\r\ncom/\"><img style=3D\"width: 160px;\" src=3D\"https://mrarif.me/optimalmenta=\r\nlwellness/wp-content/plugins/post-smtp/assets//images/logos/postman-logo=\r\n-email.png\"/></a>                </th>            </tr>                =\r\n   </thead>        <tbody>             <tr>                <td style=3D\"=\r\npadding: 0 20px;\">Hey there =F0=9F=91=8B,</td>            </tr>        =\r\n    <tr>               <td style=3D\"padding: 0 20px;\"><h3 style=3D\"color=\r\n:#214A72;font-size:16px;font-weight:600;display: inline-block;margin:0;=\r\n font-size: 20px;\">Congrats! Your test email was sent successfully</h3><=\r\n/td>            </tr>            <tr>                <td style=3D\"paddin=\r\ng:0 20px;line-height: 20px;\">Thank you for using Post SMTP. Our mission=\r\n is to enhance you email deliverability.</td>            </tr>         =\r\n   <tr>                <td>=09=09=09=09=09<a href=3D\"https://postmansmtp=\r\n..com/post-smtp-mobile-app/\" target=3D\"_blank\">=09=09=09=09=09=09<img sty=\r\nle=3D\" margin: 20px 0; width:100%\" src=3D\"https://mrarif.me/optimalmenta=\r\nlwellness/wp-content/plugins/post-smtp/assets//images/logos/post-man-ban=\r\nner.png\"/>=09=09=09=09=09</a>=09=09=09=09</td>            </tr>        =\r\n    <tr>                <td style=3D\"padding:0 20px;font-size: 12px;text=\r\n-align: center;\">                    This email was sent from your websi=\r\nte <a href=3D\"https://mrarif.me/optimalmentalwellness\" target=3D\"_blank\"=\r\n><strong>Optimal Mental Health And Wellness</strong></a> to test your em=\r\nail functionality.                </td>            </tr>        </tbod=\r\n=0D</body>=0D</html>\r\n\r\n--=_3a62f937416ea1cb6309d9027556dc86--\r\n.\r\n250 OK id=1wZp6e-0000000BnFS-1gob\r\n', 1781698256),
(2, 'All good, mail sent.', '1', 'Optimal Mental Health And Wellness <arifwebsols@gmail.com>', 'arifwebsols@gmail.com', '', '', '', 'smtp:tls:login://mail.mrarif.me:587', 'arifwebsols@gmail.com', '[New Booking] Medication & Nutritional Management on June 18, 2026', '<!DOCTYPE html><html><head><meta charset=\"UTF-8\"></head><body style=\"font-family:Arial,sans-serif;background:#F3F4F6;margin:0;padding:20px;\">\n		<div style=\"max-width:600px;margin:0 auto;background:#FFFFFF;border-radius:16px;overflow:hidden;box-shadow:0 4px 24px rgba(0,0,0,0.08);\">\n		<div style=\"background:#4F46E5;padding:24px 32px;\">\n		<h1 style=\"margin:0;color:#FFFFFF;font-size:20px;\">Optimal Mental Health And Wellness</h1>\n		</div>\n		<div style=\"padding:32px;\"><h2 style=\"margin:0 0 16px;color:#111827;\"><img src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f4c5.png\" alt=\"📅\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> New Appointment Booking</h2>\n			<p>A new booking has been submitted. Reference: <strong>AAB-B6XRN4</strong></p>\n			<table style=\"width:100%;border-collapse:collapse;\">\n			<tr><td style=\"padding:6px 12px;color:#6B7280;\">Service</td><td style=\"padding:6px 12px;font-weight:600;\">Medication &amp; Nutritional Management</td></tr>\n			<tr><td style=\"padding:6px 12px;color:#6B7280;\">Date &amp; Time</td><td style=\"padding:6px 12px;font-weight:600;\">June 18, 2026 at 12:30 pm</td></tr>\n			<tr><td style=\"padding:6px 12px;color:#6B7280;\">Duration</td><td style=\"padding:6px 12px;\">30 min</td></tr>\n			<tr><td style=\"padding:6px 12px;color:#6B7280;\">Price</td><td style=\"padding:6px 12px;\">Free</td></tr>\n			<tr><td style=\'padding:6px 12px;color:#6B7280;\'>Full Name</td><td style=\'padding:6px 12px;font-weight:600;\'>Sujon</td></tr><tr><td style=\'padding:6px 12px;color:#6B7280;\'>Email</td><td style=\'padding:6px 12px;font-weight:600;\'>test@gmail.com</td></tr><tr><td style=\'padding:6px 12px;color:#6B7280;\'>Phone</td><td style=\'padding:6px 12px;font-weight:600;\'>2894123</td></tr><tr><td style=\'padding:6px 12px;color:#6B7280;\'>Notes</td><td style=\'padding:6px 12px;font-weight:600;\'>test</td></tr>\n			</table></div>\n		<div style=\"background:#F9FAFB;padding:16px 32px;text-align:center;color:#9CA3AF;font-size:13px;\">\n		<a href=\"https://mrarif.me/optimalmentalwellness\" style=\"color:#4F46E5;\">Optimal Mental Health And Wellness</a>\n		</div>\n		</div></body></html>', 'Content-Type: text/html; charset=UTF-8', 'smtp:tls:login://mail.mrarif.me:587\n\n220-business75.web-hosting.com ESMTP Exim 4.99.4 #2 Wed, 17 Jun 2026 08:11:34 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO mrarif.me\r\n250-business75.web-hosting.com Hello mrarif.me [162.0.232.74]\r\n250-SIZE 52428800\r\n250-LIMITS MAILMAX=1000 RCPTMAX=100\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-PIPECONNECT\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO mrarif.me\r\n250-business75.web-hosting.com Hello mrarif.me [162.0.232.74]\r\n250-SIZE 52428800\r\n250-LIMITS MAILMAX=1000 RCPTMAX=100\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-PIPECONNECT\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm9yZXBseUBtcmFyaWYubWU=\r\n334 UGFzc3dvcmQ6\r\nM0trNz9XTWhLaH4=\r\n235 Authentication succeeded\r\nMAIL FROM:<noreply@mrarif.me>\r\n250 OK\r\nRCPT TO:<arifwebsols@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 3.9.4 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Optimal Mental Health And Wellness <arifwebsols@gmail.com>\r\nSender: noreply@mrarif.me\r\nTo: arifwebsols@gmail.com\r\nMessage-Id: <df26c76b44a61e0a37865b769abfa943@mrarif.me>\r\nSubject: [New Booking] Medication & Nutritional Management on June 18, 2026\r\nDate: Wed, 17 Jun 2026 12:11:34 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\n<!DOCTYPE html><html><head><meta charset=3D\"UTF-8\"></head><body style=3D=\r\n\"font-family:Arial,sans-serif;background:#F3F4F6;margin:0;padding:20px;\"=\r\n>=0A=09=09<div style=3D\"max-width:600px;margin:0 auto;background:#FFFFFF=\r\n;border-radius:16px;overflow:hidden;box-shadow:0 4px 24px rgba(0,0,0,0.0=\r\n8);\">=0A=09=09<div style=3D\"background:#4F46E5;padding:24px 32px;\">=0A=\r\n=09=09<h1 style=3D\"margin:0;color:#FFFFFF;font-size:20px;\">Optimal Menta=\r\nl Health And Wellness</h1>=0A=09=09</div>=0A=09=09<div style=3D\"padding:=\r\n32px;\"><h2 style=3D\"margin:0 0 16px;color:#111827;\"><img src=3D\"https://=\r\ns.w.org/images/core/emoji/17.0.2/72x72/1f4c5.png\" alt=3D\"=F0=9F=93=85\" c=\r\nlass=3D\"wp-smiley\" style=3D\"height: 1em; max-height: 1em;\" /> New Appoin=\r\ntment Booking</h2>=0A=09=09=09<p>A new booking has been submitted. Refer=\r\nence: <strong>AAB-B6XRN4</strong></p>=0A=09=09=09<table style=3D\"width:1=\r\n00%;border-collapse:collapse;\">=0A=09=09=09<tr><td style=3D\"padding:6px=\r\n 12px;color:#6B7280;\">Service</td><td style=3D\"padding:6px 12px;font-wei=\r\nght:600;\">Medication &amp; Nutritional Management</td></tr>=0A=09=09=09<=\r\ntr><td style=3D\"padding:6px 12px;color:#6B7280;\">Date &amp; Time</td><td=\r\n style=3D\"padding:6px 12px;font-weight:600;\">June 18, 2026 at 12:30 pm</=\r\ntd></tr>=0A=09=09=09<tr><td style=3D\"padding:6px 12px;color:#6B7280;\">Du=\r\nration</td><td style=3D\"padding:6px 12px;\">30 min</td></tr>=0A=09=09=09<=\r\ntr><td style=3D\"padding:6px 12px;color:#6B7280;\">Price</td><td style=3D\"=\r\npadding:6px 12px;\">Free</td></tr>=0A=09=09=09<tr><td style=3D\'padding:6p=\r\nx 12px;color:#6B7280;\'>Full Name</td><td style=3D\'padding:6px 12px;font-=\r\nweight:600;\'>Sujon</td></tr><tr><td style=3D\'padding:6px 12px;color:#6B7=\r\n280;\'>Email</td><td style=3D\'padding:6px 12px;font-weight:600;\'>test@gma=\r\nil.com</td></tr><tr><td style=3D\'padding:6px 12px;color:#6B7280;\'>Phone<=\r\n/td><td style=3D\'padding:6px 12px;font-weight:600;\'>2894123</td></tr><tr=\r\n><td style=3D\'padding:6px 12px;color:#6B7280;\'>Notes</td><td style=3D\'pa=\r\ndding:6px 12px;font-weight:600;\'>test</td></tr>=0A=09=09=09</table></div=\r\n>=0A=09=09<div style=3D\"background:#F9FAFB;padding:16px 32px;text-align:=\r\ncenter;color:#9CA3AF;font-size:13px;\">=0A=09=09<a href=3D\"https://mrarif=\r\n..me/optimalmentalwellness\" style=3D\"color:#4F46E5;\">Optimal Mental Healt=\r\nh And Wellness</a>=0A=09=09</div>=0A=09=09</div></body></html>\r\n.\r\n250 OK id=1wZp7G-0000000Bo7P-33g9\r\n', 1781698294),
(3, 'All good, mail sent.', '1', 'Optimal Mental Health And Wellness <arifwebsols@gmail.com>', 'test@gmail.com', '', '', '', 'smtp:tls:login://mail.mrarif.me:587', 'test@gmail.com', 'Your Booking Confirmation – Medication & Nutritional Management', '<!DOCTYPE html><html><head><meta charset=\"UTF-8\"></head><body style=\"font-family:Arial,sans-serif;background:#F3F4F6;margin:0;padding:20px;\">\n		<div style=\"max-width:600px;margin:0 auto;background:#FFFFFF;border-radius:16px;overflow:hidden;box-shadow:0 4px 24px rgba(0,0,0,0.08);\">\n		<div style=\"background:#4F46E5;padding:24px 32px;\">\n		<h1 style=\"margin:0;color:#FFFFFF;font-size:20px;\">Optimal Mental Health And Wellness</h1>\n		</div>\n		<div style=\"padding:32px;\"><h2 style=\"margin:0 0 16px;color:#111827;\"><img src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/2705.png\" alt=\"✅\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> Booking Confirmed!</h2>\n			<p>Hi Sujon, your appointment has been booked successfully.</p>\n			<div style=\"background:#F9FAFB;border-radius:12px;padding:20px;margin:20px 0;\">\n			<p style=\"margin:0 0 8px;\"><strong>Service:</strong> Medication &amp; Nutritional Management</p>\n			<p style=\"margin:0 0 8px;\"><strong>Date:</strong> June 18, 2026</p>\n			<p style=\"margin:0 0 8px;\"><strong>Time:</strong> 12:30 pm</p>\n			<p style=\"margin:0 0 8px;\"><strong>Duration:</strong> 30 min</p>\n			<p style=\"margin:0;\"><strong>Reference:</strong> AAB-B6XRN4</p>\n			</div>\n			<p>Please arrive a few minutes early. If you need to reschedule or cancel, please contact us.</p></div>\n		<div style=\"background:#F9FAFB;padding:16px 32px;text-align:center;color:#9CA3AF;font-size:13px;\">\n		<a href=\"https://mrarif.me/optimalmentalwellness\" style=\"color:#4F46E5;\">Optimal Mental Health And Wellness</a>\n		</div>\n		</div></body></html>', 'Content-Type: text/html; charset=UTF-8', 'smtp:tls:login://mail.mrarif.me:587\n\n220-business75.web-hosting.com ESMTP Exim 4.99.4 #2 Wed, 17 Jun 2026 08:11:34 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO mrarif.me\r\n250-business75.web-hosting.com Hello mrarif.me [162.0.232.74]\r\n250-SIZE 52428800\r\n250-LIMITS MAILMAX=1000 RCPTMAX=100\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-PIPECONNECT\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO mrarif.me\r\n250-business75.web-hosting.com Hello mrarif.me [162.0.232.74]\r\n250-SIZE 52428800\r\n250-LIMITS MAILMAX=1000 RCPTMAX=100\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-PIPECONNECT\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm9yZXBseUBtcmFyaWYubWU=\r\n334 UGFzc3dvcmQ6\r\nM0trNz9XTWhLaH4=\r\n235 Authentication succeeded\r\nMAIL FROM:<noreply@mrarif.me>\r\n250 OK\r\nRCPT TO:<test@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 3.9.4 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Optimal Mental Health And Wellness <arifwebsols@gmail.com>\r\nSender: noreply@mrarif.me\r\nTo: test@gmail.com\r\nMessage-Id: <b3e19893a0b772d86b37d8d504f5bf7e@mrarif.me>\r\nSubject: =?UTF-8?Q?Your=20Booking=20Confirmation=20=E2=80=93=20Medication=20?=\r\n =?UTF-8?Q?&=20Nutritional=20Management?=\r\nDate: Wed, 17 Jun 2026 12:11:34 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\n<!DOCTYPE html><html><head><meta charset=3D\"UTF-8\"></head><body style=3D=\r\n\"font-family:Arial,sans-serif;background:#F3F4F6;margin:0;padding:20px;\"=\r\n>=0A=09=09<div style=3D\"max-width:600px;margin:0 auto;background:#FFFFFF=\r\n;border-radius:16px;overflow:hidden;box-shadow:0 4px 24px rgba(0,0,0,0.0=\r\n8);\">=0A=09=09<div style=3D\"background:#4F46E5;padding:24px 32px;\">=0A=\r\n=09=09<h1 style=3D\"margin:0;color:#FFFFFF;font-size:20px;\">Optimal Menta=\r\nl Health And Wellness</h1>=0A=09=09</div>=0A=09=09<div style=3D\"padding:=\r\n32px;\"><h2 style=3D\"margin:0 0 16px;color:#111827;\"><img src=3D\"https://=\r\ns.w.org/images/core/emoji/17.0.2/72x72/2705.png\" alt=3D\"=E2=9C=85\" class=\r\n=3D\"wp-smiley\" style=3D\"height: 1em; max-height: 1em;\" /> Booking Confir=\r\nmed!</h2>=0A=09=09=09<p>Hi Sujon, your appointment has been booked succe=\r\nssfully.</p>=0A=09=09=09<div style=3D\"background:#F9FAFB;border-radius:1=\r\n2px;padding:20px;margin:20px 0;\">=0A=09=09=09<p style=3D\"margin:0 0 8px;=\r\n\"><strong>Service:</strong> Medication &amp; Nutritional Management</p>=\r\n=0A=09=09=09<p style=3D\"margin:0 0 8px;\"><strong>Date:</strong> June 18,=\r\n 2026</p>=0A=09=09=09<p style=3D\"margin:0 0 8px;\"><strong>Time:</strong>=\r\n 12:30 pm</p>=0A=09=09=09<p style=3D\"margin:0 0 8px;\"><strong>Duration:<=\r\n/strong> 30 min</p>=0A=09=09=09<p style=3D\"margin:0;\"><strong>Reference:=\r\n</strong> AAB-B6XRN4</p>=0A=09=09=09</div>=0A=09=09=09<p>Please arrive a=\r\n few minutes early. If you need to reschedule or cancel, please contact=\r\n us.</p></div>=0A=09=09<div style=3D\"background:#F9FAFB;padding:16px 32p=\r\nx;text-align:center;color:#9CA3AF;font-size:13px;\">=0A=09=09<a href=3D\"h=\r\nttps://mrarif.me/optimalmentalwellness\" style=3D\"color:#4F46E5;\">Optimal=\r\n Mental Health And Wellness</a>=0A=09=09</div>=0A=09=09</div></body></ht=\r\nml>\r\n.\r\n250 OK id=1wZp7G-0000000Bo7a-3cz6\r\n', 1781698294),
(4, 'All good, mail sent.', '1', 'Optimal Mental Health And Wellness <noreply@mrarif.me>', 'arifwebsols@gmail.com', '', '', '', 'smtp:tls:login://mail.mrarif.me:587', 'arifwebsols@gmail.com', '[Optimal Mental Health And Wellness] Your site has updated to WordPress 7.0.1', 'Howdy! Your site at https://mrarif.me/optimalmentalwellness has been updated automatically to WordPress 7.0.1.\n\nNo further action is needed on your part. For more on version 7.0.1, see the About WordPress screen:\nhttps://mrarif.me/optimalmentalwellness/wp-admin/about.php\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nYou also have some plugins or themes with updates available. Update them now:\nhttps://mrarif.me/optimalmentalwellness/wp-admin/\n\nThe WordPress Team\n', 'Content-Type: text/plain; charset=UTF-8', 'smtp:tls:login://mail.mrarif.me:587\n\n220-business75.web-hosting.com ESMTP Exim 4.99.4 #2 Mon, 13 Jul 2026 11:34:14 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO mrarif.me\r\n250-business75.web-hosting.com Hello mrarif.me [162.0.232.74]\r\n250-SIZE 52428800\r\n250-LIMITS MAILMAX=1000 RCPTMAX=100\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-PIPECONNECT\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO mrarif.me\r\n250-business75.web-hosting.com Hello mrarif.me [162.0.232.74]\r\n250-SIZE 52428800\r\n250-LIMITS MAILMAX=1000 RCPTMAX=100\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-PIPECONNECT\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm9yZXBseUBtcmFyaWYubWU=\r\n334 UGFzc3dvcmQ6\r\nM0trNz9XTWhLaH4=\r\n235 Authentication succeeded\r\nMAIL FROM:<noreply@mrarif.me>\r\n250 OK\r\nRCPT TO:<arifwebsols@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 3.9.4 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Optimal Mental Health And Wellness <noreply@mrarif.me>\r\nTo: arifwebsols@gmail.com\r\nMessage-Id: <f4599f322a2b374c6c63e7cee1253c34@mrarif.me>\r\nSubject: [Optimal Mental Health And Wellness] Your site has updated to WordPress 7.0.1\r\nDate: Mon, 13 Jul 2026 15:34:14 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Your site at https://mrarif.me/optimalmentalwellness has been upd=\r\nated automatically to WordPress 7.0.1.=0A=0ANo further action is needed=\r\n on your part. For more on version 7.0.1, see the About WordPress screen=\r\n:=0Ahttps://mrarif.me/optimalmentalwellness/wp-admin/about.php=0A=0AIf y=\r\nou experience any issues or need support, the volunteers in the WordPres=\r\ns.org support forums may be able to help.=0Ahttps://wordpress.org/suppor=\r\nt/forums/=0A=0AYou also have some plugins or themes with updates availab=\r\nle. Update them now:=0Ahttps://mrarif.me/optimalmentalwellness/wp-admin/=\r\n=0A=0AThe WordPress Team=0A\r\n.\r\n250 OK id=1wjIfe-0000000GygB-3rBc\r\n', 1783956854),
(5, 'All good, mail sent.', '1', 'Optimal Mental Health And Wellness <noreply@mrarif.me>', 'arifwebsols@gmail.com', '', '', '', 'smtp:tls:login://mail.mrarif.me:587', 'arifwebsols@gmail.com', '[Optimal Mental Health And Wellness] Your site has updated to WordPress 7.0.2', 'Howdy! Your site at https://mrarif.me/optimalmentalwellness has been updated automatically to WordPress 7.0.2.\n\nNo further action is needed on your part. For more on version 7.0.2, see the About WordPress screen:\nhttps://mrarif.me/optimalmentalwellness/wp-admin/about.php\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nYou also have some plugins or themes with updates available. Update them now:\nhttps://mrarif.me/optimalmentalwellness/wp-admin/\n\nThe WordPress Team\n', 'Content-Type: text/plain; charset=UTF-8', 'smtp:tls:login://mail.mrarif.me:587\n\n220-business75.web-hosting.com ESMTP Exim 4.99.4 #2 Sun, 19 Jul 2026 19:31:59 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO mrarif.me\r\n250-business75.web-hosting.com Hello mrarif.me [162.0.232.74]\r\n250-SIZE 52428800\r\n250-LIMITS MAILMAX=1000 RCPTMAX=100\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-PIPECONNECT\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO mrarif.me\r\n250-business75.web-hosting.com Hello mrarif.me [162.0.232.74]\r\n250-SIZE 52428800\r\n250-LIMITS MAILMAX=1000 RCPTMAX=100\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-PIPECONNECT\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm9yZXBseUBtcmFyaWYubWU=\r\n334 UGFzc3dvcmQ6\r\nM0trNz9XTWhLaH4=\r\n235 Authentication succeeded\r\nMAIL FROM:<noreply@mrarif.me>\r\n250 OK\r\nRCPT TO:<arifwebsols@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 3.9.4 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Optimal Mental Health And Wellness <noreply@mrarif.me>\r\nTo: arifwebsols@gmail.com\r\nMessage-Id: <1a64f59e436be3eb2f6089562c60c00b@mrarif.me>\r\nSubject: [Optimal Mental Health And Wellness] Your site has updated to WordPress 7.0.2\r\nDate: Sun, 19 Jul 2026 23:31:59 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Your site at https://mrarif.me/optimalmentalwellness has been upd=\r\nated automatically to WordPress 7.0.2.=0A=0ANo further action is needed=\r\n on your part. For more on version 7.0.2, see the About WordPress screen=\r\n:=0Ahttps://mrarif.me/optimalmentalwellness/wp-admin/about.php=0A=0AIf y=\r\nou experience any issues or need support, the volunteers in the WordPres=\r\ns.org support forums may be able to help.=0Ahttps://wordpress.org/suppor=\r\nt/forums/=0A=0AYou also have some plugins or themes with updates availab=\r\nle. Update them now:=0Ahttps://mrarif.me/optimalmentalwellness/wp-admin/=\r\n=0A=0AThe WordPress Team=0A\r\n.\r\n250 OK id=1wlazH-00000004VC7-1X6Y\r\n', 1784503919);

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

--
-- Table structure for table `wpom_termmeta`
--

CREATE TABLE `wpom_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 `wpom_terms`
--

CREATE TABLE `wpom_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 `wpom_terms`
--

INSERT INTO `wpom_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, 'archive', 'archive', 0),
(7, 'single-post', 'single-post', 0);

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

--
-- Table structure for table `wpom_term_relationships`
--

CREATE TABLE `wpom_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 `wpom_term_relationships`
--

INSERT INTO `wpom_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES
(27, 2, 0),
(28, 2, 0),
(30, 2, 0),
(24, 2, 0),
(365, 1, 0),
(26, 2, 0),
(33, 2, 0),
(48, 3, 0),
(419, 5, 0),
(368, 1, 0),
(371, 1, 0),
(374, 4, 0),
(414, 5, 0),
(415, 5, 0),
(421, 5, 0),
(545, 2, 0),
(558, 2, 0),
(695, 6, 0),
(701, 7, 0);

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

--
-- Table structure for table `wpom_term_taxonomy`
--

CREATE TABLE `wpom_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 `wpom_term_taxonomy`
--

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

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

--
-- Table structure for table `wpom_usermeta`
--

CREATE TABLE `wpom_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 `wpom_usermeta`
--

INSERT INTO `wpom_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, 'wpom_capabilities', 'a:1:{s:13:\"administrator\";b:1;}'),
(13, 1, 'wpom_user_level', '10'),
(14, 1, 'dismissed_wp_pointers', 'theme_editor_notice'),
(15, 1, 'show_welcome_panel', '1'),
(16, 1, 'session_tokens', 'a:1:{s:64:\"93375b41562254ef29abacf2e53a4bef2d6e337845bede024c5a1854dfeeaa79\";a:4:{s:10:\"expiration\";i:1784817559;s:2:\"ip\";s:12:\"45.120.96.21\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/150.0.0.0 Safari/537.36\";s:5:\"login\";i:1784644759;}}'),
(17, 1, 'wpom_dashboard_quick_press_last_post_id', '746'),
(18, 1, 'community-events-location', 'a:1:{s:2:\"ip\";s:11:\"45.120.96.0\";}'),
(19, 1, 'wpom_elementor_connect_common_data', 'a:7:{s:9:\"client_id\";s:32:\"cYRc14Ppw3Hl6kpPlOPPBiIkkPtbqfhV\";s:11:\"auth_secret\";s:32:\"DdV3A7eDO2GqNbGeuaruRNi7osU69W9K\";s:12:\"access_token\";s:313:\"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI2MTQ4NjIiLCJhdWQiOiJodHRwczovL21yYXJpZi5tZS9vcHRpbWFsbWVudGFsd2VsbG5lc3MvIiwiY2xpZW50X2lkIjoiY1lSYzE0UHB3M0hsNmtwUGxPUFBCaUlra1B0YnFmaFYiLCJjb25uZWN0X3R5cGUiOiJhY3RpdmF0ZSIsImlhdCI6MTc4MTU5NDY4NiwiZXhwIjozMTczMjYwMzcwODZ9.knacaJSXw1LvZoRGwu6sbe9SotuCRkg3vqbsb1FN9KA\";s:19:\"access_token_secret\";s:32:\"7LRsGoQ1OqUdJ7y1360avJNqlvOL7C75\";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, 'wpom_user-settings', 'editor=tinymce&libraryContent=browse'),
(24, 1, 'wpom_user-settings-time', '1781694820'),
(25, 1, 'elementor_introduction', 'a:1:{s:20:\"globals_introduction\";b:1;}');

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

--
-- Table structure for table `wpom_users`
--

CREATE TABLE `wpom_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 `wpom_users`
--

INSERT INTO `wpom_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$06PcUmH/VAzk5qY3S5UKneXqb1UCt8dlzmStfMFmaW4aBGdNg.L52', 'web-admin', 'arifwebsols@gmail.com', 'https://mrarif.me/optimalmentalwellness', '2026-06-16 07:07:02', '', 0, 'web-admin');

--
-- Indexes for dumped tables
--

--
-- Indexes for table `wpom_aab_bookings`
--
ALTER TABLE `wpom_aab_bookings`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `uk_booking_ref` (`booking_ref`),
  ADD KEY `idx_service` (`service_id`),
  ADD KEY `idx_date_time` (`appointment_date`,`appointment_time`),
  ADD KEY `idx_status` (`status`);

--
-- Indexes for table `wpom_aab_categories`
--
ALTER TABLE `wpom_aab_categories`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `uk_slug` (`slug`) USING HASH,
  ADD KEY `idx_active` (`is_active`);

--
-- Indexes for table `wpom_aab_form_fields`
--
ALTER TABLE `wpom_aab_form_fields`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `uk_field_key` (`field_key`),
  ADD KEY `idx_step` (`step`),
  ADD KEY `idx_active` (`is_active`);

--
-- Indexes for table `wpom_aab_services`
--
ALTER TABLE `wpom_aab_services`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_category_id` (`category_id`),
  ADD KEY `idx_active` (`is_active`);

--
-- Indexes for table `wpom_aab_service_hours`
--
ALTER TABLE `wpom_aab_service_hours`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_service_day` (`service_id`,`day_of_week`);

--
-- Indexes for table `wpom_aab_settings`
--
ALTER TABLE `wpom_aab_settings`
  ADD PRIMARY KEY (`setting_key`);

--
-- Indexes for table `wpom_aab_working_hours`
--
ALTER TABLE `wpom_aab_working_hours`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_day` (`day_of_week`);

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

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

--
-- Indexes for table `wpom_e_notes`
--
ALTER TABLE `wpom_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 `wpom_e_notes_users_relations`
--
ALTER TABLE `wpom_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 `wpom_e_submissions`
--
ALTER TABLE `wpom_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 `wpom_e_submissions_actions_log`
--
ALTER TABLE `wpom_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 `wpom_e_submissions_values`
--
ALTER TABLE `wpom_e_submissions_values`
  ADD PRIMARY KEY (`id`),
  ADD KEY `submission_id_index` (`submission_id`),
  ADD KEY `key_index` (`key`);

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

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

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

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

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

--
-- Indexes for table `wpom_posts`
--
ALTER TABLE `wpom_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 `wpom_post_smtp_logmeta`
--
ALTER TABLE `wpom_post_smtp_logmeta`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `wpom_post_smtp_logs`
--
ALTER TABLE `wpom_post_smtp_logs`
  ADD PRIMARY KEY (`id`);

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

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

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

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

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

--
-- Indexes for table `wpom_users`
--
ALTER TABLE `wpom_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 `wpom_aab_bookings`
--
ALTER TABLE `wpom_aab_bookings`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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